Basic JSON Examplesbeginner

Array of Objects JSON Example

A reusable row-style JSON structure for lists, table views, and simple API responses.

Real-world use case: Use this when you need sample list data for UI tables, dropdowns, admin pages, or fixtures.
1[
2 {
3 "id": 101,
4 "name": "Alice",
5 "role": "admin"
6 },
7 {
8 "id": 102,
9 "name": "Bob",
10 "role": "editor"
11 },
12 {
13 "id": 103,

Where this shape shows up in production

Admin list pages
Fixture data
JSON-to-table demos

Related examples