Last active
December 17, 2015 13:19
-
-
Save danielmurphy/5616554 to your computer and use it in GitHub Desktop.
Example parameters for creating a person
This file contains 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
{ "person": | |
{ | |
"first_name": "PiCO", | |
"last_name": "Das Robot", | |
"contact_data": { | |
"addresses": [{ | |
"city": "Carlsbad", | |
"state": "CA", | |
"street": "2790 Gateway Dr.", | |
"zip": "92009", | |
"location": "Work" | |
}], | |
"email_addresses": [{ | |
"address": "[email protected]", | |
"location": "Work" | |
}], | |
"phone_numbers": [{ | |
"number": "(888) 777-2821", | |
"location": "Work" | |
}] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment