ReqRes · JSON Structure

Reqres Agent Health Response Structure

AgentHealthResponse schema from ReqRes API

Type: object Properties: 1 Required: 1
DevelopmentTestingPrototypingFake APIRESTAgent Sandbox

AgentHealthResponse is a JSON Structure definition published by ReqRes, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

data

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/reqres/refs/heads/main/json-structure/reqres-agent-health-response-structure.json",
  "name": "AgentHealthResponse",
  "description": "AgentHealthResponse schema from ReqRes API",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "required": [
        "status",
        "version",
        "uptime_seconds",
        "rate_limit_status",
        "deprecations"
      ],
      "properties": {
        "status": {
          "type": "string",
          "enum": [
            "healthy",
            "degraded",
            "maintenance"
          ]
        },
        "version": {
          "type": "string"
        },
        "uptime_seconds": {
          "type": "int32"
        },
        "rate_limit_status": {
          "type": "object",
          "properties": {
            "tier": {
              "type": "string"
            },
            "remaining_today": {
              "nullable": true,
              "type": "int32"
            },
            "limit_today": {
              "nullable": true,
              "type": "int32"
            },
            "reset_at": {
              "nullable": true,
              "type": "datetime"
            }
          }
        },
        "deprecations": {
          "type": "array",
          "items": {
            "type": "object"
          }
        }
      }
    }
  },
  "required": [
    "data"
  ]
}