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, ∼2395🔥, 0💬
Popular Posts:
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How to use the built-in "context" object in Policy expressions? The built-in "context" object can be...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
How to Install Docker Desktop 2.5.0 on Windows 10? You can follow this tutorial to Install Docker De...
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.d...