Sign of health status

At each given time this event is created to notify client so that the client can know that the platform is available.

Type: object
Domain: dataplatform
Event: health-check
Version: 1

|
status_summary required

Title: General status
Description: Summary of the status of all resources in the data platform
Type: boolean
Example:
true
false

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Sign of health status",
    "description": "At each given time this event is created to notify client so that the client can know that the platform is available.",
    "required": [
        "status_summary"
    ],
    "properties": {
        "status_summary": {
            "type": "boolean",
            "title": "General status",
            "description": "Summary of the status of all resources in the data platform",
            "examples": [
                true,
                false
            ]
        }
    }
}
{
    "status_summary": true
}