{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.userExperienceAnalyticsMetric", "title": "microsoft.graph.userExperienceAnalyticsMetric", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "userExperienceAnalyticsMetric", "required": [ "@odata.type" ], "type": "object", "properties": { "unit": { "type": "string", "description": "The unit of the user experience analytics metric. Examples: none, percentage, count, seconds, score.", "nullable": true }, "value": { "oneOf": [ { "type": "number", "format": "double", "nullable": true }, { "type": "string", "nullable": true }, { "$ref": "#/components/schemas/ReferenceNumeric" } ], "description": "The value of the user experience analytics metric." }, "@odata.type": { "type": "string" } }, "description": "The user experience analytics metric contains the score and units of a metric of a user experience anlaytics category." } ], "x-ms-discriminator-value": "#microsoft.graph.userExperienceAnalyticsMetric" }