New Relic · Schema
MobileSummaryDataResponse
MobileSummaryDataResponse schema
AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform
Properties
| Name | Type | Description |
|---|---|---|
| active_users | integer | |
| calls_per_session | number | |
| failed_call_rate | number | |
| interaction_time | number | |
| launch_count | integer | |
| remote_error_rate | number | |
| response_time | number | |
| throughput | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/new-relic/refs/heads/main/json-schema/openapi-mobile-summary-data-response-schema.json",
"title": "MobileSummaryDataResponse",
"description": "MobileSummaryDataResponse schema",
"type": "object",
"properties": {
"active_users": {
"type": "integer",
"example": 100
},
"calls_per_session": {
"type": "number",
"format": "float",
"example": 42.5
},
"failed_call_rate": {
"type": "number",
"format": "float",
"example": 12.3
},
"interaction_time": {
"type": "number",
"format": "float",
"example": 42.5
},
"launch_count": {
"type": "integer",
"example": 42
},
"remote_error_rate": {
"type": "number",
"format": "float",
"example": 12.3
},
"response_time": {
"type": "number",
"format": "float",
"example": 42.5
},
"throughput": {
"type": "number",
"format": "float",
"example": 42.5
}
}
}