Nested & Complex JSONadvanced

Subscription Account Graph JSON Example

A nested SaaS account payload connecting account, plan, invoices, and payment method.

Real-world use case: Use this for billing pages, support consoles, and account detail APIs.
1{
2 "accountId": "acct_611",
3 "owner": {
4 "userId": "usr_8f41",
5 "email": "[email protected]"
6 },
7 "subscription": {
8 "plan": "pro",
9 "renewsAt": "2026-04-01T00:00:00Z",
10 "status": "active"
11 },
12 "invoices": [
13 {

Where this shape shows up in production

SaaS billing
Support tooling
Account detail APIs

Related examples