Mews · Schema

Billing automation accounting category assignment

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
AccountingCategoryId string Unique identifier of the accounting category.
ItemTypes object Type of the accounting category routed item.
View JSON Schema on GitHub

JSON Schema

mews-billingautomationaccountingcategoryassignment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillingAutomationAccountingCategoryAssignment",
  "title": "Billing automation accounting category assignment",
  "required": [
    "AccountingCategoryId",
    "ItemTypes"
  ],
  "type": "object",
  "properties": {
    "AccountingCategoryId": {
      "type": "string",
      "description": "Unique identifier of the accounting category.",
      "format": "uuid"
    },
    "ItemTypes": {
      "title": "Accounting category routed item types",
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountingCategoryRoutedItemTypes"
        }
      ],
      "description": "Type of the accounting category routed item."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "BillingAutomationAccountingCategoryAssignment"
}