Spring Framework · Schema

Spring Boot Actuator Health Response

JSON Schema for the Spring Boot Actuator health endpoint response

Artificial IntelligenceCloud-NativeEnterpriseFrameworkJavaMicroservicesOpen-SourceRESTSpring Boot

Properties

Name Type Description
status string Overall health status of the application
components object Health status details per registered health indicator
View JSON Schema on GitHub

JSON Schema

spring-actuator-health-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12",
  "$id": "https://spring.io/schemas/actuator-health",
  "title": "Spring Boot Actuator Health Response",
  "description": "JSON Schema for the Spring Boot Actuator health endpoint response",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Overall health status of the application",
      "enum": ["UP", "DOWN", "OUT_OF_SERVICE", "UNKNOWN"],
      "example": "UP"
    },
    "components": {
      "type": "object",
      "description": "Health status details per registered health indicator",
      "additionalProperties": {
        "$ref": "#/$defs/ComponentHealth"
      },
      "example": {
        "db": {
          "status": "UP",
          "details": {
            "database": "PostgreSQL",
            "validationQuery": "isValid()"
          }
        },
        "diskSpace": {
          "status": "UP",
          "details": {
            "total": 499963174912,
            "free": 250981711872,
            "threshold": 10485760,
            "path": "/"
          }
        }
      }
    }
  },
  "required": ["status"],
  "$defs": {
    "ComponentHealth": {
      "type": "object",
      "description": "Health indicator component status",
      "properties": {
        "status": {
          "type": "string",
          "enum": ["UP", "DOWN", "OUT_OF_SERVICE", "UNKNOWN"]
        },
        "details": {
          "type": "object",
          "description": "Component-specific health details",
          "additionalProperties": true
        },
        "components": {
          "type": "object",
          "description": "Nested component health (for composite indicators)",
          "additionalProperties": {
            "$ref": "#/$defs/ComponentHealth"
          }
        }
      },
      "required": ["status"]
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/spring-actuator-health"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.