diff --git a/core/core.link_relation_types.yml b/core/core.link_relation_types.yml
index b2a0955..d4ffce3 100644
--- a/core/core.link_relation_types.yml
+++ b/core/core.link_relation_types.yml
@@ -3,6 +3,9 @@
 add-form:
   uri: https://drupal.org/link-relations/add-form
   description: A form where a resource of this type can be created.
+add-page:
+  uri: https://drupal.org/link-relations/add-page
+  description: A page where a resource of this type and related types can be created.
 delete-form:
   uri: https://drupal.org/link-relations/delete-form
   description: A form where a resource of this type can be deleted.
diff --git a/core/modules/media/tests/src/Kernel/MediaLinkRelationsTest.php b/core/modules/media/tests/src/Kernel/MediaLinkRelationsTest.php
new file mode 100644
index 0000000..164df60
--- /dev/null
+++ b/core/modules/media/tests/src/Kernel/MediaLinkRelationsTest.php
@@ -0,0 +1,27 @@
+<?php
+
+namespace Drupal\Tests\media\Kernel;
+
+use Drupal\media\Entity\Media;
+
+/**
+ * Tests link relationships for Media entity.
+ *
+ * @group media
+ */
+class MediaLinkRelationsTest extends MediaKernelTestBase {
+
+  /**
+   * Tests that all link relationships for Media exist.
+   */
+  public function testExistLinkRelationships() {
+    /** @var \Drupal\Core\Http\LinkRelationTypeManager $link_relation_type_manager */
+    $link_relation_type_manager = $this->container->get('plugin.manager.link_relation_type');
+    $media = Media::create(['bundle' => $this->testMediaType->id()]);
+    $media->save();
+    foreach ($media->uriRelationships() as $relation_name) {
+      $this->assertTrue($link_relation_type_manager->hasDefinition($relation_name), "Link relationship '{$relation_name}' for Media entity");
+    }
+  }
+
+}
