WSO2 · Schema

The Service Schema object

ServiceSchema schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
serviceMetadata object
definitionFile string
inlineContent string Inline content of the document
View JSON Schema on GitHub

JSON Schema

service-catalog-api-service-schema-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/service-catalog-api-service-schema-schema.json",
  "title": "The Service Schema object",
  "description": "ServiceSchema schema from WSO2 API Manager",
  "type": "object",
  "required": [
    "serviceMetadata"
  ],
  "properties": {
    "serviceMetadata": {
      "$ref": "#/components/schemas/Service"
    },
    "definitionFile": {
      "type": "string",
      "format": "binary"
    },
    "inlineContent": {
      "type": "string",
      "description": "Inline content of the document"
    }
  }
}