New Relic · Schema

MobileApplicationResponseType

MobileApplicationResponseType schema

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
crash_summary object
health_status string
id integer
mobile_summary object
name string
reporting boolean
View JSON Schema on GitHub

JSON Schema

openapi-mobile-application-response-type-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-mobile-application-response-type-schema.json",
  "title": "MobileApplicationResponseType",
  "description": "MobileApplicationResponseType schema",
  "type": "object",
  "properties": {
    "crash_summary": {
      "$ref": "#/components/schemas/CrashSummaryResponse"
    },
    "health_status": {
      "type": "string",
      "example": "active"
    },
    "id": {
      "type": "integer",
      "example": 100
    },
    "mobile_summary": {
      "$ref": "#/components/schemas/MobileSummaryDataResponse"
    },
    "name": {
      "type": "string",
      "example": "example-resource-01"
    },
    "reporting": {
      "type": "boolean",
      "example": true
    }
  }
}