Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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.
Represents a detailed error object, potentially containing multiple nested errors, encountered during classification or policy evaluation.
Properties
Property | Type | Description |
---|---|---|
code | String | A service-defined error code string. Inherited from classifcationErrorBase. |
details | classifcationErrorBase collection | A collection of more specific errors contributing to the overall error. |
innerError | classificationInnerError | Contains more specific, potentially internal error details. Inherited from classifcationErrorBase. |
message | String | A human-readable representation of the error. Inherited from classifcationErrorBase. |
target | String | The target of the error (for example, the specific property or item causing the issue). Inherited from classifcationErrorBase. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"code": "String",
"message": "String",
"target": "String",
"innerError": {
"@odata.type": "microsoft.graph.classificationInnerError"
},
"details": [
{
"@odata.type": "#microsoft.graph.classifcationErrorBase",
}
]
}