Mews · Schema

Rate extent

Extent of data to be returned.

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Rates boolean Whether the response should contain rates.
RateGroups boolean Whether the response should contain rate groups.
AvailabilityBlockAssignments boolean Whether the response should contain availability block assignments.
View JSON Schema on GitHub

JSON Schema

mews-rateextent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RateExtent",
  "title": "Rate extent",
  "type": "object",
  "properties": {
    "Rates": {
      "type": "boolean",
      "description": "Whether the response should contain rates.",
      "nullable": true
    },
    "RateGroups": {
      "type": "boolean",
      "description": "Whether the response should contain rate groups.",
      "nullable": true,
      "deprecated": true,
      "x-deprecatedMessage": "Use `rateGroups/getAll`"
    },
    "AvailabilityBlockAssignments": {
      "type": "boolean",
      "description": "Whether the response should contain availability block assignments."
    }
  },
  "additionalProperties": false,
  "description": "Extent of data to be returned.",
  "x-schema-id": "RateExtent"
}