Apigee · Schema

AttributeValues

Values assigned to an attribute.

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

Properties

Name Type Description
enumValues object
stringValues object
jsonValues object
attribute string Resource name of the attribute definition.
View JSON Schema on GitHub

JSON Schema

apigee-attributevalues-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttributeValues",
  "title": "AttributeValues",
  "type": "object",
  "description": "Values assigned to an attribute.",
  "properties": {
    "enumValues": {
      "type": "object",
      "properties": {
        "values": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/EnumAttributeValue"
          }
        }
      }
    },
    "stringValues": {
      "type": "object",
      "properties": {
        "values": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    },
    "jsonValues": {
      "type": "object",
      "properties": {
        "values": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    },
    "attribute": {
      "type": "string",
      "description": "Resource name of the attribute definition."
    }
  }
}