mirror of https://github.com/Hypfer/Valetudo.git
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"components": {
|
|
"schemas": {
|
|
"MapLayer": {
|
|
"description": "A map layer is an array of pixels in a 2d space",
|
|
"allOf": [
|
|
{
|
|
"$ref": "#/components/schemas/SerializableEntity"
|
|
},
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"floor",
|
|
"wall",
|
|
"segment"
|
|
]
|
|
},
|
|
"pixels": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"dimensions": {
|
|
"type": "object",
|
|
"properties": {
|
|
"x": {
|
|
"type": "object",
|
|
"properties": {
|
|
"min": {
|
|
"type": "number"
|
|
},
|
|
"max": {
|
|
"type": "number"
|
|
},
|
|
"mid": {
|
|
"type": "number"
|
|
}
|
|
}
|
|
},
|
|
"y": {
|
|
"type": "object",
|
|
"properties": {
|
|
"min": {
|
|
"type": "number"
|
|
},
|
|
"max": {
|
|
"type": "number"
|
|
},
|
|
"mid": {
|
|
"type": "number"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|