Prisma · Schema

HealthStatus

Health status of the Accelerate service

Properties

Name Type Description
status string
region string Region of the health check responder
timestamp string Timestamp of the health check
View JSON Schema on GitHub

JSON Schema

prisma-healthstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HealthStatus",
  "title": "HealthStatus",
  "type": "object",
  "description": "Health status of the Accelerate service",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "healthy",
        "degraded",
        "unavailable"
      ]
    },
    "region": {
      "type": "string",
      "description": "Region of the health check responder"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the health check"
    }
  },
  "required": [
    "status",
    "timestamp"
  ]
}