Mews · Schema

Customer data for payment terminal command.

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
FullName string Full name of the customer.
View JSON Schema on GitHub

JSON Schema

mews-paymentterminalcommandcustomerdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentTerminalCommandCustomerData",
  "title": "Customer data for payment terminal command.",
  "required": [
    "FullName"
  ],
  "type": "object",
  "properties": {
    "FullName": {
      "minLength": 1,
      "type": "string",
      "description": "Full name of the customer."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "PaymentTerminalCommandCustomerData"
}