{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mainframe-modernization/refs/heads/main/json-schema/amazon-mainframe-modernization-data-set-import-item-schema.json", "title": "DataSetImportItem", "description": "Identifies a specific data set to import from an external location.", "type": "object", "properties": { "dataSet": { "allOf": [ { "$ref": "#/components/schemas/DataSet" }, { "description": "The data set." } ] }, "externalLocation": { "allOf": [ { "$ref": "#/components/schemas/ExternalLocation" }, { "description": "The location of the data set." } ] } }, "required": [ "dataSet", "externalLocation" ] }