New Relic · Schema

Application

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
application object
View JSON Schema on GitHub

JSON Schema

new-relic-application-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "application": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "example": "example-resource-01"
        },
        "settings": {
          "type": "object",
          "properties": {
            "app_apdex_threshold": {
              "type": "number",
              "format": "float",
              "example": 42.5
            },
            "enable_real_user_monitoring": {
              "type": "boolean",
              "example": true
            },
            "end_user_apdex_threshold": {
              "type": "number",
              "format": "float",
              "example": 42.5
            }
          }
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Application"
}