Update exported content to account for the fact that SDC props' image references should not be using regexes anymore
>>> [!note] Migrated issue
<!-- Drupal.org comment -->
<!-- Migrated from issue #3554014. -->
Reported by: [phenaproxima](https://www.drupal.org/user/205645)
Related to !4
>>>
<h3 id="summary-problem-motivation">Problem/Motivation</h3>
<p>Canvas RC2 changed something: <a href="https://www.drupal.org/node/3542579#now">https://www.drupal.org/node/3542579#now</a></p>
<p>In a nutshell, structures like this in Byte's default content:</p>
<pre> src:<br> type: string<br> contentMediaType: 'image/*'<br> format: uri-reference<br> pattern: '^(/|https?://)?(?!.*\://)[^\s]+$'</pre><p>...should no longer be using <code>pattern</code>, but instead <code>x-allowed-schemes</code>, like this:</p>
<pre> src:<br> type: string<br> contentMediaType: 'image/*'<br> format: uri-reference<br> x-allowed-schemes:<br> - http<br> - https</pre><p>Byte's default content is currently a mix of both types. We should make all of them use <code>x-allowed-schemes</code>.</p>
issue