{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.levelMap", "title": "microsoft.graph.levelMap", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.baseMapFeature" }, { "title": "levelMap", "required": [ "@odata.type" ], "type": "object", "properties": { "placeId": { "type": "string", "description": "Identifier of the floor to which this levelMap belongs.", "nullable": true }, "fixtures": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.fixtureMap" }, "description": "Collection of fixtures (such as furniture or equipment) on this level. Supports upsert.", "x-ms-navigationProperty": true }, "sections": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.sectionMap" }, "description": "Collection of sections (such as zones or partitions) on this level. Supports upsert.", "x-ms-navigationProperty": true }, "units": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.unitMap" }, "description": "Collection of units (such as rooms or offices) on this level. Supports upsert.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string", "default": "#microsoft.graph.levelMap" } } } ], "x-ms-discriminator-value": "#microsoft.graph.levelMap" }