Amazon Mainframe Modernization · JSON Structure

Amazon Mainframe Modernization Deployed Version Summary Structure

Contains a summary of a deployed application.

Type: object Properties: 3 Required: 2
COBOLMainframeMigrationModernizationBatch Processing

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

Properties

applicationVersion status statusReason

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-deployed-version-summary-structure.json",
  "name": "DeployedVersionSummary",
  "description": "Contains a summary of a deployed application.",
  "type": "object",
  "properties": {
    "applicationVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Version"
        },
        {
          "description": "The version of the deployed application."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentLifecycle"
        },
        {
          "description": "The status of the deployment."
        }
      ]
    },
    "statusReason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The reason for the reported status."
        }
      ]
    }
  },
  "required": [
    "applicationVersion",
    "status"
  ]
}