Tools, FAQ, Tutorials:
JSON Text String Example
Where to get a simple example of JSON text string?
✍: FYIcenter.com
You can go to JSON at Wikipedia
to get the following JSON text string example:
{
"firstName": "John",
"lastName": "Smith",
"isAlive": true,
"age": 25,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021-3100"
},
"phoneNumbers": [
{
"type": "home",
"number": "212 555-1234"
},
{
"type": "office",
"number": "646 555-4567"
},
{
"type": "mobile",
"number": "123 456-7890"
}
],
"children": [],
"spouse": null
}
2023-09-07, ∼2390🔥, 0💬
Popular Posts:
How to use "xml-to-json" Azure API Policy Statement? The "xml-to-json" Policy Statement allows you t...
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Por...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
dev.FYIcenter.com is a Website for software developer looking for software development technologies,...
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...