diff --git a/examples/users.json b/examples/users.json new file mode 100644 index 0000000..db07cd0 --- /dev/null +++ b/examples/users.json @@ -0,0 +1,41 @@ +{ + "users": [ + { + "id": 1, + "name": "Alice Johnson", + "email": "alice@example.com", + "age": 30, + "active": true, + "created_at": "2024-01-15T10:30:00Z", + "roles": ["admin", "user"], + "profile": { + "bio": "Software engineer", + "avatar_url": "https://example.com/avatar.png", + "settings": { + "theme": "dark", + "notifications": true + } + } + }, + { + "id": 2, + "name": "Bob Smith", + "email": "bob@example.com", + "age": 25, + "active": false, + "created_at": "2024-02-20T14:00:00Z", + "roles": ["user"], + "profile": { + "bio": "Data scientist", + "avatar_url": "https://example.com/bob.png", + "settings": { + "theme": "light", + "notifications": false + } + } + } + ], + "total": 2, + "page": 1, + "per_page": 10 +}