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

26 lines
489 B
JSON

{
"components": {
"schemas": {
"PathMapEntity": {
"allOf": [
{
"$ref": "#/components/schemas/MapEntity"
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"path",
"predicted_path"
]
}
}
}
]
}
}
}
}