Properties
| Name | Type | Description |
|---|---|---|
| Commands | array | The filtered fiscal machine commands. |
| Cursor | string | Unique identifier of the last returned command. This can be used in Limitation in a subsequent request to fetch the next batch of commands. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FiscalMachineCommandDataV20250623Result",
"title": "FiscalMachineCommandDataV20250623Result",
"required": [
"Commands"
],
"type": "object",
"properties": {
"Commands": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FiscalMachineCommandDataV20250623"
},
"description": "The filtered fiscal machine commands."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the last returned command. This can be used in Limitation in a subsequent request to fetch the next batch of commands.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "FiscalMachineCommandDataV20250623Result"
}