REPOSITORY
via/alice-sdv-demo Private
A-SW 코드-배포 파이프라인 검증용 ALICE SDV 예제
https://git.agrithing.ai/via/alice-sdv-demo.git 26a84fb ci: add Python static and dynamic analysis
5cf6f47 ci: add Python static and dynamic analysis
66b95ca chore: synchronize ALICE SDV pipeline sample
e5ffbdf chore: synchronize ALICE SDV pipeline sample
5492626 chore: synchronize ALICE SDV pipeline sample
3dacbfe chore: synchronize ALICE SDV pipeline sample
b3ffe5d chore: synchronize ALICE SDV pipeline sample
ab90e6f tune: harden simulator deployment policy
3703ddb test: validate package and deployment fixtures
7b2437e feat: define local simulator deployment target
8e49864 feat: add deployable package manifest
3e29341 chore: synchronize ALICE SDV pipeline sample
6feeead feat: add ALICE SDV pipeline sample
1 items · main
·/ contracts/telemetry.schema.json
json · 621 B · e07f969 Download
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://asw.local/contracts/alice/telemetry.schema.json", "title": "ALICE telemetry", "type": "object", "additionalProperties": false, "required": ["device_id", "state", "battery", "fault", "timestamp"], "properties": { "device_id": { "type": "string", "pattern": "^[a-z0-9-]+$" }, "state": { "enum": ["IDLE", "ENTER", "PATROL", "RETURN", "FAULT"] }, "battery": { "type": "number", "minimum": 0, "maximum": 100 }, "fault": { "type": ["string", "null"] }, "timestamp": { "type": "string", "format": "date-time" } }}