{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateComparePairsRequest", "title": "CreateComparePairsRequest", "type": "object", "properties": { "comparePairs": { "type": "array", "items": { "type": "object", "required": [ "sourceSchema", "sourceTable", "targetSchema", "targetTable" ], "properties": { "sourceSchema": { "type": "string" }, "sourceTable": { "type": "string" }, "targetSchema": { "type": "string" }, "targetTable": { "type": "string" } } }, "example": [] } } }