WSO2 · Schema

Token handling Configuration

TokenValidation schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
id integer
enable boolean
type string
value object
View JSON Schema on GitHub

JSON Schema

admin-api-token-validation-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/admin-api-token-validation-schema.json",
  "title": "Token handling Configuration",
  "description": "TokenValidation schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "enable": {
      "type": "boolean",
      "example": false,
      "default": true
    },
    "type": {
      "type": "string",
      "enum": [
        "REFERENCE",
        "JWT",
        "CUSTOM"
      ]
    },
    "value": {
      "type": "object",
      "properties": {}
    }
  }
}