{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HnswGlobalConfig",
"title": "HnswGlobalConfig",
"type": "object",
"properties": {
"healing_threshold": {
"description": "Enable HNSW healing if the ratio of missing points is no more than this value. To disable healing completely, set this value to `0.0`.",
"default": 0.3,
"type": "number",
"format": "double",
"maximum": 1,
"minimum": 0
}
}
}