Apigee · Schema

Apigee Organization

Represents an Apigee organization, the top-level container for all Apigee resources including API proxies, products, developers, and environments.

Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationsMicroservicesMCPModel Context ProtocolMonetization

Properties

Name Type Description
name string Output only. Name of the Apigee organization.
displayName string Display name for the organization.
description string Description of the organization.
projectId string Output only. Project ID associated with the organization.
createdAt string Output only. Time the organization was created in milliseconds since epoch.
lastModifiedAt string Output only. Time the organization was last modified in milliseconds since epoch.
subscriptionType string Output only. Subscription type of the organization.
state string Output only. State of the organization.
analyticsRegion string Required. Primary Google Cloud region for analytics data storage.
runtimeType string Required. Runtime type of the Apigee organization.
authorizedNetwork string VPC network used for service networking.
environments array Output only. List of environments in the organization.
billingType string Billing type of the organization.
properties object A collection of key-value property pairs.
View JSON Schema on GitHub

JSON Schema

apigee-organization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/apigee/apigee-organization-schema.json",
  "title": "Apigee Organization",
  "description": "Represents an Apigee organization, the top-level container for all Apigee resources including API proxies, products, developers, and environments.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Output only. Name of the Apigee organization.",
      "readOnly": true
    },
    "displayName": {
      "type": "string",
      "description": "Display name for the organization."
    },
    "description": {
      "type": "string",
      "description": "Description of the organization."
    },
    "projectId": {
      "type": "string",
      "description": "Output only. Project ID associated with the organization.",
      "readOnly": true
    },
    "createdAt": {
      "type": "string",
      "description": "Output only. Time the organization was created in milliseconds since epoch.",
      "readOnly": true
    },
    "lastModifiedAt": {
      "type": "string",
      "description": "Output only. Time the organization was last modified in milliseconds since epoch.",
      "readOnly": true
    },
    "subscriptionType": {
      "type": "string",
      "description": "Output only. Subscription type of the organization.",
      "readOnly": true,
      "enum": ["SUBSCRIPTION_TYPE_UNSPECIFIED", "PAID", "TRIAL"]
    },
    "state": {
      "type": "string",
      "description": "Output only. State of the organization.",
      "readOnly": true,
      "enum": ["STATE_UNSPECIFIED", "CREATING", "ACTIVE", "DELETING", "UPDATING"]
    },
    "analyticsRegion": {
      "type": "string",
      "description": "Required. Primary Google Cloud region for analytics data storage."
    },
    "runtimeType": {
      "type": "string",
      "description": "Required. Runtime type of the Apigee organization.",
      "enum": ["RUNTIME_TYPE_UNSPECIFIED", "CLOUD", "HYBRID"]
    },
    "authorizedNetwork": {
      "type": "string",
      "description": "VPC network used for service networking."
    },
    "environments": {
      "type": "array",
      "description": "Output only. List of environments in the organization.",
      "readOnly": true,
      "items": {
        "type": "string"
      }
    },
    "billingType": {
      "type": "string",
      "description": "Billing type of the organization.",
      "enum": ["BILLING_TYPE_UNSPECIFIED", "SUBSCRIPTION", "EVALUATION", "PAYG"]
    },
    "properties": {
      "type": "object",
      "description": "A collection of key-value property pairs.",
      "properties": {
        "property": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": { "type": "string" },
              "value": { "type": "string" }
            }
          }
        }
      }
    }
  },
  "required": ["analyticsRegion", "runtimeType"]
}