WSO2 · JSON Structure

Service Catalog Api Service Schema Structure

ServiceSchema schema from WSO2 API Manager

Type: object Properties: 3 Required: 1
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

The Service Schema object is a JSON Structure definition published by WSO2, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

serviceMetadata definitionFile inlineContent

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/service-catalog-api-service-schema-structure.json",
  "name": "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"
    }
  }
}