DatasetDetailOrgAttributes

Additional details about the data set. Different attributes correspond to different data set organizations. The values are populated based on datasetOrg, storageType and backend (Blu Age or Micro Focus).

COBOLMainframeMigrationModernizationBatch Processing

Properties

Name Type Description
gdg object
po object
ps object
vsam object
View JSON Schema on GitHub

JSON Schema

amazon-mainframe-modernization-dataset-detail-org-attributes-schema.json Raw ↑
{
  "$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-dataset-detail-org-attributes-schema.json",
  "title": "DatasetDetailOrgAttributes",
  "description": "Additional details about the data set. Different attributes correspond to different data set organizations. The values are populated based on datasetOrg, storageType and backend (Blu Age or Micro Focus).",
  "type": "object",
  "properties": {
    "gdg": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GdgDetailAttributes"
        },
        {
          "description": "The generation data group of the data set."
        }
      ]
    },
    "po": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PoDetailAttributes"
        },
        {
          "description": "The details of a PO type data set."
        }
      ]
    },
    "ps": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PsDetailAttributes"
        },
        {
          "description": "The details of a PS type data set."
        }
      ]
    },
    "vsam": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VsamDetailAttributes"
        },
        {
          "description": "The details of a VSAM data set."
        }
      ]
    }
  }
}