ARGUS Enterprise · Schema

HealthStatus

HealthStatus schema from ARGUS Enterprise API

Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

Properties

Name Type Description
status string Overall service health
queueDepth integer Number of events pending delivery
recentErrorRate number Error rate over the last hour (percentage)
uptime string Service uptime duration
lastChecked string Timestamp of last health check
View JSON Schema on GitHub

JSON Schema

argus-enterprise-health-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argus-enterprise/refs/heads/main/json-schema/argus-enterprise-health-status-schema.json",
  "title": "HealthStatus",
  "description": "HealthStatus schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "Healthy",
        "Degraded",
        "Unhealthy"
      ],
      "description": "Overall service health"
    },
    "queueDepth": {
      "type": "integer",
      "description": "Number of events pending delivery"
    },
    "recentErrorRate": {
      "type": "number",
      "format": "double",
      "description": "Error rate over the last hour (percentage)"
    },
    "uptime": {
      "type": "string",
      "description": "Service uptime duration"
    },
    "lastChecked": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of last health check"
    }
  }
}