Filter commands by their unique identifiers.
{ "$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" }