Valetudo/backend/lib/entities/map/doc/MapEntity.openapi.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
}
}
}
]
}
}
}
}