{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.insightValueDouble", "title": "microsoft.graph.insightValueDouble", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.userExperienceAnalyticsInsightValue" }, { "title": "insightValueDouble", "required": [ "@odata.type" ], "type": "object", "properties": { "value": { "oneOf": [ { "type": "number", "format": "double", "nullable": true }, { "type": "string", "nullable": true }, { "$ref": "#/components/schemas/ReferenceNumeric" } ], "description": "The double value of the user experience analytics insight." }, "@odata.type": { "type": "string", "default": "#microsoft.graph.insightValueDouble" } }, "description": "The value in an user experience analytics insight." } ], "x-ms-discriminator-value": "#microsoft.graph.insightValueDouble" }