1Password · JSON Structure

1Password Connect Server Health Structure

Represents the health status of the Connect server and its dependencies.

Type: object Properties: 3
Password ManagerPasswordsSecuritySecrets

ServerHealth is a JSON Structure definition published by 1Password, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name version dependencies

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/1password/refs/heads/main/json-structure/1password-connect-server-health-structure.json",
  "name": "ServerHealth",
  "description": "Represents the health status of the Connect server and its dependencies.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the Connect server."
    },
    "version": {
      "type": "string",
      "description": "The version of the Connect server."
    },
    "dependencies": {
      "type": "array",
      "description": "The health status of server dependencies.",
      "items": {
        "type": "object",
        "properties": {
          "service": {
            "type": "string",
            "description": "The name of the dependency service."
          },
          "status": {
            "type": "string",
            "description": "The status of the dependency.",
            "enum": [
              "ACTIVE",
              "INACTIVE",
              "ERROR"
            ]
          },
          "message": {
            "type": "string",
            "description": "Additional information about the dependency status."
          }
        }
      }
    }
  }
}