{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediastore/refs/heads/main/json-schema/mediastore-api-list-containers-input-schema.json",
"title": "ListContainersInput",
"description": "ListContainersInput schema from Amazon MediaStore API",
"type": "object",
"properties": {
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/PaginationToken"
},
{
"description": "Only if you used <code>MaxResults</code> in the first command, enter the token (which was included in the previous response) to obtain the next set of containers. This token is included in a response only if there actually are more containers to list."
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/ContainerListLimit"
},
{
"description": "Enter the maximum number of containers in the response. Use from 1 to 255 characters. "
}
]
}
}
}