{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetTagListRelationshipsResponseCollection", "title": "GetTagListRelationshipsResponseCollection", "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "$ref": "#/components/schemas/ListEnum" }, "id": { "description": "The IDs of all lists that are associated with the Tag", "type": "string" } } } }, "links": { "$ref": "#/components/schemas/CollectionLinks" } }, "required": [ "data" ] }