Skip to content

Latest commit

 

History

History
43 lines (38 loc) · 751 Bytes

tool_box.md

File metadata and controls

43 lines (38 loc) · 751 Bytes

Tool Box

  • Type = tool_boxes

SubTypes & Data

Adding a tool box node to the scenario.

  • sleep (sleeps for time seconds)

    • Data request to create:

      {
          "data": {
              "time": 5
          }
      }
    • Data response

      {
          "data": {
              "time": 5
          }
      }
  • repeater (repeats the other remaining nodes in that path)

    • Data request to create:

      {
          "data": {
              "count": 3
          }
      }
    • Data response

      {
          "data": {
              "count": 3
          }
      }