ListApplicationsResponse

ListApplicationsResponse schema from AWS Mainframe Modernization API

COBOLMainframeMigrationModernizationBatch Processing

Properties

Name Type Description
applications object
nextToken object
View JSON Schema on GitHub

JSON Schema

amazon-mainframe-modernization-list-applications-response-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-list-applications-response-schema.json",
  "title": "ListApplicationsResponse",
  "description": "ListApplicationsResponse schema from AWS Mainframe Modernization API",
  "type": "object",
  "properties": {
    "applications": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationSummaryList"
        },
        {
          "description": "Returns a list of summary details for all the applications in a runtime environment."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "A pagination token that's returned when the response doesn't contain all applications."
        }
      ]
    }
  },
  "required": [
    "applications"
  ]
}