diff --git a/modules/facets_summary/config/schema/facets_summary.processor.schema.yml b/modules/facets_summary/config/schema/facets_summary.processor.schema.yml
index 9eca347..b5fdd20 100644
--- a/modules/facets_summary/config/schema/facets_summary.processor.schema.yml
+++ b/modules/facets_summary/config/schema/facets_summary.processor.schema.yml
@@ -14,3 +14,11 @@ plugin.plugin_configuration.facets_summary_processor.show_text_when_empty:
     text:
       type: text_format
       label: 'The text to show when there is no current search'
+
+plugin.plugin_configuration.facets_summary_processor.reset_facets:
+  type: mapping
+  label: 'Reset facets link'
+  mapping:
+    link_text:
+      type: string
+      label: 'The text to show for the reset link.'
diff --git a/modules/facets_summary/src/Entity/FacetsSummary.php b/modules/facets_summary/src/Entity/FacetsSummary.php
index 8cb3966..cd606e5 100644
--- a/modules/facets_summary/src/Entity/FacetsSummary.php
+++ b/modules/facets_summary/src/Entity/FacetsSummary.php
@@ -35,7 +35,6 @@
  *     "facets",
  *     "facet_source_id",
  *     "processor_configs",
- *     "empty_behavior",
  *   },
  *   links = {
  *     "canonical" = "/admin/config/search/facets",
diff --git a/modules/facets_summary/tests/src/Functional/IntegrationTest.php b/modules/facets_summary/tests/src/Functional/IntegrationTest.php
index cbab9a0..876ce52 100644
--- a/modules/facets_summary/tests/src/Functional/IntegrationTest.php
+++ b/modules/facets_summary/tests/src/Functional/IntegrationTest.php
@@ -22,15 +22,6 @@ class IntegrationTest extends FacetsTestBase {
   ];
 
   /**
-   * No config checking.
-   *
-   * @var bool
-   *
-   * @todo Enable config checking again.
-   */
-  protected $strictConfigSchema = FALSE;
-
-  /**
    * {@inheritdoc}
    */
   public function setUp() {
