Amazon Mainframe Modernization · JSON Structure

Amazon Mainframe Modernization Data Set Import Item Structure

Identifies a specific data set to import from an external location.

Type: object Properties: 2 Required: 2
COBOLMainframeMigrationModernizationBatch Processing

DataSetImportItem is a JSON Structure definition published by Amazon Mainframe Modernization, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

dataSet externalLocation

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mainframe-modernization/refs/heads/main/json-structure/amazon-mainframe-modernization-data-set-import-item-structure.json",
  "name": "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"
  ]
}