{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.commonroom.io/schemas/v2/taglist", "title": "TagList", "type": "object", "required": [ "success", "data", "meta" ], "properties": { "success": { "type": "boolean", "enum": [ true ] }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/ApiTag" } }, "meta": { "type": "object", "required": [ "nextCursor" ], "properties": { "nextCursor": { "type": "string", "nullable": true, "description": "Cursor for pagination; pass as the `cursor` query parameter to fetch the next page." } } } } }