Array

Data Type

Arrays are lists of other existing data types. They are enclosed by square brackets and each element is separated from the next by a comma.

Examples

"field_name": [
    "first",
    "second",
    "third"
]

An array of Strings.

"conditions": [
    {
        "type": "origins:on_fire"
    },
    {
        "type": "origins:sprinting"
    }
]

An array of Entity Condition Types.