WSO2 · Schema

Label

Label schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
id string
name string
description string
View JSON Schema on GitHub

JSON Schema

publisher-api-label-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-label-schema.json",
  "title": "Label",
  "description": "Label schema from WSO2 API Manager",
  "required": [
    "name"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "example": "d7cf8523-9180-4255-84fa-6cb171c1f779"
    },
    "name": {
      "maxLength": 255,
      "minLength": 1,
      "type": "string",
      "example": "Health"
    },
    "description": {
      "maxLength": 1024,
      "type": "string",
      "example": "Health related APIs"
    }
  }
}