Skip to content

Create Dictionary

Type: dict-create  ·  Package: Collections Activities v1.0.0  ·  Output: Dictionary

Creates an empty dictionary (key→value map) and stores it in a variable. Useful for grouping related data under names ("nombre", "nit", "total") or for building configurations.

Creates an empty dictionary and assigns it to outputVariable. Then you add pairs with Set Dictionary Value.

ParameterEditorDescription
outputVariablenombre de variableVariable where the dictionary is saved.
Create Dictionary outputVariable = cliente
Set Dictionary Value dict = = cliente key = "nombre" value = "Ana"
Set Dictionary Value dict = = cliente key = "nit" value = "900123"