Mews · Schema

OrderItemResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
OrderItems array Set of requested order items.
Cursor string Unique identifier of the last and hence oldest order item returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subsequent re
View JSON Schema on GitHub

JSON Schema

mews-orderitemresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrderItemResult",
  "title": "OrderItemResult",
  "required": [
    "OrderItems"
  ],
  "type": "object",
  "properties": {
    "OrderItems": {
      "maxItems": 1000,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OrderItem"
      },
      "description": "Set of requested order items."
    },
    "Cursor": {
      "type": "string",
      "description": "Unique identifier of the last and hence oldest order item returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subsequent request to fetch the next batch of older order items.",
      "format": "uuid",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "OrderItemResult"
}