Spring Boot · Schema

Spring Boot Actuator Metric Response

JSON Schema for the Spring Boot Actuator /metrics/{metricName} endpoint response.

Auto-ConfigurationEmbedded ServerFrameworkJavaMicroservicesREST APISpringWeb Development

Properties

Name Type Description
name string Metric name (e.g., jvm.memory.used, http.server.requests)
description string Human-readable metric description
baseUnit string Base unit of measurement (e.g., bytes, seconds)
measurements array
availableTags array
View JSON Schema on GitHub

JSON Schema

spring-boot-actuator-metric-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/spring-boot/json-schema/spring-boot-actuator-metric-schema.json",
  "title": "Spring Boot Actuator Metric Response",
  "description": "JSON Schema for the Spring Boot Actuator /metrics/{metricName} endpoint response.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Metric name (e.g., jvm.memory.used, http.server.requests)"
    },
    "description": {
      "type": "string",
      "description": "Human-readable metric description"
    },
    "baseUnit": {
      "type": "string",
      "description": "Base unit of measurement (e.g., bytes, seconds)"
    },
    "measurements": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "statistic": {
            "type": "string",
            "enum": ["TOTAL", "TOTAL_TIME", "COUNT", "MAX", "VALUE", "ACTIVE_TASKS", "DURATION"],
            "description": "Measurement statistic type"
          },
          "value": {
            "type": "number",
            "description": "Numeric measurement value"
          }
        },
        "required": ["statistic", "value"]
      }
    },
    "availableTags": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "tag": {
            "type": "string",
            "description": "Tag key name"
          },
          "values": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Available tag values"
          }
        },
        "required": ["tag", "values"]
      }
    }
  },
  "required": ["name", "measurements"]
}

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-actuator-metric"
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.