Skip to content

Instantly share code, notes, and snippets.

@darrend
Created August 22, 2025 18:34
Show Gist options
  • Select an option

  • Save darrend/94ed933a88df71eb08b3e6ac57c4e29a to your computer and use it in GitHub Desktop.

Select an option

Save darrend/94ed933a88df71eb08b3e6ac57c4e29a to your computer and use it in GitHub Desktop.
sample user data for coding exercises
{
"users": [
{
"name": "Alice Johnson",
"email": "[email protected]",
"is_active": true,
"home_state": "California",
"tags": ["developer", "remote", "senior"],
"creation_date": "2023-01-15T10:30:00Z",
"notifications_enabled": true
},
{
"name": "Bob Smith",
"email": "[email protected]",
"is_active": false,
"home_state": "Texas",
"tags": ["designer", "freelance"],
"creation_date": "2022-11-03T14:22:00Z",
"notifications_enabled": false
},
{
"name": "Carol Davis",
"email": "[email protected]",
"is_active": true,
"home_state": "California",
"tags": ["manager", "startup", "tech"],
"creation_date": "2024-02-28T09:15:00Z",
"notifications_enabled": true
},
{
"name": "David Wilson",
"email": "[email protected]",
"is_active": true,
"home_state": "New York",
"tags": ["developer", "full-stack", "junior"],
"creation_date": "2023-08-12T16:45:00Z",
"notifications_enabled": true
},
{
"name": "Eva Brown",
"email": "[email protected]",
"is_active": false,
"home_state": "Texas",
"tags": ["analyst", "data"],
"creation_date": "2023-03-20T11:10:00Z",
"notifications_enabled": false
},
{
"name": "Frank Miller",
"email": "[email protected]",
"is_active": true,
"home_state": "California",
"tags": ["consultant", "remote", "senior"],
"creation_date": "2022-09-07T13:30:00Z",
"notifications_enabled": true
},
{
"name": "Grace Lee",
"email": "[email protected]",
"is_active": false,
"home_state": "New York",
"tags": ["designer", "ui", "startup"],
"creation_date": "2024-01-10T08:20:00Z",
"notifications_enabled": false
},
{
"name": "Henry Taylor",
"email": "[email protected]",
"is_active": true,
"home_state": "Texas",
"tags": ["developer", "mobile", "ios"],
"creation_date": "2023-06-18T12:05:00Z",
"notifications_enabled": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment