Mews · Schema

Invoice payment item data

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
InvoiceId string Unique identifier of the invoice `Bill`.
View JSON Schema on GitHub

JSON Schema

mews-invoicepaymentdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvoicePaymentData",
  "title": "Invoice payment item data",
  "required": [
    "InvoiceId"
  ],
  "type": "object",
  "properties": {
    "InvoiceId": {
      "type": "string",
      "description": "Unique identifier of the invoice `Bill`.",
      "format": "uuid"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "InvoicePaymentData"
}