Running drush config:status (or core.entity_form_display.commerce_product_variation.donation.default validation) reports:

missing schema: core.entity_form_display.commerce_product_variation.donation.default:content.variation_alternative.settings

The module registers a form widget plugin (variation_alternative) used on commerce_product_variation form displays, but ships no corresponding schema definition for its settings. Drupal's config schema system expects a field.widget.settings.variation_alternative type in the module's config/schema/*.schema.yml, matching the keys defined in the widget's defaultSettings()/settingsForm().
Without it, any site that configures this widget on a form display will get a non-fatal but persistent schema validation error, and config_devel/config:status-based CI checks will fail.

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

zaporylie created an issue. See original summary.

dkmishra made their first commit to this issue’s fork.

dkmishra’s picture

Status: Active » Needs review
zaporylie’s picture

Status: Needs review » Fixed

Now that this issue is closed, review the contribution record.

As a contributor, attribute any organization that helped you, or if you volunteered your own time.

Maintainers, credit people who helped resolve this issue.

  • zaporylie committed 5d7f94f7 on 1.x authored by dkmishra
    fix: #3604215 Missing config schema for variation_alternative widget...