Mews · Schema

Rate group (ver 2017-04-12)

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Id string Unique identifier of the rate group.
ServiceId string Unique identifier of the Service that the rate group belongs to.
IsActive boolean Whether the rate group is still active.
Name string Name of the rate group.
ExternalIdentifier string External identifier of the rate group.
View JSON Schema on GitHub

JSON Schema

mews-rategroupold-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RateGroupOld",
  "title": "Rate group (ver 2017-04-12)",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "Unique identifier of the rate group.",
      "format": "uuid"
    },
    "ServiceId": {
      "type": "string",
      "description": "Unique identifier of the Service that the rate group belongs to.",
      "format": "uuid"
    },
    "IsActive": {
      "type": "boolean",
      "description": "Whether the rate group is still active."
    },
    "Name": {
      "type": "string",
      "description": "Name of the rate group.",
      "nullable": true
    },
    "ExternalIdentifier": {
      "maxLength": 255,
      "type": "string",
      "description": "External identifier of the rate group.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "RateGroupOld"
}