{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "urn:architecture-standards:schema:health-check",
  "title": "HTTP health-check response body",
  "description": "Structural projection of the JSON response body.",
  "$comment": "Nonnormative projection of the JSON body in BE-HLTH-001. Normative text prevails. HTTP method, path, status and Content-Type are outside this JSON Schema.",
  "type": "object",
  "required": [
    "status"
  ],
  "properties": {
    "status": {
      "enum": [
        "pass",
        "fail"
      ]
    }
  },
  "additionalProperties": true
}
