Amazon Mainframe Modernization · JSON Structure

Amazon Mainframe Modernization Deployment Summary Structure

A subset of information about a specific deployment.

Type: object Properties: 7 Required: 6
COBOLMainframeMigrationModernizationBatch Processing

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

Properties

applicationId applicationVersion creationTime deploymentId environmentId 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-deployment-summary-structure.json",
  "name": "DeploymentSummary",
  "description": "A subset of information about a specific deployment.",
  "type": "object",
  "properties": {
    "applicationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Identifier"
        },
        {
          "description": "The unique identifier of the application."
        }
      ]
    },
    "applicationVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Version"
        },
        {
          "description": "The version of the application."
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The timestamp when the deployment was created."
        }
      ]
    },
    "deploymentId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Identifier"
        },
        {
          "description": "The unique identifier of the deployment."
        }
      ]
    },
    "environmentId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Identifier"
        },
        {
          "description": "The unique identifier of the runtime environment."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentLifecycle"
        },
        {
          "description": "The current status of the deployment."
        }
      ]
    },
    "statusReason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The reason for the reported status."
        }
      ]
    }
  },
  "required": [
    "applicationId",
    "applicationVersion",
    "creationTime",
    "deploymentId",
    "environmentId",
    "status"
  ]
}