Skip to content

Commit

Permalink
change _ to . notation in readme
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Muehlbauer <[email protected]>
  • Loading branch information
chrizmc committed Nov 14, 2024
1 parent 9693e64 commit d9da312
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cdsp/information-layer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ Schema:
"id": "123", // The VIN
"uuid": "testClient", // The unique client ID
// For reading one
"node": { "name": "Vehicle_Speed" },
"node": { "name": "Vehicle.Speed" },
// For reading N
"nodes": [{ "name": "Vehicle_Speed" },{ "name": "Vehicle_TraveledDistance" }]
"nodes": [{ "name": "Vehicle.Speed" },{ "name": "Vehicle.TraveledDistance" }]
}
```

Expand Down Expand Up @@ -162,9 +162,9 @@ Schema:
"id": "123", // The VIN
"uuid": "testClient", // The unique client ID
// For writing one
"node": { "name": "Vehicle_Speed", "value": 300 },
"node": { "name": "Vehicle.Speed", "value": 300 },
// For writing N
"nodes": [{ "name": "Vehicle_Speed", "value": 300 },{ "name": "Vehicle_TraveledDistance", "value": 100000 }]
"nodes": [{ "name": "Vehicle.Speed", "value": 300 },{ "name": "Vehicle.TraveledDistance", "value": 100000 }]
}
```
Example:
Expand Down

0 comments on commit d9da312

Please sign in to comment.