New Relic · Schema

ErrorResponse

Error response

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
requestId string
error object
View JSON Schema on GitHub

JSON Schema

new-relic-log-error-response-schema.json Raw ↑
{
  "type": "object",
  "description": "Error response",
  "properties": {
    "requestId": {
      "type": "string",
      "example": "500123"
    },
    "error": {
      "type": "object",
      "example": {
        "type": "standard",
        "message": "Operation completed successfully"
      },
      "properties": {
        "type": {
          "type": "string"
        },
        "message": {
          "type": "string"
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorResponse"
}