{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConflictResolutionPolicy", "title": "ConflictResolutionPolicy", "type": "object", "description": "The conflict resolution policy.", "properties": { "mode": { "type": "string", "enum": [ "LastWriterWins", "Custom" ], "default": "LastWriterWins", "description": "The conflict resolution mode.", "example": "LastWriterWins" }, "conflictResolutionPath": { "type": "string", "description": "The path for the last-writer-wins conflict resolution.", "example": "example_value" }, "conflictResolutionProcedure": { "type": "string", "description": "The stored procedure for custom conflict resolution.", "example": "example_value" } } }