New Relic · Schema

SuccessResponse

Successful ingestion response

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
success boolean Whether the request was accepted
uuid string Unique request identifier
View JSON Schema on GitHub

JSON Schema

event-api-success-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/new-relic/refs/heads/main/json-schema/event-api-success-response-schema.json",
  "title": "SuccessResponse",
  "description": "Successful ingestion response",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Whether the request was accepted",
      "example": true
    },
    "uuid": {
      "type": "string",
      "description": "Unique request identifier",
      "example": "500123"
    }
  }
}