Flow Style
- In fact, the JSON example I showed at the beginning is actually valid YAML!
- Just that we can make it a bit more readable
{ "firstName": "Kim", "lastName": "Smith", "age": 99, "old": true, "weight": null, "address": { "street": "21 Jump Street", "city": "New York", "postalCode": "10021" }, "phoneNumber": [ { "type": "home", "number": "212 555-1234" } ]}
{ firstName: Kim, lastName: Smith, age: 99, old: true, weight: null, address: { street: 21 Jump Street, city: New York, postalCode: "10021", }, phoneNumber: [ { type: home, number: 212 555-1234, }, ],}