{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ShardStatus", "title": "ShardStatus", "description": "Current state of the shard (supports same states as the collection)\n\n`Green` - all good. `Yellow` - optimization is running, 'Grey' - optimizations are possible but not triggered, `Red` - some operations failed and was not recovered", "type": "string", "enum": [ "green", "yellow", "grey", "red" ] }