šŸ“œ YAML Lists

YAML lists are ordered collections of values, created with a dash - followed by a space before each item. Clean, readable, and easier than JSON arrays.

šŸ“ Example: List of Strings

Parsed list items will appear here...
šŸ’” Pro Tip: Keep list items indented equally under their parent key. Use 2 spaces before each -.

šŸ“‘ List of Mappings (Objects)

You can nest mappings inside lists to represent things like multiple users, servers, products, etc.

šŸ“Œ This structure is perfect for representing arrays of objects, like user profiles or configuration sets.

šŸ“š Summary

🧠 Bonus: Nested Lists

YAML lets you get wild with nesting lists inside lists or inside mappings for deep, structured data.