Amazon DeepRacer · Schema

LeaderboardSubmission

A participant's submission to a DeepRacer leaderboard including race performance.

Autonomous VehiclesMachine LearningReinforcement LearningRobotics

Properties

Name Type Description
leaderboardSubmissionId string Unique identifier for this submission.
participantName string The participant's alias or username.
modelArn string The ARN of the model submitted for evaluation.
rank integer The participant's current rank on the leaderboard.
lapTime number The participant's best single lap time in seconds.
avgLapTime number The participant's average lap time.
View JSON Schema on GitHub

JSON Schema

leaderboard-submission-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-deepracer/json-schema/leaderboard-submission-schema.json",
  "title": "LeaderboardSubmission",
  "description": "A participant's submission to a DeepRacer leaderboard including race performance.",
  "type": "object",
  "properties": {
    "leaderboardSubmissionId": {
      "type": "string",
      "description": "Unique identifier for this submission."
    },
    "participantName": {
      "type": "string",
      "description": "The participant's alias or username."
    },
    "modelArn": {
      "type": "string",
      "description": "The ARN of the model submitted for evaluation."
    },
    "rank": {
      "type": "integer",
      "description": "The participant's current rank on the leaderboard."
    },
    "lapTime": {
      "type": "number",
      "description": "The participant's best single lap time in seconds."
    },
    "avgLapTime": {
      "type": "number",
      "description": "The participant's average lap time."
    }
  }
}