ResourcePath 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/publisher-api-resource-path-schema.json", "title": "ResourcePath", "description": "ResourcePath schema from WSO2 API Manager", "required": [ "id" ], "type": "object", "properties": { "id": { "type": "integer", "example": 1 }, "resourcePath": { "type": "string", "example": "/menu" }, "httpVerb": { "type": "string", "example": "GET" } } }