{ "type": "object", "properties": { "application_hosts": { "type": "array", "example": [ { "host": "example_string", "application_name": "example_string", "application_summary": {}, "end_user_summary": {}, "health_status": "active", "id": 100, "language": 100, "links": {} } ], "items": { "type": "object", "properties": { "host": { "type": "string", "example": "example_string" }, "application_name": { "type": "string", "example": "example_string" }, "application_summary": { "type": "object", "properties": { "apdex_score": { "type": "number", "format": "float", "example": 87.5 }, "error_rate": { "type": "number", "format": "float", "example": 12.3 }, "instance_count": { "type": "integer", "example": 42 }, "response_time": { "type": "number", "format": "float", "example": 42.5 }, "throughput": { "type": "number", "format": "float", "example": 42.5 } } }, "end_user_summary": { "type": "object", "properties": { "apdex_score": { "type": "number", "format": "float", "example": 87.5 }, "response_time": { "type": "number", "format": "float", "example": 42.5 }, "throughput": { "type": "number", "format": "float", "example": 42.5 } } }, "health_status": { "type": "string", "example": "active" }, "id": { "type": "integer", "example": 100 }, "language": { "type": "integer", "example": 100 }, "links": { "type": "object", "properties": { "application": { "type": "integer", "example": 100 }, "application_instances": { "type": "array", "example": [ 100 ], "items": { "type": "integer" } }, "server": { "type": "integer", "example": 100 } } } } } } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ApplicationHostResponse" }