Amazon DeepRacer · Schema

ListCarsResponse

Response containing a list of DeepRacer vehicles.

Autonomous VehiclesMachine LearningReinforcement LearningRobotics

Properties

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

JSON Schema

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