Tools, FAQ, Tutorials:
JSON Validation at fyicenter.com
How to use the JSON Validation Tool at fyicenter.com?
✍: FYIcenter.com
If you want to try the JSON Validation Tool at fyicenter.com,
you can follow this tutorial:
1. Go to the FYIcenter JSON Validator and Formatter page at fyicenter.com.
2. Enter the following JSON text string in the text area:
{
"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"
},
],
"children": [],
"spouse": null
}
3. Click the "Validate" button. You see the following error message:
Your JSON text string is invalid: Syntax error
The picture below shows you how to use the online JSON validation tool at fyicenter.com:
⇐ JSON Validation at jsonlint.com
2023-08-17, ∼2428🔥, 0💬
Popular Posts:
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.d...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
How To Change Text Fonts for Some Parts of a Paragraph? If you want to change text fonts or colors f...
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...