List

An ordered array of values

Also known as an array, list is a data type that stores a number of values (or ‘elements’) in a specific order. Each element is a text data-type.

  • Is it a column? No, a list does not have a header.

  • Is it a row? No, a list doesn't correspond to values associated with different columns.

  • What if I have a list of numbers? That's okay - the numbers will simply be treated as text.

Example

The append-to-list adaptor has a list as input and a list as output. In this example, the list contains four elements.

Internal Structure

list.json
[
    'A',
    'B',
    'C'
]

Last updated