Microsoft Graph · Schema
publicError
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Represents the error code. |
| details | array | Details of the error. |
| innerError | object | Details of the inner error. |
| message | string | A non-localized message for the developer. |
| target | string | The target of the error. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.publicError",
"title": "publicError",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Represents the error code.",
"nullable": true
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.publicErrorDetail"
},
"description": "Details of the error."
},
"innerError": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.publicInnerError"
},
{
"type": "object",
"nullable": true
}
],
"description": "Details of the inner error."
},
"message": {
"type": "string",
"description": "A non-localized message for the developer.",
"nullable": true
},
"target": {
"type": "string",
"description": "The target of the error.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}