23 lines
409 B
JSON
23 lines
409 B
JSON
|
{
|
|||
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|||
|
"$id": "/liza/Questionable/raw/branch/master/Questionable.Model/common-vector3.json",
|
|||
|
"type": "object",
|
|||
|
"description": "Position in the world",
|
|||
|
"properties": {
|
|||
|
"X": {
|
|||
|
"type": "number"
|
|||
|
},
|
|||
|
"Y": {
|
|||
|
"type": "number"
|
|||
|
},
|
|||
|
"Z": {
|
|||
|
"type": "number"
|
|||
|
}
|
|||
|
},
|
|||
|
"required": [
|
|||
|
"X",
|
|||
|
"Y",
|
|||
|
"Z"
|
|||
|
]
|
|||
|
}
|