{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ConfigurationRowDiffResponse", "description": "Three-way diff of a single configuration row. Each side is a row version snapshot, or null when the row does not exist on that side. When there is no conflict all three sides are equal.", "required": [ "base", "ours", "theirs" ], "properties": { "base": { "oneOf": [ { "$ref": "#/components/schemas/ConfigurationRowVersionResponse" } ], "nullable": true }, "ours": { "oneOf": [ { "$ref": "#/components/schemas/ConfigurationRowVersionResponse" } ], "nullable": true }, "theirs": { "oneOf": [ { "$ref": "#/components/schemas/ConfigurationRowVersionResponse" } ], "nullable": true } }, "type": "object" }