Apigee · Schema

AllowedValue

An allowed value for an ENUM attribute.

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

Properties

Name Type Description
id string ID of the allowed value.
displayName string Display name of the allowed value.
description string Description of the allowed value.
immutable boolean Whether the value is immutable.
View JSON Schema on GitHub

JSON Schema

apigee-allowedvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AllowedValue",
  "title": "AllowedValue",
  "type": "object",
  "description": "An allowed value for an ENUM attribute.",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the allowed value."
    },
    "displayName": {
      "type": "string",
      "description": "Display name of the allowed value."
    },
    "description": {
      "type": "string",
      "description": "Description of the allowed value."
    },
    "immutable": {
      "type": "boolean",
      "description": "Whether the value is immutable."
    }
  }
}