{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-migration-hub/refs/heads/main/json-schema/migration-hub-api-list-application-states-request-schema.json",
"title": "ListApplicationStatesRequest",
"description": "ListApplicationStatesRequest schema from Amazon Migration Hub API",
"type": "object",
"properties": {
"ApplicationIds": {
"allOf": [
{
"$ref": "#/components/schemas/ApplicationIds"
},
{
"description": "The configurationIds from the Application Discovery Service that uniquely identifies your applications."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/Token"
},
{
"description": "If a NextToken was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in NextToken."
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/MaxResults"
},
{
"description": "Maximum number of results to be returned per page."
}
]
}
}
}