{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Tag", "title": "Tag", "type": "object", "properties": { "tagId": { "type": "integer" }, "name": { "type": "string" }, "type": { "type": "string", "enum": [ "public", "private" ] }, "description": { "type": "string" } } }