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, ∼2364🔥, 0💬
Popular Posts:
How to troubleshoot the Orderer peer? The Docker container terminated by itself. You can follow this...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.d...
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create ...
How To Truncate an Array in PHP? If you want to remove a chunk of values from an array, you can use ...