Use the JsonArrayToArray component

  • リリースバージョン: Australia
  • 更新日 2026年03月12日
  • 所要時間:2分
  • Convert a JSON object to an array of objects using the JsonArrayToArray component in the RPA Desktop Design Studio.

    始める前に

    Role required: none

    このタスクについて

    To configure the properties for the JsonArrayToArray component, see Properties of the JSON utilities.

    手順

    1. In the Toolbox pane, navigate to Utilities > JSON.
    2. Drag the JsonArrayToArray component to the Design surface.
    3. In the Toolbox pane, navigate to General > Variable.
    4. Drag the Variable component to the Design surface.
    5. Double-click the variable and enter a script.

      An example of a script.

      
      [{
      
        "name": "Abel Tutor",
      
        "age": 30,
      
        "email": "abletutor@example.com",
      
      },
      
      {
      
        "name": "Alex Tutor",
      
        "age": 32,
      
        "email": "alextutor@example.com",
      
      }]
       
    6. To configure the input field, see Configure port properties.
    7. オプション: Connect the data and control ports of the JsonArrayToArray component to the corresponding ports of the other components as described in the following table and image.
      Port type Port name Data type Description
      Data In JsonObject Object The JSON object to be converted to an array of objects.
      Data Out Return Object[] Used to return an array of JObjects. Each JObject has the same set of properties with different values for each property.

      To modify the details of a JObject, iterate over the JObjects in the array returned until the criteria is met.

      図 : 1. JsonArrayToArray component with Variable component
      JsonArrayToArray component extracts data from the script in the Variable component.
    8. オプション: To test the component, right-click the component bar and then click Run From Here.
    9. To view the complete data output, right-click the Data port of JsonArrayToArray component and select Preview Data.

    JsonArrayToArray component with Variable component

    Data preview of the JsonArrayToArray component after execution.