Specification for creating a tag
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TagCreateSpec", "title": "TagCreateSpec", "type": "object", "description": "Specification for creating a tag", "required": [ "name", "category_id" ], "properties": { "name": { "type": "string", "description": "Name for the new tag", "example": "Example Title" }, "description": { "type": "string", "example": "A sample description." }, "category_id": { "type": "string", "description": "Identifier of the parent category", "example": "500123" } } }