Mews · Schema

Address

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Line1 string
Line2 string
City string
PostalCode string
SubdivisionCode string
CountryCode string
View JSON Schema on GitHub

JSON Schema

mews-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Address",
  "title": "Address",
  "type": "object",
  "properties": {
    "Line1": {
      "type": "string",
      "nullable": true
    },
    "Line2": {
      "type": "string",
      "nullable": true
    },
    "City": {
      "type": "string",
      "nullable": true
    },
    "PostalCode": {
      "type": "string",
      "nullable": true
    },
    "SubdivisionCode": {
      "type": "string",
      "nullable": true
    },
    "CountryCode": {
      "type": "string",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "Address"
}