Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 1.86 KB

File metadata and controls

55 lines (43 loc) · 1.86 KB
title classifcationErrorBase resource type
description Abstract base type for representing errors that occur during data classification, label evaluation, or policy processing.
author ArunGedela
ms.date 04/08/2025
ms.localizationpriority medium
ms.subservice security
doc_type resourcePageType

classifcationErrorBase resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Abstract base type for representing errors that occur during data classification, label evaluation, or policy processing.

Use classificationError for specific error details.

Properties

Property Type Description
code String A service-defined error code string.
innerError classificationInnerError Contains more specific, potentially internal error details.
message String A human-readable representation of the error.
target String The target of the error (for example, the specific property or item causing the issue).

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

Note: This is an abstract type and won't be instantiated directly.

{
  "@odata.type": "#microsoft.graph.classifcationErrorBase",
  "code": "String",
  "message": "String",
  "target": "String",
  "innerError": {
    "@odata.type": "microsoft.graph.classificationInnerError"
  }
}