ServiceInfo schema from WSO2 API Manager
{ "$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-info-schema.json", "title": "The Service Info object", "description": "ServiceInfo schema from WSO2 API Manager", "type": "object", "properties": { "id": { "type": "string", "example": "01234567-0123-0123-0123-012345678901", "readOnly": true }, "name": { "type": "string", "pattern": "^[^\\*]+$", "example": "PizzashackEndpoint" }, "key": { "type": "string", "example": "PizzashackEndpoint-1.0.0" }, "version": { "type": "string", "example": "v1" }, "md5": { "type": "string", "example": "36583a6a249b410e7fc4f892029709cac09763ddb230e1a829d5f9134d1abd07" } } }