Mews · Schema

AccountingItemResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
OrderItems array The order items (consumed items such as nights or products).
PaymentItems array The payment items (such as cash, credit card payments or invoices).
CreditCardTransactions array The credit card payment transactions.
View JSON Schema on GitHub

JSON Schema

mews-accountingitemresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingItemResult",
  "title": "AccountingItemResult",
  "type": "object",
  "properties": {
    "OrderItems": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OrderItemOld"
      },
      "description": "The order items (consumed items such as nights or products).",
      "nullable": true
    },
    "PaymentItems": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PaymentItemOld"
      },
      "description": "The payment items (such as cash, credit card payments or invoices).",
      "nullable": true
    },
    "CreditCardTransactions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CreditCardTransaction"
      },
      "description": "The credit card payment transactions.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "AccountingItemResult"
}