Amazon DeepRacer · Schema

ListTracksResponse

Response containing a list of available racing tracks.

Autonomous VehiclesMachine LearningReinforcement LearningRobotics

Properties

Name Type Description
tracks array List of racing tracks.
nextToken string Token for retrieving the next page of results.
View JSON Schema on GitHub

JSON Schema

list-tracks-response-schema.json Raw ↑
{
  "$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."
    }
  }
}