New Relic · Schema

ApplicationHostResponseType

ApplicationHostResponseType schema

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
host string
application_name string
application_summary object
end_user_summary object
health_status string
id integer
language integer
links object
View JSON Schema on GitHub

JSON Schema

openapi-application-host-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-host-response-type-schema.json",
  "title": "ApplicationHostResponseType",
  "description": "ApplicationHostResponseType schema",
  "type": "object",
  "properties": {
    "host": {
      "type": "string",
      "example": "example_string"
    },
    "application_name": {
      "type": "string",
      "example": "example_string"
    },
    "application_summary": {
      "$ref": "#/components/schemas/AppSummaryDataResponse"
    },
    "end_user_summary": {
      "$ref": "#/components/schemas/EndUserSummaryDataResponse"
    },
    "health_status": {
      "type": "string",
      "example": "active"
    },
    "id": {
      "type": "integer",
      "example": 100
    },
    "language": {
      "type": "integer",
      "example": 100
    },
    "links": {
      "$ref": "#/components/schemas/ApplicationHostLinksResponse"
    }
  }
}