Array (Data Type)

Arrays are lists of other existing data types.

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 (Data Type)

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

An array of Entity Condition Types.