WSO2 · Schema

API Operation Policy

OperationPolicy schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
policyName string
policyVersion string
policyType string
policyId string
parameters object
View JSON Schema on GitHub

JSON Schema

publisher-api-operation-policy-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-operation-policy-schema.json",
  "title": "API Operation Policy",
  "description": "OperationPolicy schema from WSO2 API Manager",
  "type": "object",
  "required": [
    "policyName"
  ],
  "properties": {
    "policyName": {
      "type": "string"
    },
    "policyVersion": {
      "type": "string",
      "default": "v1"
    },
    "policyType": {
      "type": "string"
    },
    "policyId": {
      "type": "string"
    },
    "parameters": {
      "type": "object",
      "additionalProperties": {
        "type": "object"
      }
    }
  }
}