JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"category": {
"name": "JSON TO TOML TO YAML",
"age": 30,
"city": "Paris",
"interests": [
"JSON",
"TOML",
"YAML"
],
"tags": {
"tag1": "jsonyml",
"tag2": "ymljson"
}
},
"products": [
{
"name": "JSON Converter",
"price": 25.99,
"description": "Online Convert JSON TO TOML"
},
{
"name": "YAML Converter",
"price": 89.99,
"description": "Online Convert JSON TO YAML"
}
],
"message": "Welcome to jsonviewer! We hope you find something you love."
}
TOML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
message = "Welcome to jsonviewer! We hope you find something you love."
[category]
name = "JSON TO TOML TO YAML"
age = 30
city = "Paris"
interests = [ "JSON", "TOML", "YAML" ]
[category.tags]
tag1 = "jsonyml"
tag2 = "ymljson"
[[products]]
name = "JSON Converter"
price = 25.99
description = "Online Convert JSON TO TOML"
[[products]]
name = "YAML Converter"
price = 89.99
description = "Online Convert JSON TO YAML"
YAML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
category:
name: JSON TO TOML TO YAML
age: 30
city: Paris
interests:
- JSON
- TOML
- YAML
tags:
tag1: jsonyml
tag2: ymljson
products:
- name: JSON Converter
price: 25.99
description: Online Convert JSON TO TOML
- name: YAML Converter
price: 89.99
description: Online Convert JSON TO YAML
message: Welcome to jsonviewer! We hope you find something you love.