Skip to content

Commit

Permalink
chore: Sample Json file for testing (and .gitignore another)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpombrio committed Jun 2, 2024
1 parent 7bafa82 commit b362b77
Show file tree
Hide file tree
Showing 2 changed files with 146 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ Cargo.lock
*.html
.#*
log.txt

data/big.json
144 changes: 144 additions & 0 deletions data/contacts.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
{
"people": [
{
"name": "John Doe",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-541-754-3010",
"type": "Mobile"
},
{
"number": "1-267-8974-1678",
"type": "Home"
}
]
},
{
"name": "Moose Arugula",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-762-1875-4561",
"type": "Mobile"
}
]
},
{
"name": "Jane Smith",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-523-789-4567",
"type": "Work"
},
{
"number": "1-321-654-0987",
"type": "Home"
}
]
},
{
"name": "Sam Johnson",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-987-654-3210",
"type": "Mobile"
}
]
},
{
"name": "Emily Davis",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-123-456-7890",
"type": "Mobile"
},
{
"number": "1-987-123-4567",
"type": "Work"
}
]
},
{
"name": "Michael Brown",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-654-789-1234",
"type": "Mobile"
}
]
},
{
"name": "Linda Wilson",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-456-123-7890",
"type": "Home"
},
{
"number": "1-789-456-1230",
"type": "Mobile"
}
]
},
{
"name": "James White",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-321-789-4560",
"type": "Mobile"
}
]
},
{
"name": "Patricia Miller",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-654-321-7894",
"type": "Work"
}
]
},
{
"name": "Robert Taylor",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-789-654-3217",
"type": "Mobile"
},
{
"number": "1-123-789-6543",
"type": "Home"
}
]
},
{
"name": "Barbara Anderson",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-321-456-7893",
"type": "Mobile"
}
]
},
{
"name": "Kevin Martinez",
"email": "[email protected]",
"phoneNumbers": [
{
"number": "1-654-789-3218",
"type": "Work"
}
]
}
]
}

0 comments on commit b362b77

Please sign in to comment.