Microsoft Graph · Schema

microsoft.graph.ODataErrors.MainError

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
code string
message string
target string
details array
innerError object
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphodataerrorsmainerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.ODataErrors.MainError",
  "title": "microsoft.graph.ODataErrors.MainError",
  "required": [
    "code",
    "message"
  ],
  "type": "object",
  "properties": {
    "code": {
      "type": "string"
    },
    "message": {
      "type": "string",
      "x-ms-primary-error-message": true
    },
    "target": {
      "type": "string",
      "nullable": true
    },
    "details": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.ODataErrors.ErrorDetails"
      }
    },
    "innerError": {
      "$ref": "#/components/schemas/microsoft.graph.ODataErrors.InnerError"
    }
  }
}