Mews · Schema

IdentityDocumentResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
IdentityDocuments array The identity documents of customers.
Cursor string Unique identifier of the item one newer in time order than the items to be returned. If Cursor is not specified, i.e. null, then the latest or most recent items will be returned.
View JSON Schema on GitHub

JSON Schema

mews-identitydocumentresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdentityDocumentResult",
  "title": "IdentityDocumentResult",
  "required": [
    "IdentityDocuments"
  ],
  "type": "object",
  "properties": {
    "IdentityDocuments": {
      "maxItems": 1000,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/IdentityDocumentV20241025"
      },
      "description": "The identity documents of customers."
    },
    "Cursor": {
      "type": "string",
      "description": "Unique identifier of the item one newer in time order than the items to be returned. If Cursor is not specified, i.e. null, then the latest or most recent items will be returned.",
      "format": "uuid",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "IdentityDocumentResult"
}