{
  "$id": "https://waku-robotics.com/schema/order",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Device Order",
  "type": "object",
  "required": ["timestamp", "id", "status"],
  "properties": {
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp in ISO8601 format (YYYY-MM-DDTHH:mm:ss.ssZ).",
      "examples": ["1991-03-11T11:40:03.12Z"]
    },
    "name": {
      "type": "string",
      "description": "order name"
    },
    "id": {
      "type": "string",
      "description": "unique order identification"
    },
    "device_order_id": {
      "type": "string",
      "description": "device-internal order identification"
    },
    "status": {
      "type": "string",
      "enum": ["pending", "started", "finished", "cancelled", "aborted"],
      "description": "order status"
    },
    "parameters": {
      "type": "object",
      "description": "parameters to the current mission as key value pairs of any type"
    }
  }
}
