diff --git a/components/01-atoms/select/select.twig b/components/01-atoms/select/select.twig
index 8643c68f52b6a737b70088e986ce2adc4123dd2d..a0d0e66269878500e543a587ac8b957a796d84af 100644
--- a/components/01-atoms/select/select.twig
+++ b/components/01-atoms/select/select.twig
@@ -6,7 +6,7 @@
  * Variables:
  * - theme: [string] Theme: light, dark.
  * - name: [string] Select name.
- * - is_multiple: [boolean] Is multiple.
+ * - id: [string] Select ID.
  * - options: [array] Options:
  *   - type: [string] Option type: option group (optgroup) or option (option).
  *   - label: [string] Option label.
@@ -17,9 +17,10 @@
  *     - value: [string] Option value.
  *     - is_selected: [string] Flag whether option is selected.
  *     - is_disabled: [string] Flag whether option is disabled.
- * - is_invalid: [boolean] Denote if the control is invalid.
- * - is_disabled: [boolean] Denote if the control is disabled.
- * - is_required: [boolean] Denote if the control is required.
+ * - is_invalid: [boolean] Denotes if the control is invalid.
+ * - is_multiple: [boolean] Denotes if the control is multiple.
+ * - is_disabled: [boolean] Denotes if the control is disabled.
+ * - is_required: [boolean] Denotes if the control is required.
  * - attributes: [string] Additional attributes.
  * - modifier_class: [string] Additional classes.
  */
diff --git a/components/02-molecules/tooltip/tooltip.twig b/components/02-molecules/tooltip/tooltip.twig
index 8b868308f72cb763f27d511fb7f8a74eb18fda24..45c0ebc88134a39fb5ee15362296682d1ef91f3a 100644
--- a/components/02-molecules/tooltip/tooltip.twig
+++ b/components/02-molecules/tooltip/tooltip.twig
@@ -5,8 +5,10 @@
  *
  * Variables:
  * - theme: [string] Theme: light, dark.
- * - symbol: [string] Symbol to use in the button. Defaults to 'userinterface_informationmark'.
- * - text: [string] Text to display within the popup.
+ * - content: [string] Inner Content of Tooltip description.
+ * - position: [string] Tooltip position in relation to button.
+ * - size: [string] Size of icon to use in the button. Defaults to 'large'.
+ * - symbol: [string] Symbol or icon to use in the button. Defaults to 'userinterface_informationmark'.
  * - title: [string] Text used within the button title and for screen readers.
  * - attributes: [string] Additional attributes.
  * - modifier_class: [string] Additional classes.
diff --git a/components/02-molecules/video-player/video-player.twig b/components/02-molecules/video-player/video-player.twig
index 21392efea3f88b781f625fefd1384177dd658020..ae2560bbd09ec1389c754c3f36620ac513c74588 100644
--- a/components/02-molecules/video-player/video-player.twig
+++ b/components/02-molecules/video-player/video-player.twig
@@ -6,9 +6,9 @@
  * Variables:
  * - theme: [string] Theme: light, dark.
  * - title: [string] Title for the iframe.
- * - url: [string] URL of the video.
- * - width: [string] Width of the iframe.
- * - height: [string] Height of the video.
+ * - url: [string] URL of the iframe.
+ * - width: [string] Optional width of the iframe.
+ * - height: [string] Optional height of the iframe.
  * - transcript_link: [object] Video transcript link.
  *   - text: [string] Button text.
  *   - title: [string] Button title.
@@ -17,6 +17,12 @@
  *   - is_external: [boolean] If link is external or not.
  *   - attributes: [string] Additional attributes.
  * - embedded_source: [string] embedded_source provided iframe container.
+ * - raw_source: [string] raw_source provided iframe container.
+ * - sources: [array] Array of sources:
+ *   - url: [string] URL of the source.
+ *   - type: [string] Type name like 'video/mp4'. 
+ *   - poster: [string] Optional URL of the video poster image.
+ *   - has_controls: [boolean] If video should have controls.
  * - attributes: [string] Additional attributes.
  * - modifier_class: [string] Additional classes.
  */
diff --git a/components/03-organisms/message/message.twig b/components/03-organisms/message/message.twig
index ac171f27ba90a04f85590d41e8e08230aa9739d5..7ba9dd0cf3c65cc09d40d133690efbb5dad3a18e 100644
--- a/components/03-organisms/message/message.twig
+++ b/components/03-organisms/message/message.twig
@@ -9,6 +9,7 @@
  * - type: [string] Message type: information, error, warning, success.
  * - description: [string] Description text.
  * - modifier_class: [string] Additional classes.
+ * - attributes: [string] Additional attributes.
  */
 #}