qstbak/Questionable.Model/Questionable.Model.CommonVector3
2025-10-09 07:47:19 +10:00

22 lines
382 B
Text

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://qstxiv.github.io/schema/common-vector3.json",
"type": "object",
"description": "Position in the world",
"properties": {
"X": {
"type": "number"
},
"Y": {
"type": "number"
},
"Z": {
"type": "number"
}
},
"required": [
"X",
"Y",
"Z"
]
}