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
Represents a detailed error object, potentially containing multiple nested errors, encountered during classification or policy evaluation.
Use processingError for errors related to content processing or policy evaluation. Inherits from classifcationErrorBase.
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",
}
]
}