Problem with subscribing to the hook.

Settings have been configured according to the documentation
https://shopify.dev/docs/apps/build/webhooks/subscribe/get-started?framework=remix&deliveryMethod=pubSub

A line is added to the TOML file that exactly matches the documentation
https://shopify.dev/docs/api/webhooks?reference=toml

[[webhooks.subscriptions]]
topics = [
  "products/create",
  "products/update",
  "products/delete"
]
uri = "pubsub://xmlimporthook:xmlimport"

However, when I try to run shopify app deploy

After selecting (y) Yes, release this new version

I receive the error:
webhooks Validation errors Unexpected key(s) were found.

At the same time, if I use the required hooks with the same link

[[webhooks.subscriptions]] 
compliance_topics = ["customers/data_request", "customers/redact", "shop/redact"] 
uri = "pubsub://xmlimporthook:xmlimport"

I don’t encounter any similar issues, so the problem is not with the link.