{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HeartbeatTable", "title": "HeartbeatTable", "type": "object", "properties": { "owner": { "type": "string", "description": "Schema owner of the heartbeat table", "example": "example_value" }, "table": { "type": "string", "description": "Heartbeat table name", "example": "example_value" }, "retentionTime": { "type": "integer", "description": "Retention time in days", "example": 10 }, "frequency": { "type": "integer", "description": "Update frequency in seconds", "example": 10 }, "purgeFrequency": { "type": "integer", "description": "Purge frequency in minutes", "example": 10 } } }