Edit

Share via


classifcationErrorBase resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

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

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"
  }
}