WSO2 · Schema

PolicyAdherenceSummary

Summary of governance policy adherence in the organization.

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
total integer Total number of policies.
followed integer Number of policies followed to.
violated integer Number of policies violated.
unApplied integer Number of policies unApplied.
View JSON Schema on GitHub

JSON Schema

governance-api-policy-adherence-summary-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/governance-api-policy-adherence-summary-schema.json",
  "title": "PolicyAdherenceSummary",
  "description": "Summary of governance policy adherence in the organization.",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of policies.",
      "example": 10
    },
    "followed": {
      "type": "integer",
      "description": "Number of policies followed to.",
      "example": 6
    },
    "violated": {
      "type": "integer",
      "description": "Number of policies violated.",
      "example": 4
    },
    "unApplied": {
      "type": "integer",
      "description": "Number of policies unApplied.",
      "example": 0
    }
  }
}