Google Assistant configuration to group by room

Current setting

google_assistant:
  project_id: YOUR_PROJECT_ID
  api_key: YOUR_API_KEY
  exposed_domains:
    - switch
    - light
    - group
  entity_config:
    switch.kitchen:
      name: CUSTOM_NAME_FOR_GOOGLE_ASSISTANT
      aliases:
        - BRIGHT_LIGHTS
        - ENTRY_LIGHTS
    light.living_room:
      expose: false
      room: LIVING_ROOM

Suggested new configuration to group by room instead of entity

  exposed_domains:
    - switch
    - light
    - group
  room_config:
    - name: 'Living Room'
      expose: true
      entities:
         - light.living_room
         - switch.living_room
    - name: 'Kitchen'
      expose: true
      entities:
        switch.kitchen:
          name: CUSTOM_NAME_FOR_GOOGLE_ASSISTANT
          aliases:
            - BRIGHT_LIGHTS
            - ENTRY_LIGHTS

I think this would be better specified as custom attributes on the entity. Have commented here: