Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi Create Robot Application Request Structure

CreateRobotApplicationRequest schema from openapi

Type: object Properties: 5 Required: 2
RoboticsSimulation

CreateRobotApplicationRequest is a JSON Structure definition published by Amazon RoboMaker, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name sources robotSoftwareSuite tags environment

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-structure/amazon-robomaker-openapi-create-robot-application-request-structure.json",
  "description": "CreateRobotApplicationRequest schema from openapi",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the robot application."
        }
      ]
    },
    "sources": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SourceConfigs"
        },
        {
          "description": "The sources of the robot application."
        }
      ]
    },
    "robotSoftwareSuite": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RobotSoftwareSuite"
        },
        {
          "description": "The robot software suite (ROS distribuition) used by the robot application."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "A map that contains tag keys and tag values that are attached to the robot application."
        }
      ]
    },
    "environment": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Environment"
        },
        {
          "description": "The object that contains that URI of the Docker image that you use for your robot application."
        }
      ]
    }
  },
  "required": [
    "name",
    "robotSoftwareSuite"
  ],
  "name": "CreateRobotApplicationRequest"
}