Initial upload with comprehensive README and tests

This commit is contained in:
2026-02-01 05:15:37 +00:00
parent 31607b5462
commit 971e1c6876

41
examples/users.json Normal file
View File

@@ -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
}