YAML to JSON converter
Your YAML
xxxxxxxxxx
DB
host127.0.0.1
port'1221'
SID testDB
supportedCountries
US
CA
Your JSON
1{
2 "DB": {
3 "host": "127.0.0.1",
4 "port": "1221",
5 "SID": "testDB"
6 },
7 "supportedCountries": [
8 "US",
9 "CA"
10 ]
11}