Use the JsonArrayToArray component

  • Rversion finale: Australia
  • Mis à jour 12 mars 2026
  • 1 minute de lecture
  • Convert a JSON object to an array of objects using the JsonArrayToArray component in the RPA Desktop Design Studio.

    Avant de commencer

    Role required: none

    Pourquoi et quand exécuter cette tâche

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

    Procédure

    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. Facultatif : 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.

      Figure 1. JsonArrayToArray component with Variable component
      JsonArrayToArray component extracts data from the script in the Variable component.
    8. Facultatif : 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.