Unlock dynamic and reusable workflows by effectively using variables in Jsonify.
Open datasets
block.Extract Data
block as a variable input for subsequent blocks within the same processing loop (e.g., for each item in a list).Open datasets
BlockOpen datasets
block.
Open datasets
table becomes a variable name (e.g., company_name
, product_url
, search_keyword
). Remember, these names are case-sensitive.Open datasets
) will run once for each row.URL
: If you name a column exactly URL
(case-sensitive) in the Open datasets
block and provide valid, complete URLs (starting with http://
or https://
) in its rows, the AI Agent will automatically open each of these URLs. In this specific case, a subsequent Open Websites
block is not required to open these particular URLs. For any other column name intended to hold URLs that you want to open via the Open Websites
block, ensure the values are complete URLs.Open datasets
block for configuration specifics.
Open datasets
), you can use these variables in most other blocks that accept text input for their configuration.
{{variable_name}}
.
variable_name
inside the braces exactly matches the column header from Open datasets
(including case).Open Websites
:
https://{{website_domain}}/products
(assuming website_domain
provides just the domain like example.com
)Search on Google
:
reviews for {{product_name}}
Interact with Page
:
type {{user_comment}} into 'comment_field'
click button 'Download {{report_filename}}'
Extract Data
(in Descriptions or Additional Instructions):
Extract the price for the item named {{item_name}}.
Only extract reviews that mention the brand {{brand_to_filter_by}}.
Find Links
:
Find the link to the contact page for {{company_name}}
Extract Data
OutputExtract Data
block, the NAME you give to each attribute (e.g., product_title
, reviewer_name
) can act as a variable for subsequent blocks within that same iteration or loop. These are also case-sensitive.
Open Websites
(opens a category page)Find Links
(finds links to all product pages, e.g., outputs product_page_url
)Follow Links
(configured to “Follow each link” product_page_url
)
Extract Data
(extracts product_name
and price
from the current product page)Search on Google
(can use {{product_name}}
from the previous step: Search for 'competitors of {{product_name}}'
)customer_email
instead of eml
).snake_case
like product_id
, or camelCase
like productId
). Remember case sensitivity.Open datasets
Scope: Variables defined in Open datasets
are available to all subsequent blocks for each iteration (row) defined in the Open datasets
block.Extract Data
Scope: Variables created from Extract Data
field names are scoped to the current item being processed in a list or the current page for that specific iteration.