Apigee · Schema

KeyValueMap

A key value map used for runtime data storage.

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

Properties

Name Type Description
name string Required. Name of the key value map.
encrypted boolean Whether the values in the map are encrypted.
View JSON Schema on GitHub

JSON Schema

apigee-keyvaluemap-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KeyValueMap",
  "title": "KeyValueMap",
  "type": "object",
  "description": "A key value map used for runtime data storage.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Required. Name of the key value map."
    },
    "encrypted": {
      "type": "boolean",
      "description": "Whether the values in the map are encrypted."
    }
  }
}