Amazon DeepRacer · Schema

ListLeaderboardSubmissionsResponse

Response containing leaderboard rankings and submissions.

Autonomous VehiclesMachine-LearningReinforcement LearningRobotics

Properties

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

JSON Schema

list-leaderboard-submissions-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-deepracer/json-schema/list-leaderboard-submissions-response-schema.json",
  "title": "ListLeaderboardSubmissionsResponse",
  "description": "Response containing leaderboard rankings and submissions.",
  "type": "object",
  "properties": {
    "leaderboardSubmissions": {
      "type": "array",
      "description": "List of participant submissions.",
      "items": {
        "type": "object"
      }
    },
    "nextToken": {
      "type": "string",
      "description": "Token for retrieving the next page of results."
    }
  }
}