JSON Example
Nested Object
Structured JSON object with nested arrays and objects.
Sample Payload
{
"project": {
"name": "plainutils",
"members": [{"id": 1, "role": "owner"}],
"flags": {"beta": true}
}
}Notes
- Useful for testing JSON-to-TypeScript generation.
- Nested objects are common in API payloads.