{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ResourceCategoryAssignmentResult", "title": "ResourceCategoryAssignmentResult", "required": [ "ResourceCategoryAssignments" ], "type": "object", "properties": { "ResourceCategoryAssignments": { "maxItems": 1000, "type": "array", "items": { "$ref": "#/components/schemas/ResourceCategoryAssignment" }, "description": "Resource category assignments." }, "Cursor": { "type": "string", "description": "Unique identifier of the last and hence oldest resource category assignment returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subsequent request to fetch the next batch of older resource category assignments.", "format": "uuid", "nullable": true } }, "additionalProperties": false, "x-schema-id": "ResourceCategoryAssignmentResult" }