{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginatedManagedIssueList", "title": "PaginatedManagedIssueList", "allOf": [ { "$ref": "#/components/schemas/Pagination" }, { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "created": { "type": "string", "format": "date-time" }, "services": { "type": "array", "items": { "type": "integer" } }, "entity": { "type": "object", "properties": { "id": { "type": "integer" }, "label": { "type": "string" }, "type": { "type": "string" }, "url": { "type": "string" } } } } } } } } ] }