{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/amazon-deepracer/json-schema/list-tracks-response-schema.json",
"title": "ListTracksResponse",
"description": "Response containing a list of available racing tracks.",
"type": "object",
"properties": {
"tracks": {
"type": "array",
"description": "List of racing tracks.",
"items": {
"type": "object"
}
},
"nextToken": {
"type": "string",
"description": "Token for retrieving the next page of results."
}
}
}