Google Apigee · Schema

Developer

API GatewayAPI ManagementEnterpriseGoogle Cloud

Properties

Name Type Description
email string
firstName string
lastName string
userName string
organizationName string
status string
apps array
developerId string
createdAt string
lastModifiedAt string
attributes array
View JSON Schema on GitHub

JSON Schema

google-apigee-developer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Developer",
  "title": "Developer",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "userName": {
      "type": "string"
    },
    "organizationName": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive"
      ]
    },
    "apps": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "developerId": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "lastModifiedAt": {
      "type": "string",
      "format": "date-time"
    },
    "attributes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      }
    }
  }
}