Amazon RoboMaker · Schema

Environment

The object that contains the Docker image URI for either your robot or simulation applications.

RoboticsSimulation

Properties

Name Type Description
uri object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-environment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-schema/amazon-robomaker-openapi-environment-schema.json",
  "title": "Environment",
  "description": "The object that contains the Docker image URI for either your robot or simulation applications.",
  "type": "object",
  "properties": {
    "uri": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositoryUrl"
        },
        {
          "description": "The Docker image URI for either your robot or simulation applications."
        }
      ]
    }
  }
}