publicError resource type
Namespace: microsoft.graph
Represents a generic error and its details.
Properties
Property | Type | Description |
---|---|---|
code | string | Represents the error code. |
details | publicErrorDetail collection | Details of the error. |
innerError | publicInnerError | Details of the inner error. |
message | string | A non-localized message for the developer. |
target | String | The target of the error. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.publicError",
"code": "String",
"message": "String",
"target": "String",
"details": [
{
"@odata.type": "microsoft.graph.publicErrorDetail"
}
],
"innerError": {
"@odata.type": "microsoft.graph.publicInnerError"
}
}