UNPKG

vda-5050-cli

Version:

Command line interface for developing VDA 5050 clients

29 lines 1.1 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://vda-5050-schema.org/v1.1/instant-actions.schema.json", "title": "instantActions", "description": "Instant actions that the AGV is to execute as soon as they arrive.", "documentVersion": "1.1, June 2020", "subtopic": "/instantActions", "type": "object", "allOf": [ { "$ref": "http://vda-5050-schema.org/v1.1/common.schema.json#/definitions/header" }, { "properties": { "instantActions": { "description": "Array of actions that need to be performed immediately and are not part of the regular order.", "type": "array", "items": { "$ref": "http://vda-5050-schema.org/v1.1/common.schema.json#/definitions/action", "description": "Instant Action Object" } } }, "required": [ "instantActions" ] } ] }