NetApp · Schema

ErrorResponse

ONTAP REST API error response

CloudData ManagementHybrid CloudInfrastructureStorageFortune 500

Properties

Name Type Description
error object
View JSON Schema on GitHub

JSON Schema

netapp-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "description": "ONTAP REST API error response",
  "properties": {
    "error": {
      "type": "object",
      "properties": {
        "message": {
          "type": "string",
          "description": "Human-readable error message"
        },
        "code": {
          "type": "string",
          "description": "Error code"
        },
        "target": {
          "type": "string",
          "description": "The field or resource that caused the error"
        }
      },
      "example": "example_value"
    }
  }
}