New Relic · Schema

ApplicationResponseType

ApplicationResponseType schema

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
application_summary object
end_user_summary object
health_status string
id integer
language string
last_reported_at string
links object
name string
reporting boolean
settings object
View JSON Schema on GitHub

JSON Schema

openapi-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-application-response-type-schema.json",
  "title": "ApplicationResponseType",
  "description": "ApplicationResponseType schema",
  "type": "object",
  "properties": {
    "application_summary": {
      "$ref": "#/components/schemas/AppSummaryResponse"
    },
    "end_user_summary": {
      "$ref": "#/components/schemas/EndUserSummaryResponse"
    },
    "health_status": {
      "type": "string",
      "example": "active"
    },
    "id": {
      "type": "integer",
      "example": 100
    },
    "language": {
      "type": "string",
      "example": "example_string"
    },
    "last_reported_at": {
      "type": "string",
      "format": "date-time",
      "example": "2026-04-18T14:30:00Z"
    },
    "links": {
      "$ref": "#/components/schemas/ApplicationLinksResponse"
    },
    "name": {
      "type": "string",
      "example": "example-resource-01"
    },
    "reporting": {
      "type": "boolean",
      "example": true
    },
    "settings": {
      "$ref": "#/components/schemas/AppSettingsResponse"
    }
  }
}