Google Apigee · Schema

Organization

API GatewayAPI ManagementEnterpriseGoogle Cloud

Properties

Name Type Description
name string The organization resource name.
displayName string
description string
projectId string
analyticsRegion string
runtimeType string
state string
createdAt string
lastModifiedAt string
environments array
View JSON Schema on GitHub

JSON Schema

google-apigee-organization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Organization",
  "title": "Organization",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The organization resource name."
    },
    "displayName": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "projectId": {
      "type": "string"
    },
    "analyticsRegion": {
      "type": "string"
    },
    "runtimeType": {
      "type": "string",
      "enum": [
        "RUNTIME_TYPE_UNSPECIFIED",
        "CLOUD",
        "HYBRID"
      ]
    },
    "state": {
      "type": "string",
      "enum": [
        "STATE_UNSPECIFIED",
        "CREATING",
        "ACTIVE",
        "DELETING"
      ]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "lastModifiedAt": {
      "type": "string",
      "format": "date-time"
    },
    "environments": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}