Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi Update Robot Application Request Structure

UpdateRobotApplicationRequest schema from openapi

Type: object Properties: 5 Required: 2
RoboticsSimulation

UpdateRobotApplicationRequest 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

application sources robotSoftwareSuite currentRevisionId 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-update-robot-application-request-structure.json",
  "description": "UpdateRobotApplicationRequest schema from openapi",
  "type": "object",
  "properties": {
    "application": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The application information for 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 distribution) used by the robot application."
        }
      ]
    },
    "currentRevisionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RevisionId"
        },
        {
          "description": "The revision id for the robot application."
        }
      ]
    },
    "environment": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Environment"
        },
        {
          "description": "The object that contains the Docker image URI for your robot application."
        }
      ]
    }
  },
  "required": [
    "application",
    "robotSoftwareSuite"
  ],
  "name": "UpdateRobotApplicationRequest"
}