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