Apigee · Schema

Apigee Developer

A developer registered in an Apigee organization. Developers are consumers of APIs who register apps and obtain API keys to access API products.

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

Properties

Name Type Description
email string Required. Email address of the developer. Used as the unique identifier.
firstName string Required. First name of the developer.
lastName string Required. Last name of the developer.
userName string Required. User name of the developer.
developerId string Output only. System-generated developer ID.
organizationName string Output only. Name of the Apigee organization.
status string Status of the developer account.
apps array Output only. List of apps owned by the developer.
attributes array Custom attributes for the developer (maximum 18).
companies array Output only. Companies associated with the developer.
createdAt string Output only. Time the developer was created in milliseconds since epoch.
lastModifiedAt string Output only. Time the developer was last modified in milliseconds since epoch.
accessType string Access type of the developer.
View JSON Schema on GitHub

JSON Schema

apigee-developer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/apigee/apigee-developer-schema.json",
  "title": "Apigee Developer",
  "description": "A developer registered in an Apigee organization. Developers are consumers of APIs who register apps and obtain API keys to access API products.",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "Required. Email address of the developer. Used as the unique identifier."
    },
    "firstName": {
      "type": "string",
      "description": "Required. First name of the developer."
    },
    "lastName": {
      "type": "string",
      "description": "Required. Last name of the developer."
    },
    "userName": {
      "type": "string",
      "description": "Required. User name of the developer."
    },
    "developerId": {
      "type": "string",
      "description": "Output only. System-generated developer ID.",
      "readOnly": true
    },
    "organizationName": {
      "type": "string",
      "description": "Output only. Name of the Apigee organization.",
      "readOnly": true
    },
    "status": {
      "type": "string",
      "description": "Status of the developer account.",
      "enum": ["active", "inactive"]
    },
    "apps": {
      "type": "array",
      "description": "Output only. List of apps owned by the developer.",
      "readOnly": true,
      "items": {
        "type": "string"
      }
    },
    "attributes": {
      "type": "array",
      "description": "Custom attributes for the developer (maximum 18).",
      "maxItems": 18,
      "items": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "value": { "type": "string" }
        },
        "required": ["name", "value"]
      }
    },
    "companies": {
      "type": "array",
      "description": "Output only. Companies associated with the developer.",
      "readOnly": true,
      "items": {
        "type": "string"
      }
    },
    "createdAt": {
      "type": "string",
      "description": "Output only. Time the developer was created in milliseconds since epoch.",
      "readOnly": true
    },
    "lastModifiedAt": {
      "type": "string",
      "description": "Output only. Time the developer was last modified in milliseconds since epoch.",
      "readOnly": true
    },
    "accessType": {
      "type": "string",
      "description": "Access type of the developer."
    }
  },
  "required": ["email", "firstName", "lastName", "userName"]
}