21 lines
577 B
JSON
21 lines
577 B
JSON
{
|
|
"$id": "https://www.istp-cnr.it/gray/schemas/coordscart",
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "Cartesian coordinates in right-handed reference (x, y, z)",
|
|
"type": "object",
|
|
"properties": {
|
|
"x": {
|
|
"description": "x coordinate. Units [m]",
|
|
"type": "number"
|
|
},
|
|
"y": {
|
|
"description": "y coordinate. Units [m]",
|
|
"type": "number"
|
|
},
|
|
"z": {
|
|
"description": "z coordinate. Units [m]",
|
|
"type": "number"
|
|
}
|
|
}
|
|
}
|