diff --git a/source/_integrations/cover.group.markdown b/source/_integrations/cover.group.markdown index 6bd0f652b86..a4fec718101 100644 --- a/source/_integrations/cover.group.markdown +++ b/source/_integrations/cover.group.markdown @@ -23,15 +23,19 @@ cover: ``` {% configuration %} - name: - description: Name to use in the frontend. - required: false - type: string - default: "Cover Group" - entities: - description: List of all cover entities you want to control. - required: true - type: [string, list] +entities: + description: List of all cover entities you want to control. + required: true + type: [string, list] +name: + description: Name to use in the frontend. + required: false + type: string + default: "Cover Group" +unique_id: + description: An ID that uniquely identifies this cover group. If two covers have the same unique ID, Home Assistant will raise an error. + required: false + type: string {% endconfiguration %} ## Functionality diff --git a/source/_integrations/light.group.markdown b/source/_integrations/light.group.markdown index e7523cbcfaf..f293fd33af9 100644 --- a/source/_integrations/light.group.markdown +++ b/source/_integrations/light.group.markdown @@ -26,14 +26,18 @@ light: ``` {% configuration %} - name: - description: The name of the light group. Defaults to "Light Group". - required: false - type: string - entities: - description: A list of entities to be included in the light group. - required: true - type: [string, list] +entities: + description: A list of entities to be included in the light group. + required: true + type: [string, list] +name: + description: The name of the light group. Defaults to "Light Group". + required: false + type: string +unique_id: + description: An ID that uniquely identifies this light group. If two lights have the same unique ID, Home Assistant will raise an error. + required: false + type: string {% endconfiguration %}

diff --git a/source/_integrations/media_player.group.markdown b/source/_integrations/media_player.group.markdown index 62af1c4dca8..eb62470b22c 100644 --- a/source/_integrations/media_player.group.markdown +++ b/source/_integrations/media_player.group.markdown @@ -23,14 +23,18 @@ media_player: ``` {% configuration %} - name: - description: The name of the media player group. Defaults to "Media Group". - required: false - type: string - entities: - description: A list of entities to be included in the media player group. - required: true - type: [string, list] +entities: + description: A list of entities to be included in the media player group. + required: true + type: [string, list] +name: + description: The name of the media player group. Defaults to "Media Group". + required: false + type: string +unique_id: + description: An ID that uniquely identifies this media player group. If two media players have the same unique ID, Home Assistant will raise an error. + required: false + type: string {% endconfiguration %} ## Script Example