A single heartbeat resource.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/better-stack/refs/heads/main/json-schema/better-stack-heartbeat-object-schema.json", "title": "HeartbeatObject", "description": "A single heartbeat resource.", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier.", "example": "100200" }, "type": { "type": "string", "description": "Resource type.", "example": "heartbeat" }, "attributes": { "$ref": "#/components/schemas/HeartbeatAttributes" } } }