Mews · Schema

Customer legal identifiers

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
ItDestinationCode string Italian destination code.
ItFiscalCode string Italian fiscal code.
ItLotteryCode string Italian lottery code.
View JSON Schema on GitHub

JSON Schema

mews-legalentityidentifiers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LegalEntityIdentifiers",
  "title": "Customer legal identifiers",
  "type": "object",
  "properties": {
    "ItDestinationCode": {
      "type": "string",
      "description": "Italian destination code.",
      "nullable": true
    },
    "ItFiscalCode": {
      "type": "string",
      "description": "Italian fiscal code.",
      "nullable": true
    },
    "ItLotteryCode": {
      "maxLength": 15,
      "minLength": 2,
      "type": "string",
      "description": "Italian lottery code.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "LegalEntityIdentifiers"
}