{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "작업자 추종 이송 AMR reference interface",
  "type": "object",
  "required": [
    "component",
    "accepted",
    "status",
    "target",
    "workerTrackId",
    "speedMps",
    "command",
    "blockingReasons"
  ],
  "properties": {
    "component": {
      "const": "cwsfa/following-transport-amr"
    },
    "accepted": {
      "type": "boolean"
    },
    "status": {
      "type": "string"
    },
    "target": {
      "const": "acu"
    },
    "workerTrackId": {
      "type": "string"
    },
    "speedMps": {
      "type": "number"
    },
    "command": {
      "type": "string"
    },
    "blockingReasons": {
      "type": "array"
    }
  }
}
