Invalid config for [group]: [Entities] is an invalid option for [group]

Having some trouble setting up a group with all the persons that inhabit the place.

#Pessoas da Familia
familia:
Name: Familia
Entities:
- person.tiago
- person.joana
- person.helena

I have group: !include groups.yaml in my configuration.yaml file.

If I remove the “Name”, I get Invalid config for [group]: [Entities] is an invalid option for [group].

Any ideas on what I’m missing here?

Remove the capitals from your code i.e. change “N” to “n” and “E” to “e”, you might also need to correct the indentation:

#Pessoas da Familia
familia:
  name: Familia
  entities:
    - person.tiago
    - person.joana
    - person.helena

It was the capitals. Thanks man!