EngineVersionsSummary

A subset of information about the engine version for a specific application.

COBOLMainframeMigrationModernizationBatch Processing

Properties

Name Type Description
engineType object
engineVersion object
View JSON Schema on GitHub

JSON Schema

amazon-mainframe-modernization-engine-versions-summary-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-engine-versions-summary-schema.json",
  "title": "EngineVersionsSummary",
  "description": "A subset of information about the engine version for a specific application.",
  "type": "object",
  "properties": {
    "engineType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The type of target platform for the application."
        }
      ]
    },
    "engineVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The version of the engine type used by the application."
        }
      ]
    }
  },
  "required": [
    "engineType",
    "engineVersion"
  ]
}