## 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/SpamHausConfig.schema.json",
"title": "SpamHausConfig",
"description": "SpamHaus configuration.",
"type": "object",
"additionalProperties": false,
"properties": {
"Enable": {
"type": "boolean",
"description": "Whether SpamHaus checks are enabled."
}
}
}
```