Definition
Related applications
related_applications is a manifest array such as [{"platform": "play", "id": "com.example.app"}] listing native app store equivalents of the PWA. The companion boolean field prefer_related_applications, when true, tells Chromium to prefer directing the user to install the native app instead of showing the web install prompt.
Setting prefer_related_applications: true effectively opts out of the PWA install banner in favour of pointing users to the platform-specific listing referenced in related_applications, which is a deliberate choice for teams still primarily investing in a native app.
The platform field accepts known store identifiers such as "play" for Google Play or "itunes" for the Apple App Store, with id/url identifying the specific listing within that store.
related_applications alone, without prefer_related_applications: true, has no effect on install behaviour — it exists purely as metadata some platforms may surface (for example, showing a link to the "full app") without suppressing the PWA install path.
This is documented as part of the Web App Manifest spec at https://developer.mozilla.org/en-US/docs/Web/Manifest/related_applications.