Valetudo/backend/lib/entities/map/doc/PolygonMapEntity.openapi.json

27 lines
529 B
JSON

{
"components": {
"schemas": {
"PolygonMapEntity": {
"allOf": [
{
"$ref": "#/components/schemas/MapEntity"
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"active_zone",
"no_go_area",
"no_mop_area"
]
}
}
}
]
}
}
}
}