{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-tag-schema.json", "title": "Tag Schema", "type": "object", "properties": { "color": { "type": "string" }, "text": { "type": "string" }, "name": { "type": "string" }, "link": { "type": "string" }, "id": { "type": "integer" } }, "required": [ "color", "text", "link", "id" ] }