{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Category", "title": "Category", "type": "object", "properties": { "id": { "type": "integer", "example": "abc123" }, "name": { "type": "string", "example": "Example Title" }, "description": { "type": "string", "example": "A sample description." } } }