Mews · Schema

BusinessSegmentResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
BusinessSegments array Business segments.
Cursor string Unique identifier of the last and hence oldest business segment item returned. This can be used in Limitation in a subsequent request to fetch the next batch of older business segment.
View JSON Schema on GitHub

JSON Schema

mews-businesssegmentresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessSegmentResult",
  "title": "BusinessSegmentResult",
  "required": [
    "BusinessSegments"
  ],
  "type": "object",
  "properties": {
    "BusinessSegments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BusinessSegment"
      },
      "description": "Business segments."
    },
    "Cursor": {
      "type": "string",
      "description": "Unique identifier of the last and hence oldest business segment item returned. This can be used in Limitation in a subsequent request to fetch the next batch of older business segment.",
      "format": "uuid",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "BusinessSegmentResult"
}