Amazon App Studio · Schema

ListAppsResponse

Response containing list of App Studio applications.

Generative AIInternal ToolsLow-CodeNo-Code

Properties

Name Type Description
apps array List of applications.
nextToken string Pagination token for next page.
View JSON Schema on GitHub

JSON Schema

amazon-app-studio-listappsresponse-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ListAppsResponse",
  "description": "Response containing list of App Studio applications.",
  "type": "object",
  "properties": {
    "apps": {
      "type": "array",
      "description": "List of applications.",
      "items": {
        "$ref": "#/definitions/AppSummary"
      }
    },
    "nextToken": {
      "type": "string",
      "description": "Pagination token for next page."
    }
  }
}