{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.serviceHealthIssue", "title": "microsoft.graph.serviceHealthIssue", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.serviceAnnouncementBase" }, { "title": "serviceHealthIssue", "required": [ "@odata.type" ], "type": "object", "properties": { "classification": { "$ref": "#/components/schemas/microsoft.graph.serviceHealthClassificationType" }, "feature": { "type": "string", "description": "The feature name of the service issue.", "nullable": true }, "featureGroup": { "type": "string", "description": "The feature group name of the service issue.", "nullable": true }, "impactDescription": { "type": "string", "description": "The description of the service issue impact." }, "isResolved": { "type": "boolean", "description": "Indicates whether the issue is resolved." }, "origin": { "$ref": "#/components/schemas/microsoft.graph.serviceHealthOrigin" }, "posts": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.serviceHealthIssuePost" }, "description": "Collection of historical posts for the service issue." }, "service": { "type": "string", "description": "Indicates the service affected by the issue." }, "status": { "$ref": "#/components/schemas/microsoft.graph.serviceHealthStatus" }, "@odata.type": { "type": "string", "default": "#microsoft.graph.serviceHealthIssue" } } } ], "x-ms-discriminator-value": "#microsoft.graph.serviceHealthIssue" }