Last active
November 7, 2024 18:51
-
-
Save lpenguin/5330ca2d9780dd8d28c4ac4da69a23c8 to your computer and use it in GitHub Desktop.
Json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"userProfile": { | |
"personalInfo": { | |
"id": "usr123456", | |
"firstName": "John", | |
"lastName": "Doe", | |
"email": "[email protected]", | |
"phoneNumber": "+1-555-123-4567", | |
"dateOfBirth": "1990-01-15", | |
"gender": "male" | |
}, | |
"address": { | |
"street": "123 Main Street", | |
"city": "New York", | |
"state": "NY", | |
"zipCode": "10001", | |
"country": "United States" | |
}, | |
"accountDetails": { | |
"username": "johndoe", | |
"accountType": "premium", | |
"joinDate": "2023-03-01", | |
"lastLogin": "2024-11-07T10:30:00Z", | |
"isVerified": true, | |
"status": "active" | |
}, | |
"preferences": { | |
"language": "English", | |
"timezone": "America/New_York", | |
"notifications": { | |
"email": true, | |
"sms": false, | |
"pushNotifications": true | |
}, | |
"newsletter": true, | |
"theme": "dark" | |
}, | |
"socialProfiles": { | |
"linkedin": "linkedin.com/in/johndoe", | |
"twitter": "@johndoe", | |
"facebook": "fb.com/johndoe" | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
callback({ | |
"users": [ | |
{ | |
"id": 1, | |
"name": "Alice Johnson", | |
"role": "Developer", | |
"skills": ["JavaScript", "React", "Node.js"], | |
"projects": [ | |
{ | |
"name": "E-commerce Platform", | |
"status": "Completed", | |
"completionRate": 100 | |
}, | |
{ | |
"name": "Mobile App", | |
"status": "In Progress", | |
"completionRate": 75 | |
} | |
], | |
"contact": { | |
"email": "[email protected]", | |
"phone": "+1-555-0123" | |
} | |
}, | |
{ | |
"id": 2, | |
"name": "Bob Smith", | |
"role": "Designer", | |
"skills": ["UI/UX", "Figma", "Adobe XD"], | |
"projects": [ | |
{ | |
"name": "Brand Redesign", | |
"status": "In Progress", | |
"completionRate": 60 | |
} | |
], | |
"contact": { | |
"email": "[email protected]", | |
"phone": "+1-555-0124" | |
} | |
} | |
], | |
"metadata": { | |
"lastUpdated": "2024-11-07T12:00:00Z", | |
"version": "1.0", | |
"source": "Sample JSONP Data" | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment