{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://jobdatapool.com/schemas/health.schema.json",
  "title": "HealthResponse",
  "type": "object",
  "description": "Health check response contract for GET /v1/health.",
  "additionalProperties": false,
  "properties": {
    "status": {
      "type": "string"
    },
    "service": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "time_utc": {
      "type": "string"
    },
    "data_source": {
      "type": "string"
    },
    "endpoints": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "status",
    "service",
    "version",
    "time_utc",
    "endpoints"
  ]
}
