Mews · Schema

Space resource data

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
FloorNumber string Number of the floor the space is on.
LocationNotes string Location notes for the space. It can be, for example, Building number the space is located in or the Parking area the particular parking space is at.
View JSON Schema on GitHub

JSON Schema

mews-spacedata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpaceData",
  "title": "Space resource data",
  "required": [
    "FloorNumber"
  ],
  "type": "object",
  "properties": {
    "FloorNumber": {
      "minLength": 1,
      "type": "string",
      "description": "Number of the floor the space is on."
    },
    "LocationNotes": {
      "type": "string",
      "description": "Location notes for the space. It can be, for example, Building number the space is located in or the Parking area the particular parking space is at.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "SpaceData"
}