A-SW Hub / Repositories
Local Gitea · READ ONLY
← 저장소 Repositories
REPOSITORY

via/fruit-multi-robot-control Private

[참조 MVP] 과채류 다중로봇 관제 — 작업 주문, 로봇 가용성, OTA 상태를 연결하는 SaaS 관제 참조 MVP입니다.

https://git.agrithing.ai/via/fruit-multi-robot-control.git
4 commits
1 items · feat/concrete-mvp-v2
·/ contracts/component.interface.json
json · 818 B · af18133 Download
{  "$schema": "https://json-schema.org/draft/2020-12/schema",  "title": "과채류 다중로봇 관제 reference interface",  "type": "object",  "required": [    "component",    "accepted",    "status",    "target",    "workOrder",    "assignment",    "queueReason",    "evaluatedRobots"  ],  "properties": {    "component": {      "const": "via/fruit-multi-robot-control"    },    "accepted": {      "type": "boolean"    },    "status": {      "type": "string"    },    "target": {      "const": "service"    },    "workOrder": {      "type": "string"    },    "assignment": {      "type": [        "object",        "null"      ]    },    "queueReason": {      "type": [        "string",        "null"      ]    },    "evaluatedRobots": {      "type": "integer"    }  }}