PostRequestBody 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/devportal-api-post-request-body-schema.json", "title": "Post request body", "description": "PostRequestBody schema from WSO2 API Manager", "type": "object", "properties": { "content": { "type": "string", "maxLength": 512, "description": "Content of the comment\n", "example": "This is a comment" }, "category": { "type": "string", "description": "Category of the comment\n", "example": "general" } }, "required": [ "content" ] }