New Relic · JSON Structure

New Relic Event Error Response Structure

Error response

Type: object Properties: 3
AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

ErrorResponse is a JSON Structure definition published by New Relic, describing 3 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

success error errors

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Error response",
  "name": "ErrorResponse",
  "properties": {
    "success": {
      "type": "boolean"
    },
    "error": {
      "type": "string",
      "description": "Error message"
    },
    "errors": {
      "type": "array",
      "description": "List of validation errors",
      "items": {
        "type": "object",
        "properties": {
          "error": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          }
        }
      }
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}