This repository was archived by the owner on Dec 18, 2024. It is now read-only.
This repository was archived by the owner on Dec 18, 2024. It is now read-only.
Change JSON format for data #158
Closed
Description
In VISS 2 data is not in a simple item "value", but in a structure that allwos returning several data points
"data": {
"description": "Data including path and one or more data point(s).",
"type": "object/array",
"properties": {
"path": {
"description": "The path to the desired vehicle signal(s), as defined by the metadata schema.",
"type": "string"
},
"dp": {
"description": "Data point including one or more value and time samp",
"type": "object/array"
"properties": {
"value": {
"description": "The value related to the associated path.",
"type": "string"
},
"ts": {
"description": "Timestamp associated with the value capture.",
"type": "string"
}
}
}
},