Updated Schemas

This commit is contained in:
Ben C 2022-11-21 05:08:52 +00:00
parent 9d4dd66ea1
commit 32378ce778

View File

@ -989,6 +989,13 @@
"$ref": "#/definitions/SignalInfo"
}
},
"shuttles": {
"type": "array",
"description": "Add shuttles to this planet",
"items": {
"$ref": "#/definitions/ShuttleInfo"
}
},
"remotes": {
"type": "array",
"description": "Add projection pools/platforms, whiteboards, and stones to this planet",
@ -1881,6 +1888,36 @@
}
}
},
"ShuttleInfo": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"description": "The unique shuttle id"
},
"position": {
"description": "The location of this shuttle.",
"$ref": "#/definitions/MVector3"
},
"rotation": {
"description": "The rotation of this shuttle.",
"$ref": "#/definitions/MVector3"
},
"parentPath": {
"type": "string",
"description": "The relative path from the planet to the parent of this object. Optional (will default to the root sector)."
},
"isRelativeToParent": {
"type": "boolean",
"description": "Whether the positional and rotational coordinates are relative to parent instead of the root planet object."
},
"rename": {
"type": "string",
"description": "An optional rename of this object"
}
}
},
"RemoteInfo": {
"type": "object",
"additionalProperties": false,