WSO2 · JSON Structure

Publisher Api Threat Protection Policy Structure

ThreatProtectionPolicy schema from WSO2 API Manager

Type: object Properties: 4 Required: 3
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Threat Protection Policy Schema is a JSON Structure definition published by WSO2, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

uuid name type policy

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-structure/publisher-api-threat-protection-policy-structure.json",
  "name": "Threat Protection Policy Schema",
  "description": "ThreatProtectionPolicy schema from WSO2 API Manager",
  "required": [
    "name",
    "policy",
    "type"
  ],
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "Policy ID"
    },
    "name": {
      "type": "string",
      "description": "Name of the policy"
    },
    "type": {
      "type": "string",
      "description": "Type of the policy"
    },
    "policy": {
      "type": "string",
      "description": "policy as a json string"
    }
  }
}