Tools, FAQ, Tutorials:
JSON Validation at jsonlint.com
How to use the JSON Validation Tool at jsonlint.com?
✍: FYIcenter.com
If you want to try the JSON Validation Tool at jsonlint.com,
you can follow this tutorial:
1. Go to the The JSON Validator page at jsonlint.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 JSON" button. You see the following output near the bottom:
Error: Parse error on line 10: ...de": "10021-3100", }, "phoneNumbers": ----------------------^ Expecting 'STRING', got '}'
Note that this tool correctly detected the first error in the JSON text string. An extra comma is at the end of the property list.
The picture below shows you how to use the online JSON validation tool at jsonlint.com:
2017-08-17, 696👍, 0💬
Popular Posts:
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http....
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode ...
How to view API details on the Publisher Dashboard of an Azure API Management Service? You can follo...
How to add request URL Template Parameters to my Azure API operation 2017 version to make it more us...
How To Control Padding Spaces within a Table Cell? Cell padding spaces are spaces between cell inner...