Basic JSON Examplesbeginner

Primitive Array JSON Example

A simple array of primitive values that shows ordered collections without nested objects.

Real-world use case: Use this for tags, labels, enum-like lists, or compact configuration values.
1[
2 "email",
3 "sms",
4 "push"
5]

Where this shape shows up in production

Tag lists
Notification channels
Feature allowlists

Related examples