{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Category", "title": "Category", "type": "object", "description": "Category an app belongs to.", "properties": { "slug": { "type": "string", "description": "The shortened slug name for this category", "example": "example-value" } }, "required": [ "slug" ] }