{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SnapshotPriority", "title": "SnapshotPriority", "description": "Defines source of truth for snapshot recovery:\n\n`NoSync` means - restore snapshot without *any* additional synchronization. `Snapshot` means - prefer snapshot data over the current state. `Replica` means - prefer existing data over the snapshot.", "type": "string", "enum": [ "no_sync", "snapshot", "replica" ] }