Mews · Schema

RateGroupResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
RateGroups array The filtered rate groups.
Cursor string Unique identifier of the last and hence oldest rate group returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subsequent re
View JSON Schema on GitHub

JSON Schema

mews-rategroupresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RateGroupResult",
  "title": "RateGroupResult",
  "required": [
    "RateGroups"
  ],
  "type": "object",
  "properties": {
    "RateGroups": {
      "maxItems": 1000,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RateGroup"
      },
      "description": "The filtered rate groups."
    },
    "Cursor": {
      "type": "string",
      "description": "Unique identifier of the last and hence oldest rate group 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 rate groups.",
      "format": "uuid",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "RateGroupResult"
}