WSO2 · JSON Structure

Admin Api Configuration Constraint Structure

ConfigurationConstraint schema from WSO2 API Manager

Type: object Properties: 8
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

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

Properties

name label type multiple tooltip constraintType values default

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-configuration-constraint-structure.json",
  "name": "Configurable Configuration Constraints",
  "description": "ConfigurationConstraint schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "application_access_token_expiry_time"
    },
    "label": {
      "type": "string",
      "example": "Access Token Expiry"
    },
    "type": {
      "type": "string",
      "example": "input"
    },
    "multiple": {
      "type": "boolean",
      "example": true
    },
    "tooltip": {
      "type": "string",
      "example": "Define the valid range for token expiration in seconds."
    },
    "constraintType": {
      "type": "string",
      "example": "RANGE"
    },
    "values": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {}
      }
    },
    "default": {
      "type": "object",
      "properties": {}
    }
  }
}