YAML: Examples

YAML Dictionary

YAML Dictionarykey: value

Example:Property1: Value1

YAML Dictionary in Dictionarydictionary_name:
   property1: value1
   property2: value2
   property3: value3

Example:employee:
   name: kostas
   gender: male
   age: 39

YAML List example- value1
- value2
- value3

Example:- kostas
- male
- 39

YAML Dictionaries and Listsdictionary_name:
   some_data:
       - value1
       - value2
       - value3

Example:employee_record:
   details:
       - kostas
       - male
       - 39

YAML List of Dictionaries-
   key1: value1
   key2: value2
   key3: value3
-
   key1: value1
   key2: value2
   key3: value3
-
   key1: value1
   key2: value2
   key3: value3

Example:-
   name: apple
   color: red
   weight: 100g
-
   name: apple
   color: red
   weight: 90g
   
-
   name: mango
   color: yellow
   weight: 150g

Join Medium with my referral link - Konstantinos Patronas
As a Medium member, a portion of your membership fee goes to writers you read, and you get full access to every story…