diff --git a/core/modules/node/src/Entity/Node.php b/core/modules/node/src/Entity/Node.php
index 118e862..3eefe2a 100644
--- a/core/modules/node/src/Entity/Node.php
+++ b/core/modules/node/src/Entity/Node.php
@@ -360,6 +360,7 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
 
     $fields['title'] = BaseFieldDefinition::create('string')
       ->setLabel(t('Title'))
+      ->setDescription(t('The node title.'))
       ->setRequired(TRUE)
       ->setTranslatable(TRUE)
       ->setRevisionable(TRUE)
@@ -429,6 +430,9 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
 
     $fields['promote'] = BaseFieldDefinition::create('boolean')
       ->setLabel(t('Promoted to front page'))
+      ->setDescription(t(
+        'A boolean indicating whether the node is visible on the front page.'
+        ))
       ->setRevisionable(TRUE)
       ->setTranslatable(TRUE)
       ->setDefaultValue(TRUE)
@@ -443,6 +447,9 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
 
     $fields['sticky'] = BaseFieldDefinition::create('boolean')
       ->setLabel(t('Sticky at top of lists'))
+      ->setDescription(t(
+        'A boolean indicating whether the node should sort to the top of content lists.'
+        ))
       ->setRevisionable(TRUE)
       ->setTranslatable(TRUE)
       ->setDefaultValue(FALSE)
