New Relic · Schema

ApplicationInstanceResponseType

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
port integer
View JSON Schema on GitHub

JSON Schema

new-relic-applicationinstanceresponsetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationInstanceResponseType",
  "title": "ApplicationInstanceResponseType",
  "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/ApplicationInstanceLinksResponse"
    },
    "port": {
      "type": "integer",
      "example": 8080
    }
  }
}