WSO2 · Schema

Details to map, deploy, undeploy policy mappings to gateways

GatewayPolicyDeployment schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
gatewayLabel string
gatewayDeployment boolean
mappingUUID string
View JSON Schema on GitHub

JSON Schema

publisher-api-gateway-policy-deployment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/publisher-api-gateway-policy-deployment-schema.json",
  "title": "Details to map, deploy, undeploy policy mappings to gateways",
  "description": "GatewayPolicyDeployment schema from WSO2 API Manager",
  "required": [
    "gatewayLabel",
    "gatewayDeployment"
  ],
  "type": "object",
  "properties": {
    "gatewayLabel": {
      "type": "string",
      "example": "gatewayLabel_1"
    },
    "gatewayDeployment": {
      "type": "boolean",
      "example": true
    },
    "mappingUUID": {
      "type": "string",
      "example": "01234567-0123-0123-0123-012345678901"
    }
  }
}