Mews · Schema

Export ledger entry data filters

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Posting object Filters ledger entries by their posting date within the specified date interval, inclusive of both the start and end dates.
View JSON Schema on GitHub

JSON Schema

mews-exportledgerentrydatafilters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExportLedgerEntryDataFilters",
  "title": "Export ledger entry data filters",
  "required": [
    "Posting"
  ],
  "type": "object",
  "properties": {
    "Posting": {
      "title": "Date filter interval",
      "allOf": [
        {
          "$ref": "#/components/schemas/DateFilterInterval"
        }
      ],
      "description": "Filters ledger entries by their posting date within the specified date interval, inclusive of both the start and end dates."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "ExportLedgerEntryDataFilters"
}