The heartbeat endpoint is typically constructed for minimal response time since it is typically polled every so many seconds. Use [[Test Endpoint Configuration]] for more extensive diagnostics.
## Example
The following JSON is an example for this standardized configuration component:
```json
{ "Enable": true
}
```
## Definition
```json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://invantive.com/schemas/defs/HeartbeatEndpointConfig.schema.json",
"title": "HeartbeatEndpointConfig",
"description": "Heartbeat endpoint configuration.",
"allOf": [
{
"type": "object",
"additionalProperties": false,
"properties": {
"Enabled": {
"type": "boolean",
"description": "Whether the test endpoint is enabled."
}
}
}
]
}
```