Spring Boot 3 · Schema

Spring Boot 3 Health Response

Health status response returned by Spring Boot 3 Actuator /health endpoint. Aggregates all registered HealthIndicator results into a single response.

EnterpriseFrameworkJavaMicroservicesREST APISpring Boot

Properties

Name Type Description
status string Overall application health status aggregated from all health indicators.
components object Health status of individual components keyed by component name.
View JSON Schema on GitHub

JSON Schema

spring-boot-3-health-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://spring.io/schema/boot/3/health",
  "title": "Spring Boot 3 Health Response",
  "description": "Health status response returned by Spring Boot 3 Actuator /health endpoint. Aggregates all registered HealthIndicator results into a single response.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Overall application health status aggregated from all health indicators.",
      "enum": ["UP", "DOWN", "OUT_OF_SERVICE", "UNKNOWN"]
    },
    "components": {
      "type": "object",
      "description": "Health status of individual components keyed by component name.",
      "additionalProperties": {
        "$ref": "#/$defs/ComponentHealth"
      }
    }
  },
  "required": ["status"],
  "$defs": {
    "ComponentHealth": {
      "title": "Component Health",
      "description": "Health status for a single application component such as database, disk space, or message broker.",
      "type": "object",
      "properties": {
        "status": {
          "type": "string",
          "description": "Component health status.",
          "enum": ["UP", "DOWN", "OUT_OF_SERVICE", "UNKNOWN"]
        },
        "details": {
          "type": "object",
          "description": "Component-specific health details (database name, validation query, free disk space, etc.).",
          "additionalProperties": true
        },
        "components": {
          "type": "object",
          "description": "Nested sub-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-boot-3-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.