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.