Microsoft Planner · Schema

ODataError

OData error response

CollaborationMicrosoft 365ProductivityProject ManagementTask Management

Properties

Name Type Description
error object
View JSON Schema on GitHub

JSON Schema

microsoft-planner-odataerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ODataError",
  "title": "ODataError",
  "type": "object",
  "description": "OData error response",
  "properties": {
    "error": {
      "type": "object",
      "properties": {
        "code": {
          "type": "string",
          "description": "The error code"
        },
        "message": {
          "type": "string",
          "description": "A human-readable error message"
        },
        "innerError": {
          "type": "object",
          "properties": {
            "request-id": {
              "type": "string"
            },
            "date": {
              "type": "string",
              "format": "date-time"
            }
          }
        }
      },
      "example": "example_value"
    }
  }
}