YAML ↔ JSON Converter
Convert between YAML and JSON formats bidirectionally
YAML to JSON
Convert YAML format to JSON
JSON to YAML
Convert JSON format to YAML
Format Examples
YAML Example
name: "John Doe" age: 30 active: true address: street: "123 Main St" city: "New York" hobbies: - reading - swimming
JSON Example
{
"name": "John Doe",
"age": 30,
"active": true,
"address": {
"street": "123 Main St",
"city": "New York"
},
"hobbies": [
"reading",
"swimming"
]
}