Online JSON Viewer

About JSON

JSON, short for JavaScript Object Notation, is a lightweight computer data interchange format. JSON is a text-based, human-readable format for representing simple data structures and associative arrays (called objects).

Read more: json.org, wikipedia, google

In JSON, they take on the following forms: object, array, value, string and number

Example

{
            "firstName": "Aditi",
            "lastName": "Agarwal",
            "gender": "female",
            "age": 23,
            "address": {
                "streetAddress": "C 41, Room No 12, Middle Circle, Connaught Place",
                "city": "Delhi",
                "state": "Delhi",
                "postalCode": "110001"
            },
            "phoneNumbers": [
                { "type": "home", "number": "01123417459" },
                { "type": "fax", "number": "05127525751" }
            ]
        }

About Online JSON Viewer

JSON Viewer was created as a side project. It allows users to convert JSON strings to a friendly readable format

The application is using Ext JS

For any questions or problems please collegeekonline@gmail.com

© Copyright 2020- by Collegeek. All Rights Reserved.