{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-snow-family/refs/heads/main/json-schema/amazon-snow-family-describe-addresses-request-schema.json",
"title": "DescribeAddressesRequest",
"description": "DescribeAddressesRequest schema from Amazon Snow Family API",
"type": "object",
"properties": {
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/ListLimit"
},
{
"description": "The number of ADDRESS objects to return."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "HTTP requests are stateless. To identify what object comes \"next\" in the list of ADDRESS objects, you have the option of specifying a value for NextToken as the starting point for your list of returned addresses."
}
]
}
}
}