Mews · Schema

ResourceFeatureAssignmentResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
ResourceFeatureAssignments array Resource feature assignments.
Cursor string Unique identifier of the last and hence oldest resource feature assignments returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation)
View JSON Schema on GitHub

JSON Schema

mews-resourcefeatureassignmentresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceFeatureAssignmentResult",
  "title": "ResourceFeatureAssignmentResult",
  "required": [
    "ResourceFeatureAssignments"
  ],
  "type": "object",
  "properties": {
    "ResourceFeatureAssignments": {
      "maxItems": 1000,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ResourceFeatureAssignment"
      },
      "description": "Resource feature assignments."
    },
    "Cursor": {
      "type": "string",
      "description": "Unique identifier of the last and hence oldest resource feature assignments 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 feature assignments.",
      "format": "uuid",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "ResourceFeatureAssignmentResult"
}