YAML scripting represents configuration data and in applications where data is being stored or transmitted.
The lines starts with "#" will be considered as commented line
Key1: Value1
Key2: Value2
...
- Ordered Collection of Data
Data:
- value1
- value2
- value3
- Unordered Collection of Data
- To store the properties of an item in a key-value pair.
Dictionary:
key1: value1
key2: value2
...
Property:
- List1:
- value1
- value2
- List2:
- value1
- value2
...
Dictionary:
key1: value1
key2:
key1: value1
key2: value2
Key3: value3
...
List:
- Dictionary1:
key1: value1
key2: value2
- Dictionary1:
key1: value1
key2: value2
...