{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "InputMappingLoadDryRunResponse", "required": [ "dryRun", "operationName", "input" ], "properties": { "dryRun": { "type": "boolean" }, "operationName": { "type": "string" }, "input": { "type": "array", "items": { "required": [ "source", "destination", "loadType", "possibleLoadTypes" ], "properties": { "source": { "type": "string" }, "destination": { "type": "string" }, "loadType": { "type": "string", "enum": [ "COPY", "CLONE", "VIEW" ] }, "possibleLoadTypes": { "type": "array", "items": { "type": "string", "enum": [ "COPY", "CLONE", "VIEW" ] } } }, "type": "object" } } }, "type": "object" }