Amazon Mainframe Modernization · JSON Structure

Amazon Mainframe Modernization Get Deployment Response Structure

GetDeploymentResponse schema from AWS Mainframe Modernization API

Type: object Properties: 7 Required: 6
COBOLMainframeMigrationModernizationBatch Processing

GetDeploymentResponse 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-get-deployment-response-structure.json",
  "name": "GetDeploymentResponse",
  "description": "GetDeploymentResponse schema from AWS Mainframe Modernization API",
  "type": "object",
  "properties": {
    "applicationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Identifier"
        },
        {
          "description": "The unique identifier of the application."
        }
      ]
    },
    "applicationVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Version"
        },
        {
          "description": "The application version."
        }
      ]
    },
    "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 status of the deployment."
        }
      ]
    },
    "statusReason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The reason for the reported status."
        }
      ]
    }
  },
  "required": [
    "applicationId",
    "applicationVersion",
    "creationTime",
    "deploymentId",
    "environmentId",
    "status"
  ]
}