Amazon DeepRacer · JSON Structure

Leaderboard Structure

A DeepRacer racing leaderboard where participants submit model performances.

Type: typedMap Properties: 0
Autonomous VehiclesMachine LearningReinforcement LearningRobotics

Leaderboard Structure is a JSON Structure definition published by Amazon DeepRacer. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://api-evangelist.github.io/amazon-deepracer/json-structure/leaderboard-structure.json",
  "title": "Leaderboard",
  "description": "A DeepRacer racing leaderboard where participants submit model performances.",
  "type": "typedMap",
  "fields": {
    "arn": {
      "type": "str",
      "description": "The ARN uniquely identifying the leaderboard."
    },
    "name": {
      "type": "str",
      "description": "The display name of the leaderboard."
    },
    "status": {
      "type": "str",
      "description": "Current status."
    },
    "submissionClosureTime": {
      "type": "str",
      "description": "Timestamp when submissions close."
    },
    "isQualifier": {
      "type": "bool",
      "description": "Whether this leaderboard qualifies participants for championship events."
    },
    "trackType": {
      "type": "str",
      "description": "The type of track used for this leaderboard."
    },
    "minimumCountOfLaps": {
      "type": "int",
      "description": "Minimum number of consecutive laps required."
    }
  }
}