{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TagsObj", "title": "TagsObj", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "example": "Tag name", "description": "Name of the tag." }, "description": { "type": "string", "example": "Tag description", "description": "Description of the tag" } } }