Amazon DeepRacer · Schema

Track

A virtual or physical racing track used for DeepRacer training and evaluation.

Autonomous VehiclesMachine LearningReinforcement LearningRobotics

Properties

Name Type Description
arn string The ARN uniquely identifying the racing track.
name string The display name of the track.
trackType string The classification type of the track.
trackDimension string The size category of the track.
View JSON Schema on GitHub

JSON Schema

track-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-deepracer/json-schema/track-schema.json",
  "title": "Track",
  "description": "A virtual or physical racing track used for DeepRacer training and evaluation.",
  "type": "object",
  "properties": {
    "arn": {
      "type": "string",
      "description": "The ARN uniquely identifying the racing track."
    },
    "name": {
      "type": "string",
      "description": "The display name of the track."
    },
    "trackType": {
      "type": "string",
      "description": "The classification type of the track."
    },
    "trackDimension": {
      "type": "string",
      "description": "The size category of the track.",
      "enum": [
        "REGULAR",
        "WIDE"
      ]
    }
  }
}