PoAttributes

The supported properties for a PO type data set.

COBOLMainframeMigrationModernizationBatch Processing

Properties

Name Type Description
encoding object
format object
memberFileExtensions object
View JSON Schema on GitHub

JSON Schema

amazon-mainframe-modernization-po-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-po-attributes-schema.json",
  "title": "PoAttributes",
  "description": "The supported properties for a PO type data set.",
  "type": "object",
  "properties": {
    "encoding": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The character set encoding of the data set."
        }
      ]
    },
    "format": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The format of the data set records."
        }
      ]
    },
    "memberFileExtensions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String20List"
        },
        {
          "description": "An array containing one or more filename extensions, allowing you to specify which files to be included as PDS member."
        }
      ]
    }
  },
  "required": [
    "format",
    "memberFileExtensions"
  ]
}