JSONArrays
JSONArrays are a construct in the JSON data format that represents an ordered collection of values. They are encoded using square brackets, with elements separated by commas.
Elements may be any valid JSON type, including objects, other arrays, strings, numbers, booleans, or null. The
JSON arrays are commonly used in data interchange and are typically parsed into native list or array
JSON syntax rules relevant to arrays include that strings must be enclosed in double quotes, trailing commas
Validation, schemas, and performance: JSON Schema supports array-specific constraints such as items, minItems, maxItems, and uniqueItems.