Mews · Schema

Resource access token permissions

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Bed boolean Specify whether the resource access token grants permission to access bed.
Room boolean Specify whether the resource access token grants permission to access room.
Floor boolean Specify whether the resource access token grants permission to access floor.
Building boolean Specify whether the resource access token grants permission to access building.
View JSON Schema on GitHub

JSON Schema

mews-resourceaccesstokenpermissions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceAccessTokenPermissions",
  "title": "Resource access token permissions",
  "type": "object",
  "properties": {
    "Bed": {
      "type": "boolean",
      "description": "Specify whether the resource access token grants permission to access bed."
    },
    "Room": {
      "type": "boolean",
      "description": "Specify whether the resource access token grants permission to access room."
    },
    "Floor": {
      "type": "boolean",
      "description": "Specify whether the resource access token grants permission to access floor."
    },
    "Building": {
      "type": "boolean",
      "description": "Specify whether the resource access token grants permission to access building."
    }
  },
  "additionalProperties": false,
  "description": "",
  "x-schema-id": "ResourceAccessTokenPermissions"
}