New Relic · Schema

AppSettingsResponse

AppSettingsResponse schema

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
app_apdex_threshold number
enable_real_user_monitoring boolean
end_user_apdex_threshold number
use_server_side_config boolean
View JSON Schema on GitHub

JSON Schema

openapi-app-settings-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/openapi-app-settings-response-schema.json",
  "title": "AppSettingsResponse",
  "description": "AppSettingsResponse schema",
  "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
    },
    "use_server_side_config": {
      "type": "boolean",
      "example": true
    }
  }
}