Microsoft Azure · Schema

ConflictResolutionPolicy

The conflict resolution policy.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
mode string The conflict resolution mode.
conflictResolutionPath string The path for the last-writer-wins conflict resolution.
conflictResolutionProcedure string The stored procedure for custom conflict resolution.
View JSON Schema on GitHub

JSON Schema

azure-cosmos-db-conflict-resolution-policy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ConflictResolutionPolicy",
  "type": "object",
  "description": "The conflict resolution policy.",
  "properties": {
    "mode": {
      "type": "string",
      "description": "The conflict resolution mode."
    },
    "conflictResolutionPath": {
      "type": "string",
      "description": "The path for the last-writer-wins conflict resolution."
    },
    "conflictResolutionProcedure": {
      "type": "string",
      "description": "The stored procedure for custom conflict resolution."
    }
  }
}