Google Apigee · Schema

Environment

API GatewayAPI ManagementEnterpriseGoogle Cloud

Properties

Name Type Description
name string
displayName string
description string
state string
createdAt string
lastModifiedAt string
View JSON Schema on GitHub

JSON Schema

google-apigee-environment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Environment",
  "title": "Environment",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "enum": [
        "STATE_UNSPECIFIED",
        "CREATING",
        "ACTIVE",
        "DELETING"
      ]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "lastModifiedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}