Apigee · Schema

Properties

A collection of key-value property pairs.

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

Properties

Name Type Description
property array List of properties.
View JSON Schema on GitHub

JSON Schema

apigee-properties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Properties",
  "title": "Properties",
  "type": "object",
  "description": "A collection of key-value property pairs.",
  "properties": {
    "property": {
      "type": "array",
      "description": "List of properties.",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      }
    }
  }
}