[
{
"id": 1,
"name": "Wireless Headphones",
"price": 99.99,
"category": "Electronics",
"inStock": true
},
{
"id": 2,
"name": "Coffee Mug",
"price": 12.50,
"category": "Home",
"inStock": false
}
]| id | name | price | category | inStock |
|---|---|---|---|---|
| 1 | Wireless Headphones | 99.99 | Electronics | true |
| 2 | Coffee Mug | 12.50 | Home | false |
[
{
"userId": "u001",
"name": "John Doe",
"email": "john@example.com",
"age": 28,
"city": "New York"
},
{
"userId": "u002",
"name": "Jane Smith",
"email": "jane@example.com",
"age": 32,
"city": "Los Angeles"
}
]| userId | name | age | city | |
|---|---|---|---|---|
| u001 | John Doe | john@example.com | 28 | New York |
| u002 | Jane Smith | jane@example.com | 32 | Los Angeles |
[
{
"id": 1,
"title": "Sample Post",
"author": {
"name": "Alice Johnson",
"email": "alice@blog.com"
},
"publishedAt": "2024-01-15",
"tags": ["tech", "programming"]
}
]| id | title | author.name | author.email | publishedAt | tags |
|---|---|---|---|---|---|
| 1 | Sample Post | Alice Johnson | alice@blog.com | 2024-01-15 | tech,programming |