Mews · Schema

Get all commands by unique identifiers

Filter commands by their unique identifiers.

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
CommandIds array Unique identifiers of the commands to filter by.
View JSON Schema on GitHub

JSON Schema

mews-commandsgetallfilterbycommandidparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommandsGetAllFilterByCommandIdParameters",
  "title": "Get all commands by unique identifiers",
  "required": [
    "CommandIds"
  ],
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/CommandsGetAllFilterParameters"
    }
  ],
  "properties": {
    "CommandIds": {
      "maxItems": 1000,
      "minItems": 1,
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      },
      "description": "Unique identifiers of the commands to filter by."
    }
  },
  "additionalProperties": false,
  "description": "Filter commands by their unique identifiers.",
  "x-schema-id": "CommandsGetAllFilterByCommandIdParameters"
}