{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediatailor/refs/heads/main/json-schema/mediatailor-api-list-source-locations-response-schema.json",
"title": "ListSourceLocationsResponse",
"description": "ListSourceLocationsResponse schema from Amazon MediaTailor API",
"type": "object",
"properties": {
"Items": {
"allOf": [
{
"$ref": "#/components/schemas/__listOfSourceLocation"
},
{
"description": "A list of source locations."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results."
}
]
}
}
}