mirror of https://github.com/Hypfer/Valetudo.git
30 lines
668 B
JSON
30 lines
668 B
JSON
{
|
|
"components": {
|
|
"schemas": {
|
|
"MapEntity": {
|
|
"description": "Map Entities are everything that is expressed with coordinates",
|
|
"allOf": [
|
|
{
|
|
"$ref": "#/components/schemas/SerializableEntity"
|
|
},
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string"
|
|
},
|
|
"points": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "number"
|
|
},
|
|
"minItems": 2
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|