From 971e1c6876093e7a8c399af378fdb919ef32051b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 05:15:37 +0000 Subject: [PATCH] Initial upload with comprehensive README and tests --- examples/users.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 examples/users.json 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 +}