Three observations:
- Considering yaml syntax, you can enter multiple values (a list) in this way:
key: [value 1, value 2, value 3]
or
key:
- value 1
- value 2
- value 3
But attention (this can be your case): before “-” is preferred to use two spaces, not indentation.
- For nested keys/fields, use the same logic:
key:
nested_key1: value 1
nested_Key2: value 2
- If you use Dataview, attention to the use of “keys with spaces”, like
date created, because Dataview don’t “like” them. It’s preferred to use “date-created” or “date_created”.