Simple key-value pairs and lists
name: John Doe
age: 30
skills:
- JavaScript
- Python
Application configuration example
database:
host: localhost
port: 5432
logging:
level: info
Simple JSON object structure
{
"name": "Jane Doe",
"age": 25,
"active": true
}
Nested objects and arrays
{
"users": [
{"id": 1, "name": "Alice"},
{"id": 2, "name": "Bob"}
]
}