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

27 lines
537 B
JSON

{
"components": {
"schemas": {
"PointMapEntity": {
"allOf": [
{
"$ref": "#/components/schemas/MapEntity"
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"charger_location",
"robot_position",
"go_to_target"
]
}
}
}
]
}
}
}
}