Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi World Count Structure

The number of worlds that will be created. You can configure the number of unique floorplans and the number of unique interiors for each floor plan. For example, if you want 1 world with 20 unique interiors, you set floorplanCount = 1 and interiorCountPerFloorplan = 20. This will result in 20 worlds (floorplanCount * interiorCountPerFloorplan).

If you set floorplanCount = 4 and interiorCountPerFloorplan = 5, there will be 20 worlds with 5 unique floor plans.

Type: object Properties: 2
RoboticsSimulation

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

Properties

floorplanCount interiorCountPerFloorplan

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-world-count-structure.json",
  "description": "<p>The number of worlds that will be created. You can configure the number of unique floorplans and the number of unique interiors for each floor plan. For example, if you want 1 world with 20 unique interiors, you set <code>floorplanCount = 1</code> and <code>interiorCountPerFloorplan = 20</code>. This will result in 20 worlds (<code>floorplanCount</code> * <code>interiorCountPerFloorplan)</code>. </p> <p>If you set <code>floorplanCount = 4</code> and <code>interiorCountPerFloorplan = 5</code>, there will be 20 worlds with 5 unique floor plans. </p>",
  "type": "object",
  "properties": {
    "floorplanCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FloorplanCount"
        },
        {
          "description": "The number of unique floorplans."
        }
      ]
    },
    "interiorCountPerFloorplan": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InteriorCountPerFloorplan"
        },
        {
          "description": "The number of unique interiors per floorplan."
        }
      ]
    }
  },
  "name": "WorldCount"
}