{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Category", "title": "Category", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the category" }, "name": { "type": "string", "description": "Display name of the category" }, "slugifiedName": { "type": "string", "description": "URL-friendly slug for the category" } } }