JFrog · Schema

SystemHealth

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
router object
services array
View JSON Schema on GitHub

JSON Schema

jfrog-systemhealth-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SystemHealth",
  "title": "SystemHealth",
  "type": "object",
  "properties": {
    "router": {
      "type": "object",
      "properties": {
        "node_id": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "message": {
          "type": "string"
        }
      }
    },
    "services": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "service_id": {
            "type": "string"
          },
          "node_id": {
            "type": "string"
          },
          "state": {
            "type": "string",
            "enum": [
              "HEALTHY",
              "DEGRADED",
              "UNHEALTHY"
            ]
          },
          "message": {
            "type": "string"
          }
        }
      }
    }
  }
}