{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.floor",
"title": "microsoft.graph.floor",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.place"
},
{
"title": "floor",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"sortOrder": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Specifies the sort order of the floor. For example, a floor might be named 'Lobby' with a sort order of 0 to show this floor first in ordered lists.",
"format": "int32",
"nullable": true
},
"@odata.type": {
"type": "string",
"default": "#microsoft.graph.floor"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.floor"
}