List structure
List is a data structure also known in other implementations as array. Every list element is a value. Every list element has its own internal positive integer index starting with zero.
It is possible to access the element via its numeric index. Element can be none, number, string, dictionary or a list.
Example of list data structure:
{
"list": ["item1", "item2", "item3"]
}