{
"$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-result-schema.json",
"title": "DescribeAddressesResult",
"description": "DescribeAddressesResult schema from Amazon Snow Family API",
"type": "object",
"properties": {
"Addresses": {
"allOf": [
{
"$ref": "#/components/schemas/AddressList"
},
{
"description": "The Snow device shipping addresses that were created for this account."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "HTTP requests are stateless. If you use the automatically generated NextToken value in your next DescribeAddresses call, your list of returned addresses will start from this point in the array."
}
]
}
}
}