SerenAI

Pay Per Call Agentic Commerce

QuotaUsage

Quota usage summary for an organization

Properties

PropertyTypeRequiredDescription
compute_hours_usage_percent number,null No
current_branches integer Yes
current_compute_hours number Yes
current_projects integer Yes
current_storage_gb number Yes
is_over_compute_quota boolean Yes
is_over_projects_quota boolean Yes
is_over_storage_quota boolean Yes
organization_id string Yes
plan Plan Yes
projects_usage_percent number,null No
storage_usage_percent number,null No
View JSON Schema
{
  "type": "object",
  "description": "Quota usage summary for an organization",
  "required": [
    "organization_id",
    "plan",
    "current_storage_gb",
    "current_compute_hours",
    "current_projects",
    "current_branches",
    "is_over_storage_quota",
    "is_over_compute_quota",
    "is_over_projects_quota"
  ],
  "properties": {
    "compute_hours_usage_percent": {
      "type": [
        "number",
        "null"
      ],
      "format": "double"
    },
    "current_branches": {
      "type": "integer",
      "format": "int32"
    },
    "current_compute_hours": {
      "type": "number",
      "format": "double"
    },
    "current_projects": {
      "type": "integer",
      "format": "int32"
    },
    "current_storage_gb": {
      "type": "number",
      "format": "double"
    },
    "is_over_compute_quota": {
      "type": "boolean"
    },
    "is_over_projects_quota": {
      "type": "boolean"
    },
    "is_over_storage_quota": {
      "type": "boolean"
    },
    "organization_id": {
      "type": "string",
      "format": "uuid"
    },
    "plan": {
      "$ref": "#/components/schemas/Plan"
    },
    "projects_usage_percent": {
      "type": [
        "number",
        "null"
      ],
      "format": "double"
    },
    "storage_usage_percent": {
      "type": [
        "number",
        "null"
      ],
      "format": "double"
    }
  }
}