{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WriteOrdering", "title": "WriteOrdering", "description": "Defines write ordering guarantees for collection operations\n\n* `weak` - write operations may be reordered, works faster, default\n\n* `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change\n\n* `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down", "type": "string", "enum": [ "weak", "medium", "strong" ] }