Amazon RoboMaker · Schema

WorldCount

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.

RoboticsSimulation

Properties

Name Type Description
floorplanCount object
interiorCountPerFloorplan object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-world-count-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-world-count-schema.json",
  "title": "WorldCount",
  "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."
        }
      ]
    }
  }
}