Advanced Excel · Schema

ErrorResponse

Microsoft Graph API error response.

AutomationBusiness IntelligenceData AnalysisData ProcessingExcelMicrosoftSpreadsheets

Properties

Name Type Description
error object Error details.
View JSON Schema on GitHub

JSON Schema

excel-api-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorResponse",
  "description": "Microsoft Graph API error response.",
  "type": "object",
  "properties": {
    "error": {
      "type": "object",
      "description": "Error details.",
      "properties": {
        "code": {
          "type": "string",
          "description": "Error code."
        },
        "message": {
          "type": "string",
          "description": "Error message."
        }
      }
    }
  }
}