Mews · Schema

ServiceOrderNoteResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
ServiceOrderNotes array The collection of service order notes.
Cursor string Unique identifier of the last and hence oldest service order note returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subse
View JSON Schema on GitHub

JSON Schema

mews-serviceordernoteresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceOrderNoteResult",
  "title": "ServiceOrderNoteResult",
  "required": [
    "ServiceOrderNotes"
  ],
  "type": "object",
  "properties": {
    "ServiceOrderNotes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OrderNote"
      },
      "description": "The collection of service order notes."
    },
    "Cursor": {
      "type": "string",
      "description": "Unique identifier of the last and hence oldest service order note 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 service order notes.",
      "format": "uuid",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "ServiceOrderNoteResult"
}