{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.omaSettingFloatingPoint", "title": "microsoft.graph.omaSettingFloatingPoint", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.omaSetting" }, { "title": "omaSettingFloatingPoint", "required": [ "@odata.type" ], "type": "object", "properties": { "value": { "oneOf": [ { "type": "number", "format": "float", "nullable": true }, { "type": "string", "nullable": true }, { "$ref": "#/components/schemas/ReferenceNumeric" } ], "description": "Value." }, "@odata.type": { "type": "string", "default": "#microsoft.graph.omaSettingFloatingPoint" } }, "description": "OMA Settings Floating Point definition." } ], "x-ms-discriminator-value": "#microsoft.graph.omaSettingFloatingPoint" }