sample data json file Archives - Learning Container https://www.learningcontainer.com/tag/sample-data-json-file/ Let's Learn ... Wed, 19 Jul 2023 15:49:39 +0000 en-US hourly 1 https://www.learningcontainer.com/wp-content/uploads/2024/07/favicon.webp sample data json file Archives - Learning Container https://www.learningcontainer.com/tag/sample-data-json-file/ 32 32 JSON example https://www.learningcontainer.com/json-example/ Tue, 18 Sep 2018 20:35:11 +0000 https://www.learningcontainer.com/?p=463 The post JSON example appeared first on Learning Container.

Below is some JSON Example that will help you to better understand about JSON. JSON Object Example { "Person": { "name" : "Racks","age" : 10,"married" : true } } JSON Array Example ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] JSON example or JSON file example { "firstName": "Racks", "lastName": "Jacson", "gender": "man", "age": 24, "address": ...

Read more

The post JSON example appeared first on Learning Container.

]]>
The post JSON example appeared first on Learning Container.

Below is some JSON Example that will help you to better understand about JSON.

JSON Object Example

{ 
"Person":
{
"name" : "Racks",
"age" : 10,
"married" : true } }

JSON Array Example

["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]

JSON example or JSON file example

{
    "firstName": "Racks",
    "lastName": "Jacson",
    "gender": "man",
    "age": 24,
    "address": {
        "streetAddress": "Udhna",
        "city": "San Jone",
        "state": "CA",
        "postalCode": "95221"
    },
    "phoneNumbers": [
        { "type": "home", "number": "27627" }
    ]
}

JSON file example

If you want to JSON file example then you can refer below link in this I have added many sample JSON files that you can use for Example.

https://www.learningcontainer.com/sample-json-file

You can also check JSON to XML on below link.

You can refer below some article.

The post JSON example appeared first on Learning Container.

]]>