WSO2 · Schema

SubtypeConfiguration

Configuration settings for the subtype

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
subtype string The designated name of the subtype.
configuration object Specific configuration properties related to the subtype.
View JSON Schema on GitHub

JSON Schema

publisher-api-subtype-configuration-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/publisher-api-subtype-configuration-schema.json",
  "title": "SubtypeConfiguration",
  "description": "Configuration settings for the subtype",
  "type": "object",
  "properties": {
    "subtype": {
      "type": "string",
      "description": "The designated name of the subtype.",
      "default": "DEFAULT",
      "example": "proxy",
      "readOnly": true
    },
    "configuration": {
      "type": "object",
      "description": "Specific configuration properties related to the subtype."
    }
  }
}