{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Category", "title": "Category", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier of the category." }, "name": { "type": "string", "description": "Name of the category." }, "url": { "type": "string", "format": "uri", "description": "URL of the category page." }, "createdAt": { "type": "string", "format": "date-time", "description": "UTC date-time when the category was created." }, "modifiedAt": { "type": "string", "format": "date-time", "description": "UTC date-time when the category was last modified." } } }