WSO2 · JSON Structure

Admin Api Token Validation Structure

TokenValidation schema from WSO2 API Manager

Type: object Properties: 4
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Token handling Configuration is a JSON Structure definition published by WSO2, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id enable type value

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