KeyValueMap

API ManagementCloud IntegrationEnterprise IntegrationEvent MeshiPaaSSAPSAP BTP

Properties

Name Type Description
name string Key-value map name
encrypted boolean Whether values are stored encrypted
scope string Scope of the key-value map
keyValuePairs array
View JSON Schema on GitHub

JSON Schema

sap-integration-suite-keyvaluemap-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KeyValueMap",
  "title": "KeyValueMap",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Key-value map name"
    },
    "encrypted": {
      "type": "boolean",
      "description": "Whether values are stored encrypted"
    },
    "scope": {
      "type": "string",
      "description": "Scope of the key-value map",
      "enum": [
        "apiproxy",
        "environment",
        "organization"
      ]
    },
    "keyValuePairs": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string",
            "description": "Key name"
          },
          "value": {
            "type": "string",
            "description": "Value (masked if encrypted)"
          }
        }
      }
    }
  }
}