Properties
| Name | Type | Description |
|---|---|---|
| ResourceCategoryImageAssignments | array | Resource category image assignments. |
| Cursor | string | Unique identifier of the last and hence oldest resource category image assignment returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limita |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ResourceCategoryImageAssignmentResult",
"title": "ResourceCategoryImageAssignmentResult",
"required": [
"ResourceCategoryImageAssignments"
],
"type": "object",
"properties": {
"ResourceCategoryImageAssignments": {
"maxItems": 1000,
"type": "array",
"items": {
"$ref": "#/components/schemas/ResourceCategoryImageAssignment"
},
"description": "Resource category image assignments."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the last and hence oldest resource category image 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 image assignments.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "ResourceCategoryImageAssignmentResult"
}