diff --git a/CHANGELOG.md b/CHANGELOG.md index 69e00d70..0e450772 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ All notable changes to `shopware-php-sdk` will be documented in this file. Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles. +### 1.4.0 +- Updated Latest DAL Classes +- Added NotificationService to allow sending/getting notification from external app (success/error/warning/info) +- Added UserConfigService to getting/saving admin's config +- Added AdminSearchService to search for multiple entities as one request +- Added more service's examples +- Deprecated SystemConfigService::saveConfiguration, use SystemConfigService::save instead +- Deprecated SystemConfigService::batchSaveConfiguration, use SystemConfigService::batchSave instead + ### 1.3.3 - [Use correct sync operator for syncDeleted](https://github.com/vienthuong/shopware-php-sdk/pull/16) - [Remove extends HttpClient from GuzzleClient](https://github.com/vienthuong/shopware-php-sdk/issues/5) diff --git a/README.md b/README.md index 311d66e2..ce7f0289 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,9 @@ If you're familiar with Shopware 6 DAL syntax and how to retrieve it you might s ![image](https://i.imgur.com/NyXy2db.png) +Or sending notification from external server +![image](https://i.imgur.com/26LdTab.png) + ## Installation Install with Composer ```shell @@ -25,6 +28,9 @@ composer require vin-sw/shopware-sdk - Admin API - CRUD API - Sync Api + - User Config API + - Notification API + - Admin Search API - Other services - ... (TODO) @@ -165,6 +171,9 @@ new OpenModalResponse($shopSecret, $iframeUrl, OpenModalResponse::LARGE_SIZE, tr - [UserService](/src/Service/UserService.php) - [StateMachineService](/src/Service/StateMachineService.php) - [SyncService](/src/Service/SyncService.php) + - [NotificationService](/src/Service/NotificationService.php) + - [UserConfigService](/src/Service/UserConfigService.php) + - [AdminSearchService](/src/Service/AdminSearchService.php) - For other services that does not have a concrete class, use: [AdminActionService](/src/Service/AdminActionService.php) An ApiService requires a [Context](src/Data/Context.php) object as its first argument. diff --git a/composer.json b/composer.json index 55eabeee..1e590a3f 100755 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "A PHP SDK for Shopware 6 Platform", "type": "library", "license": "MIT", - "version": "1.3.3", + "version": "1.4.0", "authors": [ { "name": "vin", diff --git a/examples/admin-search-service.php b/examples/admin-search-service.php new file mode 100644 index 00000000..2f959662 --- /dev/null +++ b/examples/admin-search-service.php @@ -0,0 +1,37 @@ +addAssociation('categories'); + $productCriteria->setTerm('feeb9f03a8ca49749f8cce86c9a3d4d7'); + + $customerCriteria = new Criteria(); + $customerCriteria->setTerm('501e41803e7b4ca8b54a7ed72b498568pharvey@example.com'); + + $criteriaCollection = new KeyValuePairs(); + $criteriaCollection->add(KeyValuePair::create('product', $productCriteria)); + $criteriaCollection->add(KeyValuePair::create('customer', $customerCriteria)); + + $result = $service->search($criteriaCollection); + + dd($result); + } +} + +$example = new AdminSearchExample(); +$example->execute(); \ No newline at end of file diff --git a/examples/notification-service.php b/examples/notification-service.php new file mode 100644 index 00000000..f7b60089 --- /dev/null +++ b/examples/notification-service.php @@ -0,0 +1,27 @@ +sendNotification($notification); + + $notifications = $service->fetchNotification(); + dump($notifications); + } +} + +$example = new NotificationServiceExample(); +$example->execute(); \ No newline at end of file diff --git a/examples/system-config-service.php b/examples/system-config-service.php new file mode 100644 index 00000000..ae46a000 --- /dev/null +++ b/examples/system-config-service.php @@ -0,0 +1,27 @@ + 'my.config.value1']); + + $service->save($config); + + $config = $service->getConfiguration('core.basicInformation'); + dump($config); + } +} + +$example = new SystemConfigServiceExample(); +$example->execute(); \ No newline at end of file diff --git a/examples/user-config-service.php b/examples/user-config-service.php new file mode 100644 index 00000000..ead9f6dc --- /dev/null +++ b/examples/user-config-service.php @@ -0,0 +1,31 @@ + 'my.config.value1']); + $config2 = KeyValuePair::create('my.config.key2', ['another' => 'my.config.value2']); + + $pairs = new KeyValuePairs([$config1, $config2]); + + $service->saveConfigMe($pairs); + + $configs = $service->getConfigMe($pairs->getKeys()); + dump($configs); + } +} + +$example = new UserConfigServiceExample(); +$example->execute(); \ No newline at end of file diff --git a/script/src/CodeGenerator.php b/script/src/CodeGenerator.php index 0ae0afd3..486b190f 100644 --- a/script/src/CodeGenerator.php +++ b/script/src/CodeGenerator.php @@ -240,6 +240,11 @@ private static function escapeJson(array $input) { private static function getTypedProperty(string $entityNamespace, string $entityName, ClassGenerator $class, Property $property): ?string { + // TODO: hotfix for ConfigJsonFieldSerializer bug in core + if ($entityName === 'SystemConfig' && $property->name === 'configurationValue') { + return null; + } + $prefix = '?'; // $flags = $property->flags; diff --git a/src/Data/Aggregation/HistogramAggregation.php b/src/Data/Aggregation/HistogramAggregation.php index e24af9c7..65aca32e 100644 --- a/src/Data/Aggregation/HistogramAggregation.php +++ b/src/Data/Aggregation/HistogramAggregation.php @@ -9,11 +9,17 @@ class HistogramAggregation extends Aggregation { public const PER_MINUTE = 'minute'; + public const PER_HOUR = 'hour'; + public const PER_DAY = 'day'; + public const PER_WEEK = 'week'; + public const PER_MONTH = 'month'; + public const PER_QUARTER = 'quarter'; + public const PER_YEAR = 'year'; public string $name; diff --git a/src/Data/Entity/App/AppDefinition.php b/src/Data/Entity/App/AppDefinition.php index e08b603e..879a5680 100644 --- a/src/Data/Entity/App/AppDefinition.php +++ b/src/Data/Entity/App/AppDefinition.php @@ -63,6 +63,7 @@ public function getSchema() : Schema new Property('customFieldSets', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), ]), ['entity' => 'custom_field_set', 'referenceField' => 'appId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('actionButtons', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), ]), ['entity' => 'app_action_button', 'referenceField' => 'appId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('templates', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), ]), ['entity' => 'app_template', 'referenceField' => 'appId', 'localField' => 'id', 'relation' => 'one_to_many', ]), + new Property('scripts', 'association', new FlagCollection([new Flag('cascade_delete', 1), ]), ['entity' => 'script', 'referenceField' => 'appId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('webhooks', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), ]), ['entity' => 'webhook', 'referenceField' => 'appId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('paymentMethods', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('set_null_on_delete', 1), ]), ['entity' => 'app_payment_method', 'referenceField' => 'appId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('cmsBlocks', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), ]), ['entity' => 'app_cms_block', 'referenceField' => 'appId', 'localField' => 'id', 'relation' => 'one_to_many', ]), diff --git a/src/Data/Entity/App/AppEntity.php b/src/Data/Entity/App/AppEntity.php index f80c6220..5065329a 100644 --- a/src/Data/Entity/App/AppEntity.php +++ b/src/Data/Entity/App/AppEntity.php @@ -7,6 +7,7 @@ use Vin\ShopwareSdk\Data\Entity\CustomFieldSet\CustomFieldSetCollection; use Vin\ShopwareSdk\Data\Entity\AppActionButton\AppActionButtonCollection; use Vin\ShopwareSdk\Data\Entity\AppTemplate\AppTemplateCollection; +use Vin\ShopwareSdk\Data\Entity\Script\ScriptCollection; use Vin\ShopwareSdk\Data\Entity\Webhook\WebhookCollection; use Vin\ShopwareSdk\Data\Entity\AppPaymentMethod\AppPaymentMethodCollection; use Vin\ShopwareSdk\Data\Entity\AppCmsBlock\AppCmsBlockCollection; @@ -71,6 +72,8 @@ class AppEntity extends Entity public ?AppTemplateCollection $templates = null; + public ?ScriptCollection $scripts = null; + public ?WebhookCollection $webhooks = null; public ?AppPaymentMethodCollection $paymentMethods = null; diff --git a/src/Data/Entity/AppPaymentMethod/AppPaymentMethodDefinition.php b/src/Data/Entity/AppPaymentMethod/AppPaymentMethodDefinition.php index a64156e5..f74b37f9 100644 --- a/src/Data/Entity/AppPaymentMethod/AppPaymentMethodDefinition.php +++ b/src/Data/Entity/AppPaymentMethod/AppPaymentMethodDefinition.php @@ -40,6 +40,8 @@ public function getSchema() : Schema new Property('identifier', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), new Property('payUrl', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('finalizeUrl', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), + new Property('validateUrl', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), + new Property('captureUrl', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('appId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('app', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'app', 'referenceField' => 'id', 'localField' => 'appId', 'relation' => 'many_to_one', ]), new Property('originalMediaId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), diff --git a/src/Data/Entity/AppPaymentMethod/AppPaymentMethodEntity.php b/src/Data/Entity/AppPaymentMethod/AppPaymentMethodEntity.php index d6e9f920..8c28d249 100644 --- a/src/Data/Entity/AppPaymentMethod/AppPaymentMethodEntity.php +++ b/src/Data/Entity/AppPaymentMethod/AppPaymentMethodEntity.php @@ -21,6 +21,10 @@ class AppPaymentMethodEntity extends Entity public ?string $finalizeUrl = null; + public ?string $validateUrl = null; + + public ?string $captureUrl = null; + public ?string $appId = null; public ?AppEntity $app = null; diff --git a/src/Data/Entity/Country/CountryDefinition.php b/src/Data/Entity/Country/CountryDefinition.php index af805641..21046bea 100644 --- a/src/Data/Entity/Country/CountryDefinition.php +++ b/src/Data/Entity/Country/CountryDefinition.php @@ -39,7 +39,6 @@ public function getSchema() : Schema new Property('name', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), new Flag('search_ranking', 500), new Flag('translatable', 1), ]), []), new Property('iso', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('search_ranking', 250), ]), []), new Property('position', 'int', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), - new Property('taxFree', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('deprecated', unserialize('a:3:{s:16:"deprecated_since";s:6:"v6.4.0";s:18:"will_be_removed_in";s:6:"v6.5.0";s:11:"replaced_by";N;}')), ]), []), new Property('active', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('shippingAvailable', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('iso3', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('search_ranking', 250), ]), []), @@ -48,6 +47,7 @@ public function getSchema() : Schema new Property('companyTaxFree', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('deprecated', unserialize('a:3:{s:16:"deprecated_since";s:6:"v6.4.0";s:18:"will_be_removed_in";s:6:"v6.5.0";s:11:"replaced_by";N;}')), ]), []), new Property('checkVatIdPattern', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('vatIdRequired', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), + new Property('taxFree', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('deprecated', unserialize('a:3:{s:16:"deprecated_since";s:6:"v6.4.0";s:18:"will_be_removed_in";s:6:"v6.5.0";s:11:"replaced_by";N;}')), ]), []), new Property('vatIdPattern', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('customFields', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('translatable', 1), ]), []), new Property('customerTax', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), ['properties' => json_decode('{"enabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currencyId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"amount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}}', true), ]), diff --git a/src/Data/Entity/Country/CountryEntity.php b/src/Data/Entity/Country/CountryEntity.php index 2a17c8f0..37498f49 100644 --- a/src/Data/Entity/Country/CountryEntity.php +++ b/src/Data/Entity/Country/CountryEntity.php @@ -23,8 +23,6 @@ class CountryEntity extends Entity public ?int $position = null; - public ?bool $taxFree = null; - public ?bool $active = null; public ?bool $shippingAvailable = null; @@ -41,6 +39,8 @@ class CountryEntity extends Entity public ?bool $vatIdRequired = null; + public ?bool $taxFree = null; + public ?string $vatIdPattern = null; public ?array $customerTax = null; diff --git a/src/Data/Entity/Customer/CustomerDefinition.php b/src/Data/Entity/Customer/CustomerDefinition.php index b657bded..a7e36eeb 100644 --- a/src/Data/Entity/Customer/CustomerDefinition.php +++ b/src/Data/Entity/Customer/CustomerDefinition.php @@ -63,6 +63,7 @@ public function getSchema() : Schema new Property('guest', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('firstLogin', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('lastLogin', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), + new Property('newsletterSalesChannelIds', 'json_object', new FlagCollection([new Flag('write_protected', [['system']]), ]), []), new Property('newsletter', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('birthday', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('lastOrderDate', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('write_protected', [['system']]), ]), []), diff --git a/src/Data/Entity/Customer/CustomerEntity.php b/src/Data/Entity/Customer/CustomerEntity.php index 125819d2..3898d6ab 100644 --- a/src/Data/Entity/Customer/CustomerEntity.php +++ b/src/Data/Entity/Customer/CustomerEntity.php @@ -77,6 +77,8 @@ class CustomerEntity extends Entity public ?\DateTimeInterface$lastLogin = null; + public ?array $newsletterSalesChannelIds = null; + public ?bool $newsletter = null; public ?\DateTimeInterface$birthday = null; diff --git a/src/Data/Entity/ImportExportLog/ImportExportLogDefinition.php b/src/Data/Entity/ImportExportLog/ImportExportLogDefinition.php index 67dc66ef..08eec232 100644 --- a/src/Data/Entity/ImportExportLog/ImportExportLogDefinition.php +++ b/src/Data/Entity/ImportExportLog/ImportExportLogDefinition.php @@ -46,6 +46,7 @@ public function getSchema() : Schema new Property('username', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('profileName', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('config', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), + new Property('result', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('user', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'user', 'referenceField' => 'id', 'localField' => 'userId', 'relation' => 'many_to_one', ]), new Property('profile', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'import_export_profile', 'referenceField' => 'id', 'localField' => 'profileId', 'relation' => 'many_to_one', ]), new Property('file', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'import_export_file', 'referenceField' => 'id', 'localField' => 'fileId', 'relation' => 'one_to_one', ]), diff --git a/src/Data/Entity/ImportExportLog/ImportExportLogEntity.php b/src/Data/Entity/ImportExportLog/ImportExportLogEntity.php index 41e27f47..9f52527b 100644 --- a/src/Data/Entity/ImportExportLog/ImportExportLogEntity.php +++ b/src/Data/Entity/ImportExportLog/ImportExportLogEntity.php @@ -33,6 +33,8 @@ class ImportExportLogEntity extends Entity public ?array $config = null; + public ?array $result = null; + public ?UserEntity $user = null; public ?ImportExportProfileEntity $profile = null; diff --git a/src/Data/Entity/ImportExportProfile/ImportExportProfileDefinition.php b/src/Data/Entity/ImportExportProfile/ImportExportProfileDefinition.php index 7845be3f..7021141c 100644 --- a/src/Data/Entity/ImportExportProfile/ImportExportProfileDefinition.php +++ b/src/Data/Entity/ImportExportProfile/ImportExportProfileDefinition.php @@ -38,12 +38,14 @@ public function getSchema() : Schema new Property('id', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('primary_key', 1), new Flag('required', 1), ]), []), new Property('name', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('label', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), new Flag('translatable', 1), ]), []), + new Property('type', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('systemDefault', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('sourceEntity', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), new Property('fileType', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), new Property('delimiter', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), new Property('enclosure', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), new Property('mapping', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), + new Property('updateBy', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('config', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('importExportLogs', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('set_null_on_delete', 1), ]), ['entity' => 'import_export_log', 'referenceField' => 'profileId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('translations', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), new Flag('required', 1), ]), ['entity' => 'import_export_profile_translation', 'referenceField' => 'importExportProfileId', 'localField' => 'id', 'relation' => 'one_to_many', ]), diff --git a/src/Data/Entity/ImportExportProfile/ImportExportProfileEntity.php b/src/Data/Entity/ImportExportProfile/ImportExportProfileEntity.php index 41863d00..266e3888 100644 --- a/src/Data/Entity/ImportExportProfile/ImportExportProfileEntity.php +++ b/src/Data/Entity/ImportExportProfile/ImportExportProfileEntity.php @@ -16,6 +16,8 @@ class ImportExportProfileEntity extends Entity public ?string $label = null; + public ?string $type = null; + public ?bool $systemDefault = null; public ?string $sourceEntity = null; @@ -28,6 +30,8 @@ class ImportExportProfileEntity extends Entity public ?array $mapping = null; + public ?array $updateBy = null; + public ?array $config = null; public ?ImportExportLogCollection $importExportLogs = null; diff --git a/src/Data/Entity/Integration/IntegrationDefinition.php b/src/Data/Entity/Integration/IntegrationDefinition.php index c40f9c54..a09b8f9f 100644 --- a/src/Data/Entity/Integration/IntegrationDefinition.php +++ b/src/Data/Entity/Integration/IntegrationDefinition.php @@ -48,6 +48,7 @@ public function getSchema() : Schema new Property('aclRoles', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'acl_role', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), ]), []), new Property('updatedAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), + new Property('createdNotifications', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('extension', 1), ]), ['entity' => 'notification', 'referenceField' => 'createdByIntegrationId', 'localField' => 'id', 'relation' => 'one_to_many', ]), ])); } } diff --git a/src/Data/Entity/Integration/IntegrationEntity.php b/src/Data/Entity/Integration/IntegrationEntity.php index ed26703c..bf519b99 100644 --- a/src/Data/Entity/Integration/IntegrationEntity.php +++ b/src/Data/Entity/Integration/IntegrationEntity.php @@ -3,6 +3,7 @@ use Vin\ShopwareSdk\Data\Entity\App\AppEntity; use Vin\ShopwareSdk\Data\Entity\AclRole\AclRoleCollection; +use Vin\ShopwareSdk\Data\Entity\Notification\NotificationCollection; use Vin\ShopwareSdk\Data\Entity\Entity; /** @@ -29,4 +30,6 @@ class IntegrationEntity extends Entity public ?AppEntity $app = null; public ?AclRoleCollection $aclRoles = null; + + public ?NotificationCollection $createdNotifications = null; } diff --git a/src/Data/Entity/MailTemplate/MailTemplateDefinition.php b/src/Data/Entity/MailTemplate/MailTemplateDefinition.php index e8b10d1d..8f8a34d9 100644 --- a/src/Data/Entity/MailTemplate/MailTemplateDefinition.php +++ b/src/Data/Entity/MailTemplate/MailTemplateDefinition.php @@ -40,9 +40,9 @@ public function getSchema() : Schema new Property('systemDefault', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('senderName', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('translatable', 1), ]), []), new Property('description', 'text', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('search_ranking', 500), new Flag('translatable', 1), ]), []), - new Property('subject', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), new Flag('search_ranking', 500), new Flag('translatable', 1), ]), []), + new Property('subject', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), new Flag('allow_html', 1), new Flag('search_ranking', 500), new Flag('translatable', 1), ]), []), new Property('contentHtml', 'text', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), new Flag('allow_html', 1), new Flag('translatable', 1), ]), []), - new Property('contentPlain', 'text', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), new Flag('translatable', 1), ]), []), + new Property('contentPlain', 'text', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), new Flag('allow_html', 1), new Flag('translatable', 1), ]), []), new Property('customFields', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('translatable', 1), ]), []), new Property('translations', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('cascade_delete', 1), new Flag('required', 1), ]), ['entity' => 'mail_template_translation', 'referenceField' => 'mailTemplateId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('mailTemplateType', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('search_ranking', 0.25), ]), ['entity' => 'mail_template_type', 'referenceField' => 'id', 'localField' => 'mailTemplateTypeId', 'relation' => 'many_to_one', ]), diff --git a/src/Data/Entity/MailTemplateTranslation/MailTemplateTranslationDefinition.php b/src/Data/Entity/MailTemplateTranslation/MailTemplateTranslationDefinition.php index 0c74ba53..74d80364 100644 --- a/src/Data/Entity/MailTemplateTranslation/MailTemplateTranslationDefinition.php +++ b/src/Data/Entity/MailTemplateTranslation/MailTemplateTranslationDefinition.php @@ -37,9 +37,9 @@ public function getSchema() : Schema return new Schema('mail_template_translation', new PropertyCollection([ new Property('senderName', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('description', 'text', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), - new Property('subject', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), + new Property('subject', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), new Flag('allow_html', 1), ]), []), new Property('contentHtml', 'text', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), new Flag('allow_html', 1), ]), []), - new Property('contentPlain', 'text', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), + new Property('contentPlain', 'text', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), new Flag('allow_html', 1), ]), []), new Property('customFields', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), ]), []), new Property('updatedAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), diff --git a/src/Data/Entity/Notification/NotificationCollection.php b/src/Data/Entity/Notification/NotificationCollection.php new file mode 100644 index 00000000..71f32156 --- /dev/null +++ b/src/Data/Entity/Notification/NotificationCollection.php @@ -0,0 +1,25 @@ + 'integration', 'referenceField' => 'id', 'localField' => 'createdByIntegrationId', 'relation' => 'many_to_one', ]), + new Property('createdByUser', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'user', 'referenceField' => 'id', 'localField' => 'createdByUserId', 'relation' => 'many_to_one', ]), + new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), ]), []), + new Property('updatedAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), + ])); + } +} diff --git a/src/Data/Entity/Notification/NotificationEntity.php b/src/Data/Entity/Notification/NotificationEntity.php new file mode 100644 index 00000000..5b78969c --- /dev/null +++ b/src/Data/Entity/Notification/NotificationEntity.php @@ -0,0 +1,30 @@ + 'payment_method_translation', 'referenceField' => 'paymentMethodId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('media', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), ['entity' => 'media', 'referenceField' => 'id', 'localField' => 'mediaId', 'relation' => 'many_to_one', ]), new Property('availabilityRule', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'rule', 'referenceField' => 'id', 'localField' => 'availabilityRuleId', 'relation' => 'many_to_one', ]), diff --git a/src/Data/Entity/PaymentMethod/PaymentMethodEntity.php b/src/Data/Entity/PaymentMethod/PaymentMethodEntity.php index bf621230..1ef5e25c 100644 --- a/src/Data/Entity/PaymentMethod/PaymentMethodEntity.php +++ b/src/Data/Entity/PaymentMethod/PaymentMethodEntity.php @@ -40,6 +40,12 @@ class PaymentMethodEntity extends Entity public ?string $formattedHandlerIdentifier = null; + public ?bool $synchronous = null; + + public ?bool $asynchronous = null; + + public ?bool $prepared = null; + public ?PaymentMethodTranslationCollection $translations = null; public ?MediaEntity $media = null; diff --git a/src/Data/Entity/Product/ProductDefinition.php b/src/Data/Entity/Product/ProductDefinition.php index 4fc61f1e..bbe09b89 100644 --- a/src/Data/Entity/Product/ProductDefinition.php +++ b/src/Data/Entity/Product/ProductDefinition.php @@ -44,7 +44,7 @@ public function getSchema() : Schema new Property('unitId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('inherited', 1), ]), []), new Property('taxId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('inherited', 1), new Flag('required', 1), ]), []), new Property('coverId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('inherited', 1), ]), []), - new Property('productMediaVersionId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('inherited', 1), ]), []), + new Property('productMediaVersionId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('inherited', 1), new Flag('required', 1), ]), []), new Property('deliveryTimeId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('inherited', 1), ]), []), new Property('featureSetId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('inherited', 1), ]), []), new Property('canonicalProductId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('inherited', 1), ]), []), diff --git a/src/Data/Entity/ProductMedia/ProductMediaDefinition.php b/src/Data/Entity/ProductMedia/ProductMediaDefinition.php index 127641bf..e87fc99e 100644 --- a/src/Data/Entity/ProductMedia/ProductMediaDefinition.php +++ b/src/Data/Entity/ProductMedia/ProductMediaDefinition.php @@ -43,6 +43,7 @@ public function getSchema() : Schema new Property('position', 'int', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('product', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('reversed_inherited', 'media'), ]), ['entity' => 'product', 'referenceField' => 'id', 'localField' => 'productId', 'relation' => 'many_to_one', ]), new Property('media', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), ['entity' => 'media', 'referenceField' => 'id', 'localField' => 'mediaId', 'relation' => 'many_to_one', ]), + new Property('coverProducts', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('set_null_on_delete', 1), ]), ['entity' => 'product', 'referenceField' => 'coverId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('customFields', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), ]), []), new Property('updatedAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), diff --git a/src/Data/Entity/ProductMedia/ProductMediaEntity.php b/src/Data/Entity/ProductMedia/ProductMediaEntity.php index d906f6b9..06253ed4 100644 --- a/src/Data/Entity/ProductMedia/ProductMediaEntity.php +++ b/src/Data/Entity/ProductMedia/ProductMediaEntity.php @@ -3,6 +3,7 @@ use Vin\ShopwareSdk\Data\Entity\Product\ProductEntity; use Vin\ShopwareSdk\Data\Entity\Media\MediaEntity; +use Vin\ShopwareSdk\Data\Entity\Product\ProductCollection; use Vin\ShopwareSdk\Data\Entity\Entity; /** @@ -23,4 +24,6 @@ class ProductMediaEntity extends Entity public ?ProductEntity $product = null; public ?MediaEntity $media = null; + + public ?ProductCollection $coverProducts = null; } diff --git a/src/Data/Entity/ProductStream/ProductStreamDefinition.php b/src/Data/Entity/ProductStream/ProductStreamDefinition.php index 1fd77673..6ddd8e87 100644 --- a/src/Data/Entity/ProductStream/ProductStreamDefinition.php +++ b/src/Data/Entity/ProductStream/ProductStreamDefinition.php @@ -42,7 +42,7 @@ public function getSchema() : Schema new Property('description', 'text', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('translatable', 1), ]), []), new Property('customFields', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('translatable', 1), ]), []), new Property('translations', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), new Flag('required', 1), ]), ['entity' => 'product_stream_translation', 'referenceField' => 'productStreamId', 'localField' => 'id', 'relation' => 'one_to_many', ]), - new Property('filters', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'product_stream_filter', 'referenceField' => 'productStreamId', 'localField' => 'id', 'relation' => 'one_to_many', ]), + new Property('filters', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), ]), ['entity' => 'product_stream_filter', 'referenceField' => 'productStreamId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('productCrossSellings', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'product_cross_selling', 'referenceField' => 'productStreamId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('productExports', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'product_export', 'referenceField' => 'productStreamId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('categories', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'category', 'referenceField' => 'productStreamId', 'localField' => 'id', 'relation' => 'one_to_many', ]), diff --git a/src/Data/Entity/Promotion/PromotionDefinition.php b/src/Data/Entity/Promotion/PromotionDefinition.php index 6ee1dfe1..3a97aeda 100644 --- a/src/Data/Entity/Promotion/PromotionDefinition.php +++ b/src/Data/Entity/Promotion/PromotionDefinition.php @@ -42,6 +42,7 @@ public function getSchema() : Schema new Property('validUntil', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('maxRedemptionsGlobal', 'int', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('maxRedemptionsPerCustomer', 'int', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), + new Property('priority', 'int', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), new Property('exclusive', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), new Property('code', 'string', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('useCodes', 'boolean', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), ]), []), diff --git a/src/Data/Entity/Promotion/PromotionEntity.php b/src/Data/Entity/Promotion/PromotionEntity.php index f8112d7d..00a8fab0 100644 --- a/src/Data/Entity/Promotion/PromotionEntity.php +++ b/src/Data/Entity/Promotion/PromotionEntity.php @@ -29,6 +29,8 @@ class PromotionEntity extends Entity public ?int $maxRedemptionsPerCustomer = null; + public ?int $priority = null; + public ?bool $exclusive = null; public ?string $code = null; diff --git a/src/Data/Entity/Rule/RuleDefinition.php b/src/Data/Entity/Rule/RuleDefinition.php index f363b95e..6336c542 100644 --- a/src/Data/Entity/Rule/RuleDefinition.php +++ b/src/Data/Entity/Rule/RuleDefinition.php @@ -50,12 +50,12 @@ public function getSchema() : Schema new Property('shippingMethods', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('restrict_delete', 1), ]), ['entity' => 'shipping_method', 'referenceField' => 'availabilityRuleId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('paymentMethods', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('restrict_delete', 1), ]), ['entity' => 'payment_method', 'referenceField' => 'availabilityRuleId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('personaPromotions', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('restrict_delete', 1), ]), ['entity' => 'promotion', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), + new Property('flowSequences', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('restrict_delete', 1), ]), ['entity' => 'flow_sequence', 'referenceField' => 'ruleId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('orderPromotions', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('restrict_delete', 1), ]), ['entity' => 'promotion', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), new Property('cartPromotions', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('restrict_delete', 1), ]), ['entity' => 'promotion', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), new Property('promotionDiscounts', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('restrict_delete', 1), ]), ['entity' => 'promotion_discount', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), new Property('promotionSetGroups', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('restrict_delete', 1), ]), ['entity' => 'promotion_setgroup', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), - new Property('eventActions', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), new Flag('deprecated', unserialize('a:3:{s:16:"deprecated_since";s:6:"v6.4.0";s:18:"will_be_removed_in";s:6:"v6.5.0";s:11:"replaced_by";N;}')), ]), ['entity' => 'event_action', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), - new Property('flowSequences', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('restrict_delete', 1), ]), ['entity' => 'flow_sequence', 'referenceField' => 'ruleId', 'localField' => 'id', 'relation' => 'one_to_many', ]), + new Property('eventActions', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), new Flag('deprecated', unserialize('a:3:{s:16:"deprecated_since";s:6:"v6.4.6";s:18:"will_be_removed_in";s:6:"v6.5.0";s:11:"replaced_by";N;}')), ]), ['entity' => 'event_action', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), ]), []), new Property('updatedAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), ])); diff --git a/src/Data/Entity/Rule/RuleEntity.php b/src/Data/Entity/Rule/RuleEntity.php index 673b1fe8..2fe9d977 100644 --- a/src/Data/Entity/Rule/RuleEntity.php +++ b/src/Data/Entity/Rule/RuleEntity.php @@ -6,11 +6,11 @@ use Vin\ShopwareSdk\Data\Entity\ShippingMethodPrice\ShippingMethodPriceCollection; use Vin\ShopwareSdk\Data\Entity\ShippingMethod\ShippingMethodCollection; use Vin\ShopwareSdk\Data\Entity\PaymentMethod\PaymentMethodCollection; +use Vin\ShopwareSdk\Data\Entity\FlowSequence\FlowSequenceCollection; use Vin\ShopwareSdk\Data\Entity\Promotion\PromotionCollection; use Vin\ShopwareSdk\Data\Entity\PromotionDiscount\PromotionDiscountCollection; use Vin\ShopwareSdk\Data\Entity\PromotionSetgroup\PromotionSetgroupCollection; use Vin\ShopwareSdk\Data\Entity\EventAction\EventActionCollection; -use Vin\ShopwareSdk\Data\Entity\FlowSequence\FlowSequenceCollection; use Vin\ShopwareSdk\Data\Entity\Entity; /** @@ -46,6 +46,8 @@ class RuleEntity extends Entity public ?PromotionCollection $personaPromotions = null; + public ?FlowSequenceCollection $flowSequences = null; + public ?PromotionCollection $orderPromotions = null; public ?PromotionCollection $cartPromotions = null; @@ -55,6 +57,4 @@ class RuleEntity extends Entity public ?PromotionSetgroupCollection $promotionSetGroups = null; public ?EventActionCollection $eventActions = null; - - public ?FlowSequenceCollection $flowSequences = null; } diff --git a/src/Data/Entity/SalesChannel/SalesChannelDefinition.php b/src/Data/Entity/SalesChannel/SalesChannelDefinition.php index 558916f8..2c11ca48 100644 --- a/src/Data/Entity/SalesChannel/SalesChannelDefinition.php +++ b/src/Data/Entity/SalesChannel/SalesChannelDefinition.php @@ -107,7 +107,7 @@ public function getSchema() : Schema new Property('productExports', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'product_export', 'referenceField' => 'salesChannelId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('analytics', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), ]), ['entity' => 'sales_channel_analytics', 'referenceField' => 'id', 'localField' => 'analyticsId', 'relation' => 'one_to_one', ]), new Property('customerGroupsRegistrations', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'customer_group', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), - new Property('eventActions', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), new Flag('deprecated', unserialize('a:3:{s:16:"deprecated_since";s:6:"v6.4.0";s:18:"will_be_removed_in";s:6:"v6.5.0";s:11:"replaced_by";N;}')), ]), ['entity' => 'event_action', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), + new Property('eventActions', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), new Flag('deprecated', unserialize('a:3:{s:16:"deprecated_since";s:6:"v6.4.6";s:18:"will_be_removed_in";s:6:"v6.5.0";s:11:"replaced_by";N;}')), ]), ['entity' => 'event_action', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), new Property('landingPages', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'landing_page', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), new Property('boundCustomers', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'customer', 'referenceField' => 'boundSalesChannelId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('wishlists', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('cascade_delete', 1), ]), ['entity' => 'customer_wishlist', 'referenceField' => 'salesChannelId', 'localField' => 'id', 'relation' => 'one_to_many', ]), diff --git a/src/Data/Entity/SystemConfig/SystemConfigEntity.php b/src/Data/Entity/SystemConfig/SystemConfigEntity.php index a559467c..40e0f46b 100644 --- a/src/Data/Entity/SystemConfig/SystemConfigEntity.php +++ b/src/Data/Entity/SystemConfig/SystemConfigEntity.php @@ -13,7 +13,10 @@ class SystemConfigEntity extends Entity { public ?string $configurationKey = null; - public ?array $configurationValue = null; + /** + * @var mixed + */ + public $configurationValue = null; public ?string $salesChannelId = null; diff --git a/src/Data/Entity/Theme/ThemeDefinition.php b/src/Data/Entity/Theme/ThemeDefinition.php index 80156f01..64e82674 100644 --- a/src/Data/Entity/Theme/ThemeDefinition.php +++ b/src/Data/Entity/Theme/ThemeDefinition.php @@ -52,7 +52,8 @@ public function getSchema() : Schema new Property('salesChannels', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'sales_channel', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), new Property('media', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), ['entity' => 'media', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), new Property('previewMedia', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'media', 'referenceField' => 'id', 'localField' => 'previewMediaId', 'relation' => 'many_to_one', ]), - new Property('childThemes', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'theme', 'referenceField' => 'parentThemeId', 'localField' => 'id', 'relation' => 'one_to_many', ]), + new Property('dependentThemes', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'theme', 'referenceField' => 'id', 'localField' => 'id', 'relation' => 'many_to_many', ]), + new Property('childThemes', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('deprecated', unserialize('a:3:{s:16:"deprecated_since";s:6:"v6.4.8";s:18:"will_be_removed_in";s:6:"v6.5.0";s:11:"replaced_by";N;}')), ]), ['entity' => 'theme', 'referenceField' => 'parentThemeId', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), ]), []), new Property('updatedAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), new Property('translated', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('computed', 1), new Flag('runtime', 1), ]), []), diff --git a/src/Data/Entity/Theme/ThemeEntity.php b/src/Data/Entity/Theme/ThemeEntity.php index 59cfd457..70391e0f 100644 --- a/src/Data/Entity/Theme/ThemeEntity.php +++ b/src/Data/Entity/Theme/ThemeEntity.php @@ -44,5 +44,7 @@ class ThemeEntity extends Entity public ?MediaEntity $previewMedia = null; + public ?ThemeCollection $dependentThemes = null; + public ?ThemeCollection $childThemes = null; } diff --git a/src/Data/Entity/ThemeChild/ThemeChildCollection.php b/src/Data/Entity/ThemeChild/ThemeChildCollection.php new file mode 100644 index 00000000..a93a4da2 --- /dev/null +++ b/src/Data/Entity/ThemeChild/ThemeChildCollection.php @@ -0,0 +1,25 @@ + 'theme', 'referenceField' => 'id', 'localField' => 'parentId', 'relation' => 'many_to_one', ]), + new Property('childTheme', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'theme', 'referenceField' => 'id', 'localField' => 'childId', 'relation' => 'many_to_one', ]), + ])); + } +} diff --git a/src/Data/Entity/ThemeChild/ThemeChildEntity.php b/src/Data/Entity/ThemeChild/ThemeChildEntity.php new file mode 100644 index 00000000..9329130a --- /dev/null +++ b/src/Data/Entity/ThemeChild/ThemeChildEntity.php @@ -0,0 +1,21 @@ + 'order', 'referenceField' => 'updatedById', 'localField' => 'id', 'relation' => 'one_to_many', ]), new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), ]), []), new Property('updatedAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), + new Property('createdNotifications', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('extension', 1), ]), ['entity' => 'notification', 'referenceField' => 'createdByUserId', 'localField' => 'id', 'relation' => 'one_to_many', ]), ])); } } diff --git a/src/Data/Entity/User/UserEntity.php b/src/Data/Entity/User/UserEntity.php index fae90e28..e8c4cf3a 100644 --- a/src/Data/Entity/User/UserEntity.php +++ b/src/Data/Entity/User/UserEntity.php @@ -11,6 +11,7 @@ use Vin\ShopwareSdk\Data\Entity\AclRole\AclRoleCollection; use Vin\ShopwareSdk\Data\Entity\UserRecovery\UserRecoveryEntity; use Vin\ShopwareSdk\Data\Entity\Order\OrderCollection; +use Vin\ShopwareSdk\Data\Entity\Notification\NotificationCollection; use Vin\ShopwareSdk\Data\Entity\Entity; /** @@ -67,4 +68,6 @@ class UserEntity extends Entity public ?OrderCollection $createdOrders = null; public ?OrderCollection $updatedOrders = null; + + public ?NotificationCollection $createdNotifications = null; } diff --git a/src/Repository/Traits/EntityHydrator.php b/src/Repository/Traits/EntityHydrator.php index 1ce70246..5197265c 100644 --- a/src/Repository/Traits/EntityHydrator.php +++ b/src/Repository/Traits/EntityHydrator.php @@ -49,8 +49,11 @@ private function hydrateSearchResult(array $response, Context $context): EntityC $collectionClass = EntityCollection::class; - if (!empty($response['data'][0]['type'])) { - $repository = RepositoryFactory::create($response['data'][0]['type']); + $data = $response['data']; + $first = current($data); + + if (!empty($first['type'])) { + $repository = RepositoryFactory::create($first['type']); $collectionClass = $repository->getDefinition()->getEntityCollection(); } diff --git a/src/Resources/entity-mapping.json b/src/Resources/entity-mapping.json index cb5a1b3f..5b4aa82c 100644 --- a/src/Resources/entity-mapping.json +++ b/src/Resources/entity-mapping.json @@ -84,6 +84,7 @@ "message_queue_stats": "Vin\\ShopwareSdk\\Data\\Entity\\MessageQueueStats\\MessageQueueStatsDefinition", "newsletter_recipient": "Vin\\ShopwareSdk\\Data\\Entity\\NewsletterRecipient\\NewsletterRecipientDefinition", "newsletter_recipient_tag": "Vin\\ShopwareSdk\\Data\\Entity\\NewsletterRecipientTag\\NewsletterRecipientTagDefinition", + "notification": "Vin\\ShopwareSdk\\Data\\Entity\\Notification\\NotificationDefinition", "number_range": "Vin\\ShopwareSdk\\Data\\Entity\\NumberRange\\NumberRangeDefinition", "number_range_sales_channel": "Vin\\ShopwareSdk\\Data\\Entity\\NumberRangeSalesChannel\\NumberRangeSalesChannelDefinition", "number_range_state": "Vin\\ShopwareSdk\\Data\\Entity\\NumberRangeState\\NumberRangeStateDefinition", @@ -188,6 +189,7 @@ "tax_rule_type": "Vin\\ShopwareSdk\\Data\\Entity\\TaxRuleType\\TaxRuleTypeDefinition", "tax_rule_type_translation": "Vin\\ShopwareSdk\\Data\\Entity\\TaxRuleTypeTranslation\\TaxRuleTypeTranslationDefinition", "theme": "Vin\\ShopwareSdk\\Data\\Entity\\Theme\\ThemeDefinition", + "theme_child": "Vin\\ShopwareSdk\\Data\\Entity\\ThemeChild\\ThemeChildDefinition", "theme_media": "Vin\\ShopwareSdk\\Data\\Entity\\ThemeMedia\\ThemeMediaDefinition", "theme_sales_channel": "Vin\\ShopwareSdk\\Data\\Entity\\ThemeSalesChannel\\ThemeSalesChannelDefinition", "theme_translation": "Vin\\ShopwareSdk\\Data\\Entity\\ThemeTranslation\\ThemeTranslationDefinition", diff --git a/src/Resources/schema.json b/src/Resources/schema.json index 3bc8ccfd..2e02838d 100644 --- a/src/Resources/schema.json +++ b/src/Resources/schema.json @@ -1 +1 @@ -{"acl_role":{"entity":"acl_role","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"privileges":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"deletedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"users":{"type":"association","relation":"many_to_many","local":"aclRoleId","reference":"userId","mapping":"acl_user_role","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"app":{"type":"association","relation":"one_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"aclRoleId"},"integrations":{"type":"association","relation":"many_to_many","local":"aclRoleId","reference":"integrationId","mapping":"integration_role","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"acl_user_role":{"entity":"acl_user_role","properties":{"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"aclRoleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"aclRole":{"type":"association","relation":"many_to_one","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"aclRoleId","referenceField":"id"}}},"app":{"entity":"app","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"author":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"copyright":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"license":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"configurable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"privacy":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"version":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"iconRaw":{"type":"blob","flags":[]},"icon":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"appSecret":{"type":"string","flags":{"write_protected":[["system"]]}},"modules":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mainModule":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"cookies":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"translations":{"type":"association","relation":"one_to_many","entity":"app_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appId","primary":"appId"},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"privacyPolicyExtensions":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"since":"6.4.1.0","translatable":true}},"integrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"integration":{"type":"association","relation":"one_to_one","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"integrationId","referenceField":"id"},"aclRoleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"aclRole":{"type":"association","relation":"one_to_one","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"aclRoleId","referenceField":"id"},"customFieldSets":{"type":"association","relation":"one_to_many","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"actionButtons":{"type":"association","relation":"one_to_many","entity":"app_action_button","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"templates":{"type":"association","relation":"one_to_many","entity":"app_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"scripts":{"type":"association","relation":"one_to_many","entity":"script","flags":{"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"webhooks":{"type":"association","relation":"one_to_many","entity":"webhook","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"paymentMethods":{"type":"association","relation":"one_to_many","entity":"app_payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"cmsBlocks":{"type":"association","relation":"one_to_many","entity":"app_cms_block","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"app_action_button":{"entity":"app_action_button","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"entity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"view":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"action":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"openNewTab":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"app_action_button_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appActionButtonId","primary":"appActionButtonId"},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"app_action_button_translation":{"entity":"app_action_button_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"appActionButtonId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"appActionButton":{"type":"association","relation":"many_to_one","entity":"app_action_button","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appActionButtonId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"app_cms_block":{"entity":"app_cms_block","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"block":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"template":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"styles":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"app_cms_block_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appCmsBlockId","primary":"appCmsBlockId"},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"app_cms_block_translation":{"entity":"app_cms_block_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"appCmsBlockId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"appCmsBlock":{"type":"association","relation":"many_to_one","entity":"app_cms_block","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appCmsBlockId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"app_payment_method":{"entity":"app_payment_method","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"appName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"identifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"payUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"finalizeUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"originalMediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"originalMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"originalMediaId","referenceField":"id"},"paymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"paymentMethod":{"type":"association","relation":"one_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"paymentMethodId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"app_template":{"entity":"app_template","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"template":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"app_translation":{"entity":"app_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"privacyPolicyExtensions":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"since":"6.4.1.0"}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"category":{"entity":"category","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"parentVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"afterCategoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"afterCategoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"displayNestedProducts":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"breadcrumb":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"translatable":true}},"level":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"path":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"childCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productAssignmentType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"visible":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"linkType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"internalLink":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"externalLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"linkNewTab":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"metaTitle":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"parent":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"category_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"categoryId","primary":"categoryId"},"products":{"type":"association","relation":"many_to_many","local":"categoryId","reference":"productId","mapping":"product_category","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"reversed_inherited":"categories"},"localField":"id","referenceField":"id"},"nestedProducts":{"type":"association","relation":"many_to_many","local":"categoryId","reference":"productId","mapping":"product_category_tree","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"write_protected":[[]]},"localField":"id","referenceField":"id"},"tags":{"type":"association","relation":"many_to_many","local":"categoryId","reference":"tagId","mapping":"category_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"cmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"cmsPage":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"cmsPageId","referenceField":"id"},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"},"navigationSalesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"navigationCategoryId","primary":"id"},"footerSalesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"footerCategoryId","primary":"id"},"serviceSalesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"serviceCategoryId","primary":"id"},"mainCategories":{"type":"association","relation":"one_to_many","entity":"main_category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"categoryId","primary":"id"},"seoUrls":{"type":"association","relation":"one_to_many","entity":"seo_url","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"foreignKey","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"category_tag":{"entity":"category_tag","properties":{"categoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"categoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"category":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"categoryId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}}},"category_translation":{"entity":"category_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"breadcrumb":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"linkType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"internalLink":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"externalLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"linkNewTab":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"metaTitle":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"categoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"category":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"categoryId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"categoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"cms_block":{"entity":"cms_block","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"locked":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"computed":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"sectionPosition":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"marginTop":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"marginBottom":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"marginLeft":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"marginRight":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundColor":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundMediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundMediaMode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cssClass":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"sectionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"section":{"type":"association","relation":"many_to_one","entity":"cms_section","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"sectionId","referenceField":"id"},"backgroundMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"backgroundMediaId","referenceField":"id"},"slots":{"type":"association","relation":"one_to_many","entity":"cms_slot","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"blockId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"cmsSectionVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"cms_page":{"entity":"cms_page","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"entity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"config":{"type":"json_object","properties":{"backgroundColor":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"previewMediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"locked":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"computed":true}},"sections":{"type":"association","relation":"one_to_many","entity":"cms_section","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"pageId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"cms_page_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"cmsPageId","primary":"cmsPageId"},"previewMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"previewMediaId","referenceField":"id"},"categories":{"type":"association","relation":"one_to_many","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"cmsPageId","primary":"id"},"landingPages":{"type":"association","relation":"one_to_many","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"cmsPageId","primary":"id"},"homeSalesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"homeCmsPageId","primary":"id"},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"cmsPageId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"cms_page_translation":{"entity":"cms_page_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"cmsPage":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"cmsPageId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"cms_section":{"entity":"cms_section","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"locked":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"computed":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"sizingMode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mobileBehavior":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundColor":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundMediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundMediaMode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cssClass":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"pageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"page":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"pageId","referenceField":"id"},"backgroundMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"backgroundMediaId","referenceField":"id"},"blocks":{"type":"association","relation":"one_to_many","entity":"cms_block","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"sectionId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"cms_slot":{"entity":"cms_slot","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"slot":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"locked":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"data":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true,"write_protected":[[]]}},"blockId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"block":{"type":"association","relation":"many_to_one","entity":"cms_block","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"blockId","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"cms_slot_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"cmsSlotId","primary":"cmsSlotId"},"cmsBlockVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"cms_slot_translation":{"entity":"cms_slot_translation","properties":{"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cmsSlotId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"cmsSlot":{"type":"association","relation":"many_to_one","entity":"cms_slot","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"cmsSlotId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"cmsSlotVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"country":{"entity":"country","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"iso":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"taxFree":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"deprecated":{"deprecated_since":"v6.4.0","will_be_removed_in":"v6.5.0","replaced_by":null}}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"shippingAvailable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"iso3":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"displayStateInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"forceStateInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"companyTaxFree":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"deprecated":{"deprecated_since":"v6.4.0","will_be_removed_in":"v6.5.0","replaced_by":null}}},"checkVatIdPattern":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"vatIdRequired":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"vatIdPattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customerTax":{"type":"json_object","properties":{"enabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currencyId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"amount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"companyTax":{"type":"json_object","properties":{"enabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currencyId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"amount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"states":{"type":"association","relation":"one_to_many","entity":"country_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"country_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"countryId","primary":"countryId"},"customerAddresses":{"type":"association","relation":"one_to_many","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"orderAddresses":{"type":"association","relation":"one_to_many","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"countryId","reference":"salesChannelId","mapping":"sales_channel_country","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"taxRules":{"type":"association","relation":"one_to_many","entity":"tax_rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"currencyCountryRoundings":{"type":"association","relation":"one_to_many","entity":"currency_country_rounding","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"country_state":{"entity":"country_state","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shortCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"countryId","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"country_state_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"countryStateId","primary":"countryStateId"},"customerAddresses":{"type":"association","relation":"one_to_many","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"countryStateId","primary":"id"},"orderAddresses":{"type":"association","relation":"one_to_many","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"countryStateId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"country_state_translation":{"entity":"country_state_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"countryStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"countryState":{"type":"association","relation":"many_to_one","entity":"country_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"countryStateId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"country_translation":{"entity":"country_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"countryId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"currency":{"entity":"currency","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"factor":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"symbol":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"isoCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shortName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250,"translatable":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"isSystemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"currency_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"currencyId","primary":"currencyId"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"orders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"currencyId","reference":"salesChannelId","mapping":"sales_channel_currency","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"salesChannelDomains":{"type":"association","relation":"one_to_many","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"promotionDiscountPrices":{"type":"association","relation":"one_to_many","entity":"promotion_discount_prices","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"productExports":{"type":"association","relation":"one_to_many","entity":"product_export","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"itemRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"countryRoundings":{"type":"association","relation":"one_to_many","entity":"currency_country_rounding","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"taxFreeFrom":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"currency_country_rounding":{"entity":"currency_country_rounding","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"itemRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"currencyId","referenceField":"id"},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":0.25},"localField":"countryId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"currency_translation":{"entity":"currency_translation","properties":{"shortName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"currencyId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"custom_field":{"entity":"custom_field","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFieldSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFieldSet":{"type":"association","relation":"many_to_one","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customFieldSetId","referenceField":"id"},"productSearchConfigFields":{"type":"association","relation":"one_to_many","entity":"product_search_config_field","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"customFieldId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"custom_field_set":{"entity":"custom_field_set","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"global":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"association","relation":"one_to_many","entity":"custom_field","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"customFieldSetId","primary":"id"},"relations":{"type":"association","relation":"one_to_many","entity":"custom_field_set_relation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"customFieldSetId","primary":"id"},"products":{"type":"association","relation":"many_to_many","local":"customFieldSetId","reference":"productId","mapping":"product_custom_field_set","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"reversed_inherited":"customFieldSets"},"localField":"id","referenceField":"id"},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"custom_field_set_relation":{"entity":"custom_field_set_relation","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"customFieldSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"entityName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFieldSet":{"type":"association","relation":"many_to_one","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customFieldSetId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"customer":{"entity":"customer","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"groupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"defaultPaymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"lastPaymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"defaultBillingAddressId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"defaultShippingAddressId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"customerNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"company":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500}},"password":{"type":"password","flags":[]},"email":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"vatIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"affiliateCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"campaignCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInEmailSentDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInConfirmDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"hash":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"guest":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"firstLogin":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"lastLogin":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"newsletterSalesChannelIds":{"type":"json_object","properties":[],"flags":{"write_protected":[["system"]]}},"newsletter":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"birthday":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"lastOrderDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"orderCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"orderTotalAmount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"legacyPassword":{"type":"string","flags":[]},"legacyEncoder":{"type":"string","flags":[]},"group":{"type":"association","relation":"many_to_one","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"groupId","referenceField":"id"},"defaultPaymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"defaultPaymentMethodId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"languageId","referenceField":"id"},"lastPaymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"lastPaymentMethodId","referenceField":"id"},"defaultBillingAddress":{"type":"association","relation":"many_to_one","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"defaultBillingAddressId","referenceField":"id"},"defaultShippingAddress":{"type":"association","relation":"many_to_one","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"defaultShippingAddressId","referenceField":"id"},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"salutationId","referenceField":"id"},"addresses":{"type":"association","relation":"one_to_many","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"customerId","primary":"id"},"orderCustomers":{"type":"association","relation":"one_to_many","entity":"order_customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"customerId","primary":"id"},"tags":{"type":"association","relation":"many_to_many","local":"customerId","reference":"tagId","mapping":"customer_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":0.25},"localField":"id","referenceField":"id"},"promotions":{"type":"association","relation":"many_to_many","local":"customerId","reference":"promotionId","mapping":"promotion_persona_customer","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"productReviews":{"type":"association","relation":"one_to_many","entity":"product_review","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"customerId","primary":"id"},"recoveryCustomer":{"type":"association","relation":"one_to_one","entity":"customer_recovery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"customerId"},"remoteAddress":{"type":"Shopware\\Core\\Framework\\DataAbstractionLayer\\Field\\RemoteAddressField","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"tagIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"requestedGroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"requestedGroup":{"type":"association","relation":"many_to_one","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"requestedGroupId","referenceField":"id"},"boundSalesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"boundSalesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"boundSalesChannelId","referenceField":"id"},"wishlists":{"type":"association","relation":"one_to_many","entity":"customer_wishlist","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"customerId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"customer_address":{"entity":"customer_address","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"countryStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"zipcode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"city":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"company":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"street":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"department":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"phoneNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"additionalAddressLine1":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"additionalAddressLine2":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerId","referenceField":"id"},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"countryId","referenceField":"id"},"countryState":{"type":"association","relation":"many_to_one","entity":"country_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"countryStateId","referenceField":"id"},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"salutationId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"customer_group":{"entity":"customer_group","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"displayGross":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"registrationActive":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"registrationTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"registrationIntroduction":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"registrationOnlyCompanyRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"registrationSeoMetaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"groupId","primary":"id"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"customerGroupId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"customer_group_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"customerGroupId","primary":"customerGroupId"},"registrationSalesChannels":{"type":"association","relation":"many_to_many","local":"customerGroupId","reference":"salesChannelId","mapping":"customer_group_registration_sales_channels","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"customer_group_registration_sales_channels":{"entity":"customer_group_registration_sales_channels","properties":{"customerGroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"customerGroup":{"type":"association","relation":"many_to_one","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerGroupId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}}},"customer_group_translation":{"entity":"customer_group_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"registrationTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"registrationIntroduction":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"registrationOnlyCompanyRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"registrationSeoMetaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customerGroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"customerGroup":{"type":"association","relation":"many_to_one","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerGroupId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"customer_recovery":{"entity":"customer_recovery","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"hash":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customer":{"type":"association","relation":"one_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"customer_tag":{"entity":"customer_tag","properties":{"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"tagId","referenceField":"id"}}},"customer_wishlist":{"entity":"customer_wishlist","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"products":{"type":"association","relation":"one_to_many","entity":"customer_wishlist_product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"wishlistId","primary":"id"},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"customer_wishlist_product":{"entity":"customer_wishlist_product","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"wishlistId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"wishlist":{"type":"association","relation":"many_to_one","entity":"customer_wishlist","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"wishlistId","referenceField":"id"},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"dead_message":{"entity":"dead_message","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true,"write_protected":[["system"]]}},"originalMessageClass":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"serializedOriginalMessage":{"type":"blob","flags":{"required":true,"write_protected":[["system"]]}},"handlerClass":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"encrypted":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"errorCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"nextExecutionTime":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"exception":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"exceptionMessage":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"exceptionFile":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"exceptionLine":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"scheduledTaskId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"scheduledTask":{"type":"association","relation":"many_to_one","entity":"scheduled_task","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"scheduledTaskId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"delivery_time":{"entity":"delivery_time","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"min":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"max":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"unit":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"shippingMethods":{"type":"association","relation":"one_to_many","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"deliveryTimeId","primary":"id"},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"deliveryTimeId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"delivery_time_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"deliveryTimeId","primary":"deliveryTimeId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"delivery_time_translation":{"entity":"delivery_time_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"deliveryTimeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"deliveryTime":{"type":"association","relation":"many_to_one","entity":"delivery_time","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"deliveryTimeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"document":{"entity":"document","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"documentTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"fileType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"referencedDocumentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"documentMediaFileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"sent":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"static":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"deepLinkCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"documentType":{"type":"association","relation":"many_to_one","entity":"document_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"documentTypeId","referenceField":"id"},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"orderId","referenceField":"id"},"referencedDocument":{"type":"association","relation":"many_to_one","entity":"document","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"referencedDocumentId","referenceField":"id"},"dependentDocuments":{"type":"association","relation":"one_to_many","entity":"document","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"referencedDocumentId","primary":"id"},"documentMediaFile":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"documentMediaFileId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"document_base_config":{"entity":"document_base_config","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"documentTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"logoId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"filenamePrefix":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"filenameSuffix":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"global":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"documentNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"documentType":{"type":"association","relation":"many_to_one","entity":"document_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"documentTypeId","referenceField":"id"},"logo":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"logoId","referenceField":"id"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"document_base_config_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"documentBaseConfigId","primary":"id"},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"document_base_config_sales_channel":{"entity":"document_base_config_sales_channel","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"documentBaseConfigId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"documentTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"documentType":{"type":"association","relation":"many_to_one","entity":"document_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"documentTypeId","referenceField":"id"},"documentBaseConfig":{"type":"association","relation":"many_to_one","entity":"document_base_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"documentBaseConfigId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"document_type":{"entity":"document_type","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250,"translatable":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"document_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"documentTypeId","primary":"documentTypeId"},"documents":{"type":"association","relation":"one_to_many","entity":"document","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"documentTypeId","primary":"id"},"documentBaseConfigs":{"type":"association","relation":"one_to_many","entity":"document_base_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"documentTypeId","primary":"id"},"documentBaseConfigSalesChannels":{"type":"association","relation":"one_to_many","entity":"document_base_config_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"documentTypeId","primary":"id"},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"document_type_translation":{"entity":"document_type_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"documentTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"documentType":{"type":"association","relation":"many_to_one","entity":"document_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"documentTypeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"event_action":{"entity":"event_action","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"eventName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"actionName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":500}},"rules":{"type":"association","relation":"many_to_many","local":"eventActionId","reference":"ruleId","mapping":"event_action_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"eventActionId","reference":"salesChannelId","mapping":"event_action_sales_channel","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"event_action_rule":{"entity":"event_action_rule","properties":{"eventActionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"eventAction":{"type":"association","relation":"many_to_one","entity":"event_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"eventActionId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"event_action_sales_channel":{"entity":"event_action_sales_channel","properties":{"eventActionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"eventAction":{"type":"association","relation":"many_to_one","entity":"event_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"eventActionId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"}}},"flow":{"entity":"flow","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"eventName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"payload":{"type":"blob","flags":{"write_protected":[["system"]]}},"invalid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"sequences":{"type":"association","relation":"one_to_many","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"flowId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"flow_sequence":{"entity":"flow_sequence","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"flowId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"actionName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"displayGroup":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"trueCase":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"flow":{"type":"association","relation":"many_to_one","entity":"flow","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"flowId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"},"parent":{"type":"association","relation":"many_to_one","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"import_export_file":{"entity":"import_export_file","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"originalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"expireDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"size":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"log":{"type":"association","relation":"one_to_one","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"fileId"},"accessToken":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"import_export_log":{"entity":"import_export_log","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"activity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"state":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"records":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"profileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"fileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"invalidRecordsLogId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"username":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"profileName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"profile":{"type":"association","relation":"many_to_one","entity":"import_export_profile","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"profileId","referenceField":"id"},"file":{"type":"association","relation":"one_to_one","entity":"import_export_file","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"fileId","referenceField":"id"},"invalidRecordsLog":{"type":"association","relation":"one_to_one","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"invalidRecordsLogId","referenceField":"id"},"failedImportLog":{"type":"association","relation":"one_to_one","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"invalidRecordsLogId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"import_export_profile":{"entity":"import_export_profile","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"systemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"sourceEntity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fileType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"delimiter":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"enclosure":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"mapping":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"updateBy":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"importExportLogs":{"type":"association","relation":"one_to_many","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"profileId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"import_export_profile_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"importExportProfileId","primary":"importExportProfileId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"import_export_profile_translation":{"entity":"import_export_profile_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"importExportProfileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"importExportProfile":{"type":"association","relation":"many_to_one","entity":"import_export_profile","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"importExportProfileId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"integration":{"entity":"integration","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"accessKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"secretAccessKey":{"type":"password","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"writeAccess":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"deprecated":{"deprecated_since":"v3","will_be_removed_in":"v4","replaced_by":null}}},"lastUsageAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"admin":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"deletedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"one_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"integrationId"},"aclRoles":{"type":"association","relation":"many_to_many","local":"integrationId","reference":"aclRoleId","mapping":"integration_role","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"integration_role":{"entity":"integration_role","properties":{"integrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"aclRoleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"integration":{"type":"association","relation":"many_to_one","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"integrationId","referenceField":"id"},"role":{"type":"association","relation":"many_to_one","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"aclRoleId","referenceField":"id"}}},"landing_page":{"entity":"landing_page","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"metaTitle":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"landing_page_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"landingPageId","primary":"landingPageId"},"tags":{"type":"association","relation":"many_to_many","local":"landingPageId","reference":"tagId","mapping":"landing_page_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"cmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cmsPage":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"cmsPageId","referenceField":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"landingPageId","reference":"salesChannelId","mapping":"landing_page_sales_channel","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"seoUrls":{"type":"association","relation":"one_to_many","entity":"seo_url","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"foreignKey","primary":"id"},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"landing_page_sales_channel":{"entity":"landing_page_sales_channel","properties":{"landingPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"landingPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"landingPage":{"type":"association","relation":"many_to_one","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"landingPageId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"}}},"landing_page_tag":{"entity":"landing_page_tag","properties":{"landingPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"landingPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"landingPage":{"type":"association","relation":"many_to_one","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"landingPageId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}}},"landing_page_translation":{"entity":"landing_page_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"metaTitle":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"landingPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"landingPage":{"type":"association","relation":"many_to_one","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"landingPageId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"landingPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"language":{"entity":"language","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"localeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"translationCodeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"parent":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"parentId","referenceField":"id"},"locale":{"type":"association","relation":"many_to_one","entity":"locale","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"localeId","referenceField":"id"},"translationCode":{"type":"association","relation":"many_to_one","entity":"locale","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"translationCodeId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"languageId","reference":"salesChannelId","mapping":"sales_channel_language","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"languageId","primary":"id"},"salesChannelDomains":{"type":"association","relation":"one_to_many","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"newsletterRecipients":{"type":"association","relation":"one_to_many","entity":"newsletter_recipient","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"orders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"categoryTranslations":{"type":"association","relation":"one_to_many","entity":"category_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"categoryId"},"countryStateTranslations":{"type":"association","relation":"one_to_many","entity":"country_state_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"countryStateId"},"countryTranslations":{"type":"association","relation":"one_to_many","entity":"country_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"countryId"},"currencyTranslations":{"type":"association","relation":"one_to_many","entity":"currency_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"currencyId"},"customerGroupTranslations":{"type":"association","relation":"one_to_many","entity":"customer_group_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"customerGroupId"},"localeTranslations":{"type":"association","relation":"one_to_many","entity":"locale_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"localeId"},"mediaTranslations":{"type":"association","relation":"one_to_many","entity":"media_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"mediaId"},"paymentMethodTranslations":{"type":"association","relation":"one_to_many","entity":"payment_method_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"paymentMethodId"},"productManufacturerTranslations":{"type":"association","relation":"one_to_many","entity":"product_manufacturer_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productManufacturerId"},"productTranslations":{"type":"association","relation":"one_to_many","entity":"product_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productId"},"shippingMethodTranslations":{"type":"association","relation":"one_to_many","entity":"shipping_method_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"shippingMethodId"},"unitTranslations":{"type":"association","relation":"one_to_many","entity":"unit_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"unitId"},"propertyGroupTranslations":{"type":"association","relation":"one_to_many","entity":"property_group_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"propertyGroupId"},"propertyGroupOptionTranslations":{"type":"association","relation":"one_to_many","entity":"property_group_option_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"propertyGroupOptionId"},"salesChannelTranslations":{"type":"association","relation":"one_to_many","entity":"sales_channel_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"salesChannelId"},"salesChannelTypeTranslations":{"type":"association","relation":"one_to_many","entity":"sales_channel_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"salesChannelTypeId"},"salutationTranslations":{"type":"association","relation":"one_to_many","entity":"salutation_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"salutationId"},"pluginTranslations":{"type":"association","relation":"one_to_many","entity":"plugin_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"pluginId"},"productStreamTranslations":{"type":"association","relation":"one_to_many","entity":"product_stream_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productStreamId"},"stateMachineTranslations":{"type":"association","relation":"one_to_many","entity":"state_machine_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"stateMachineId"},"stateMachineStateTranslations":{"type":"association","relation":"one_to_many","entity":"state_machine_state_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"stateMachineStateId"},"cmsPageTranslations":{"type":"association","relation":"one_to_many","entity":"cms_page_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"cmsPageId"},"cmsSlotTranslations":{"type":"association","relation":"one_to_many","entity":"cms_slot_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"cmsSlotId"},"mailTemplateTranslations":{"type":"association","relation":"one_to_many","entity":"mail_template_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"mailTemplateId"},"mailHeaderFooterTranslations":{"type":"association","relation":"one_to_many","entity":"mail_header_footer_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"mailHeaderFooterId"},"documentTypeTranslations":{"type":"association","relation":"one_to_many","entity":"document_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"documentTypeId"},"numberRangeTypeTranslations":{"type":"association","relation":"one_to_many","entity":"number_range_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"numberRangeTypeId"},"deliveryTimeTranslations":{"type":"association","relation":"one_to_many","entity":"delivery_time_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"deliveryTimeId"},"productSearchKeywords":{"type":"association","relation":"one_to_many","entity":"product_search_keyword","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"productKeywordDictionaries":{"type":"association","relation":"one_to_many","entity":"product_keyword_dictionary","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"mailTemplateTypeTranslations":{"type":"association","relation":"one_to_many","entity":"mail_template_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"mailTemplateTypeId"},"promotionTranslations":{"type":"association","relation":"one_to_many","entity":"promotion_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"promotionId"},"numberRangeTranslations":{"type":"association","relation":"one_to_many","entity":"number_range_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"numberRangeId"},"productReviews":{"type":"association","relation":"one_to_many","entity":"product_review","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"seoUrlTranslations":{"type":"association","relation":"one_to_many","entity":"seo_url","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"taxRuleTypeTranslations":{"type":"association","relation":"one_to_many","entity":"tax_rule_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"taxRuleTypeId"},"productCrossSellingTranslations":{"type":"association","relation":"one_to_many","entity":"product_cross_selling_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productCrossSellingId"},"importExportProfileTranslations":{"type":"association","relation":"one_to_many","entity":"import_export_profile_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"importExportProfileId"},"productSortingTranslations":{"type":"association","relation":"one_to_many","entity":"product_sorting_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productSortingId"},"productFeatureSetTranslations":{"type":"association","relation":"one_to_many","entity":"product_feature_set_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productFeatureSetId"},"appTranslations":{"type":"association","relation":"one_to_many","entity":"app_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"appId"},"actionButtonTranslations":{"type":"association","relation":"one_to_many","entity":"app_action_button_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"appActionButtonId"},"landingPageTranslations":{"type":"association","relation":"one_to_many","entity":"landing_page_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"landingPageId"},"appCmsBlockTranslations":{"type":"association","relation":"one_to_many","entity":"app_cms_block_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"appCmsBlockId"},"productSearchConfig":{"type":"association","relation":"one_to_one","entity":"product_search_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"themeTranslations":{"type":"association","relation":"one_to_many","entity":"theme_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"extension":true},"localField":"id","referenceField":"languageId","primary":"themeId"}}},"locale":{"entity":"locale","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"code":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"territory":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"languages":{"type":"association","relation":"one_to_many","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"localeId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"locale_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"localeId","primary":"localeId"},"users":{"type":"association","relation":"one_to_many","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"localeId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"locale_translation":{"entity":"locale_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"territory":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"localeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"locale":{"type":"association","relation":"many_to_one","entity":"locale","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"localeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"log_entry":{"entity":"log_entry","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"message":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":500}},"level":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"channel":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"context":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":250}},"extra":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":80}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"mail_header_footer":{"entity":"mail_header_footer","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"systemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"headerHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"headerPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"footerHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"footerPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"mail_header_footer_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"mailHeaderFooterId","primary":"mailHeaderFooterId"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"mailHeaderFooterId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"mail_header_footer_translation":{"entity":"mail_header_footer_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"headerHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"headerPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"footerHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"footerPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mailHeaderFooterId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mailHeaderFooter":{"type":"association","relation":"many_to_one","entity":"mail_header_footer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailHeaderFooterId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"mail_template":{"entity":"mail_template","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"mailTemplateTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"systemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"senderName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500,"translatable":true}},"subject":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true,"search_ranking":500,"translatable":true}},"contentHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"allow_html":true,"translatable":true}},"contentPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"allow_html":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"mail_template_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"mailTemplateId","primary":"mailTemplateId"},"mailTemplateType":{"type":"association","relation":"many_to_one","entity":"mail_template_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"mailTemplateTypeId","referenceField":"id"},"media":{"type":"association","relation":"one_to_many","entity":"mail_template_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"mailTemplateId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"mail_template_media":{"entity":"mail_template_media","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mailTemplateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mailTemplate":{"type":"association","relation":"many_to_one","entity":"mail_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailTemplateId","referenceField":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"}}},"mail_template_translation":{"entity":"mail_template_translation","properties":{"senderName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"subject":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"contentHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"contentPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mailTemplateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mailTemplate":{"type":"association","relation":"many_to_one","entity":"mail_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailTemplateId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"mail_template_type":{"entity":"mail_template_type","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250,"translatable":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"availableEntities":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"mail_template_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"mailTemplateTypeId","primary":"mailTemplateTypeId"},"mailTemplates":{"type":"association","relation":"one_to_many","entity":"mail_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mailTemplateTypeId","primary":"id"},"templateData":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"mail_template_type_translation":{"entity":"mail_template_type_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mailTemplateTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mailTemplateType":{"type":"association","relation":"many_to_one","entity":"mail_template_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailTemplateTypeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"main_category":{"entity":"main_category","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"categoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"categoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"category":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"categoryId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media":{"entity":"media","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mediaFolderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mimeType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]],"search_ranking":80}},"fileExtension":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"uploadedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"fileName":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]],"search_ranking":500}},"fileSize":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"mediaTypeRaw":{"type":"blob","flags":{"write_protected":[["system"]]}},"metaData":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"mediaType":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"alt":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250,"translatable":true}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500,"translatable":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"hasFile":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"private":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"thumbnailsRo":{"type":"blob","flags":{"computed":true}},"translations":{"type":"association","relation":"one_to_many","entity":"media_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"mediaId","primary":"mediaId"},"tags":{"type":"association","relation":"many_to_many","local":"mediaId","reference":"tagId","mapping":"media_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":0.25},"localField":"id","referenceField":"id"},"thumbnails":{"type":"association","relation":"one_to_many","entity":"media_thumbnail","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"categories":{"type":"association","relation":"one_to_many","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"productManufacturers":{"type":"association","relation":"one_to_many","entity":"product_manufacturer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"productMedia":{"type":"association","relation":"one_to_many","entity":"product_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"avatarUser":{"type":"association","relation":"one_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"avatarId"},"mediaFolder":{"type":"association","relation":"many_to_one","entity":"media_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaFolderId","referenceField":"id"},"propertyGroupOptions":{"type":"association","relation":"one_to_many","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"mailTemplateMedia":{"type":"association","relation":"one_to_many","entity":"mail_template_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"documentBaseConfigs":{"type":"association","relation":"one_to_many","entity":"document_base_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"logoId","primary":"id"},"shippingMethods":{"type":"association","relation":"one_to_many","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"paymentMethods":{"type":"association","relation":"one_to_many","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"productConfiguratorSettings":{"type":"association","relation":"one_to_many","entity":"product_configurator_setting","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"orderLineItems":{"type":"association","relation":"one_to_many","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"coverId","primary":"id"},"cmsBlocks":{"type":"association","relation":"one_to_many","entity":"cms_block","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"backgroundMediaId","primary":"id"},"cmsSections":{"type":"association","relation":"one_to_many","entity":"cms_section","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"backgroundMediaId","primary":"id"},"cmsPages":{"type":"association","relation":"one_to_many","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"previewMediaId","primary":"id"},"documents":{"type":"association","relation":"one_to_many","entity":"document","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"documentMediaFileId","primary":"id"},"appPaymentMethods":{"type":"association","relation":"one_to_many","entity":"app_payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"originalMediaId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"themes":{"type":"association","relation":"one_to_many","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"previewMediaId","primary":"id"},"themeMedia":{"type":"association","relation":"many_to_many","local":"mediaId","reference":"themeId","mapping":"theme_media","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"id"},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"media_default_folder":{"entity":"media_default_folder","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"associationFields":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"entity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"folder":{"type":"association","relation":"one_to_one","entity":"media_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"defaultFolderId"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media_folder":{"entity":"media_folder","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"useParentConfiguration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"configurationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"defaultFolderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"parent":{"type":"association","relation":"many_to_one","entity":"media_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"media_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"childCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"media":{"type":"association","relation":"one_to_many","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaFolderId","primary":"id"},"defaultFolder":{"type":"association","relation":"one_to_one","entity":"media_default_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"defaultFolderId","referenceField":"id"},"configuration":{"type":"association","relation":"many_to_one","entity":"media_folder_configuration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"configurationId","referenceField":"id"},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":500,"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media_folder_configuration":{"entity":"media_folder_configuration","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"createThumbnails":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"keepAspectRatio":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"thumbnailQuality":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"private":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"noAssociation":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mediaFolders":{"type":"association","relation":"one_to_many","entity":"media_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"configurationId","primary":"id"},"mediaThumbnailSizes":{"type":"association","relation":"many_to_many","local":"mediaFolderConfigurationId","reference":"mediaThumbnailSizeId","mapping":"media_folder_configuration_media_thumbnail_size","entity":"media_thumbnail_size","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"mediaThumbnailSizesRo":{"type":"blob","flags":{"computed":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media_folder_configuration_media_thumbnail_size":{"entity":"media_folder_configuration_media_thumbnail_size","properties":{"mediaFolderConfigurationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"mediaThumbnailSizeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"mediaFolderConfiguration":{"type":"association","relation":"many_to_one","entity":"media_folder_configuration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaFolderConfigurationId","referenceField":"id"},"mediaThumbnailSize":{"type":"association","relation":"many_to_one","entity":"media_thumbnail_size","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaThumbnailSizeId","referenceField":"id"}}},"media_tag":{"entity":"media_tag","properties":{"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"tagId","referenceField":"id"}}},"media_thumbnail":{"entity":"media_thumbnail","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"width":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"write_protected":[["system"]]}},"height":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"write_protected":[["system"]]}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media_thumbnail_size":{"entity":"media_thumbnail_size","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"width":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"height":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaFolderConfigurations":{"type":"association","relation":"many_to_many","local":"mediaThumbnailSizeId","reference":"mediaFolderConfigurationId","mapping":"media_folder_configuration_media_thumbnail_size","entity":"media_folder_configuration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media_translation":{"entity":"media_translation","properties":{"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"alt":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"message_queue_stats":{"entity":"message_queue_stats","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true,"write_protected":[["system"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"size":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"newsletter_recipient":{"entity":"newsletter_recipient","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"email":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"zipCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"city":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"street":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"status":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"hash":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"confirmedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"tags":{"type":"association","relation":"many_to_many","local":"newsletterRecipientId","reference":"tagId","mapping":"newsletter_recipient_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salutationId","referenceField":"id"},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"newsletter_recipient_tag":{"entity":"newsletter_recipient_tag","properties":{"newsletterRecipientId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"newsletterRecipient":{"type":"association","relation":"many_to_one","entity":"newsletter_recipient","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"newsletterRecipientId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}}},"number_range":{"entity":"number_range","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"typeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"global":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"pattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"start":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"type":{"type":"association","relation":"many_to_one","entity":"number_range_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"typeId","referenceField":"id"},"numberRangeSalesChannels":{"type":"association","relation":"one_to_many","entity":"number_range_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"numberRangeId","primary":"id"},"state":{"type":"association","relation":"one_to_one","entity":"number_range_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"numberRangeId"},"translations":{"type":"association","relation":"one_to_many","entity":"number_range_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"numberRangeId","primary":"numberRangeId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"number_range_sales_channel":{"entity":"number_range_sales_channel","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"numberRangeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"numberRangeTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"numberRange":{"type":"association","relation":"many_to_one","entity":"number_range","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"numberRangeId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"numberRangeType":{"type":"association","relation":"many_to_one","entity":"number_range_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"numberRangeTypeId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"number_range_state":{"entity":"number_range_state","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"numberRangeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"lastValue":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"numberRange":{"type":"association","relation":"one_to_one","entity":"number_range","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"numberRangeId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"number_range_translation":{"entity":"number_range_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"numberRangeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"numberRange":{"type":"association","relation":"many_to_one","entity":"number_range","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"numberRangeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"number_range_type":{"entity":"number_range_type","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":500}},"typeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"global":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"numberRanges":{"type":"association","relation":"one_to_many","entity":"number_range","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"typeId","primary":"id"},"numberRangeSalesChannels":{"type":"association","relation":"one_to_many","entity":"number_range_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"numberRangeTypeId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"number_range_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"numberRangeTypeId","primary":"numberRangeTypeId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"number_range_type_translation":{"entity":"number_range_type_translation","properties":{"typeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"numberRangeTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"numberRangeType":{"type":"association","relation":"many_to_one","entity":"number_range_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"numberRangeTypeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"order":{"entity":"order","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"orderNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500}},"billingAddressId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"billingAddressVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderDateTime":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"price":{"type":"json_object","properties":{"netPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"positionPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"rawTotal":{"type":"float","flags":{"required":true,"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"taxStatus":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"amountTotal":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"search_ranking":250}},"amountNet":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"positionPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"taxStatus":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"shippingCosts":{"type":"json_object","properties":{"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencePrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"listPrice":{"type":"json_object","properties":{"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"discount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"percentage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"shippingTotal":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"currencyFactor":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"deepLinkCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"affiliateCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"campaignCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customerComment":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"stateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"stateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"stateId","referenceField":"id"},"ruleIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdById":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"updatedById":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"orderCustomer":{"type":"association","relation":"one_to_one","entity":"order_customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"search_ranking":0.5},"localField":"id","referenceField":"orderId"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"currencyId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"languageId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"addresses":{"type":"association","relation":"one_to_many","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"orderId","primary":"id"},"billingAddress":{"type":"association","relation":"many_to_one","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"billingAddressId","referenceField":"id"},"deliveries":{"type":"association","relation":"one_to_many","entity":"order_delivery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"orderId","primary":"id"},"lineItems":{"type":"association","relation":"one_to_many","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"orderId","primary":"id"},"transactions":{"type":"association","relation":"one_to_many","entity":"order_transaction","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"orderId","primary":"id"},"documents":{"type":"association","relation":"one_to_many","entity":"document","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"orderId","primary":"id"},"tags":{"type":"association","relation":"many_to_many","local":"orderId","reference":"tagId","mapping":"order_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"id","referenceField":"id"},"createdBy":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"createdById","referenceField":"id"},"updatedBy":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"updatedById","referenceField":"id"},"itemRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"totalRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_address":{"entity":"order_address","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"countryStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":80}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"street":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"zipcode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"city":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"company":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500}},"department":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"vatId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"phoneNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"additionalAddressLine1":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"additionalAddressLine2":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"countryId","referenceField":"id"},"countryState":{"type":"association","relation":"many_to_one","entity":"country_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"countryStateId","referenceField":"id"},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"orderId","referenceField":"id"},"orderDeliveries":{"type":"association","relation":"one_to_many","entity":"order_delivery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"shippingOrderAddressId","primary":"id"},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"salutationId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_customer":{"entity":"order_customer","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"email":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":80}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"company":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"vatIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customerNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"order":{"type":"association","relation":"one_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderId","referenceField":"id"},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":0.5},"localField":"customerId","referenceField":"id"},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"salutationId","referenceField":"id"},"remoteAddress":{"type":"Shopware\\Core\\Framework\\DataAbstractionLayer\\Field\\RemoteAddressField","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_delivery":{"entity":"order_delivery","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shippingOrderAddressId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shippingOrderAddressVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"stateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"stateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"stateId","referenceField":"id"},"trackingCodes":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"shippingDateEarliest":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"shippingDateLatest":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"shippingCosts":{"type":"json_object","properties":{"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencePrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"listPrice":{"type":"json_object","properties":{"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"discount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"percentage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderId","referenceField":"id"},"shippingOrderAddress":{"type":"association","relation":"many_to_one","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"shippingOrderAddressId","referenceField":"id"},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"shippingMethodId","referenceField":"id"},"positions":{"type":"association","relation":"one_to_many","entity":"order_delivery_position","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"orderDeliveryId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_delivery_position":{"entity":"order_delivery_position","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"orderDeliveryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderDeliveryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderLineItemId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderLineItemVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"price":{"type":"json_object","properties":{"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencePrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"listPrice":{"type":"json_object","properties":{"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"discount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"percentage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"orderDelivery":{"type":"association","relation":"many_to_one","entity":"order_delivery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderDeliveryId","referenceField":"id"},"orderLineItem":{"type":"association","relation":"many_to_one","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderLineItemId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_line_item":{"entity":"order_line_item","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"parentVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"coverId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cover":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"coverId","referenceField":"id"},"identifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"referencedId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"payload":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"good":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"removable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"stackable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"price":{"type":"json_object","properties":{"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencePrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"listPrice":{"type":"json_object","properties":{"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"discount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"percentage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"priceDefinition":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderId","referenceField":"id"},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"orderDeliveryPositions":{"type":"association","relation":"one_to_many","entity":"order_delivery_position","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"write_protected":[[]]},"localField":"id","referenceField":"orderLineItemId","primary":"id"},"parent":{"type":"association","relation":"many_to_one","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"parentId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_tag":{"entity":"order_tag","properties":{"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"orderId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"tagId","referenceField":"id"}}},"order_transaction":{"entity":"order_transaction","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"paymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"amount":{"type":"json_object","properties":{"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencePrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"listPrice":{"type":"json_object","properties":{"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"discount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"percentage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"stateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"stateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"stateId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderId","referenceField":"id"},"paymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"paymentMethodId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"payment_method":{"entity":"payment_method","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"pluginId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"handlerIdentifier":{"type":"string","flags":[]},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"distinguishableName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]],"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"afterOrderEnabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"availabilityRuleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"formattedHandlerIdentifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"synchronous":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"asynchronous":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"prepared":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"translations":{"type":"association","relation":"one_to_many","entity":"payment_method_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"paymentMethodId","primary":"paymentMethodId"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"availabilityRule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"availabilityRuleId","referenceField":"id"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"paymentMethodId","primary":"id"},"plugin":{"type":"association","relation":"many_to_one","entity":"plugin","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"pluginId","referenceField":"id"},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"lastPaymentMethodId","primary":"id"},"orderTransactions":{"type":"association","relation":"one_to_many","entity":"order_transaction","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"paymentMethodId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"paymentMethodId","reference":"salesChannelId","mapping":"sales_channel_payment_method","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"appPaymentMethod":{"type":"association","relation":"one_to_one","entity":"app_payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"paymentMethodId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"payment_method_translation":{"entity":"payment_method_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"distinguishableName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"paymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"paymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"paymentMethodId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"plugin":{"entity":"plugin","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"baseClass":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"composerName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"autoload":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"managedByComposer":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"author":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"copyright":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"license":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"version":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"upgradeVersion":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"installedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"upgradedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"iconRaw":{"type":"blob","flags":[]},"icon":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true,"translatable":true}},"manufacturerLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"supportLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"changelog":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"plugin_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"pluginId","primary":"pluginId"},"paymentMethods":{"type":"association","relation":"one_to_many","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"pluginId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"plugin_translation":{"entity":"plugin_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true}},"manufacturerLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"supportLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"changelog":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"pluginId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"plugin":{"type":"association","relation":"many_to_one","entity":"plugin","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"pluginId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product":{"entity":"product","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"parentVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"manufacturerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"productManufacturerVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":true}},"unitId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"taxId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":true}},"coverId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"productMediaVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"deliveryTimeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"featureSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true}},"canonicalProductId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"cmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":true}},"price":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true,"required":true}},"productNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500,"required":true}},"stock":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"restockTime":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"availableStock":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"available":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"isCloseout":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"variation":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"runtime":true}},"displayGroup":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"configuratorGroupConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true}},"mainVariantId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"variantRestrictions":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"manufacturerNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"search_ranking":250}},"ean":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"search_ranking":250}},"purchaseSteps":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"maxPurchase":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"minPurchase":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"purchaseUnit":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"referenceUnit":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"shippingFree":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"purchasePrices":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true}},"markAsTopseller":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"weight":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"width":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"height":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"length":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"releaseDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"ratingAverage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"inherited":true}},"categoryTree":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"write_protected":[[]]}},"propertyIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"inherited":true}},"optionIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"inherited":true}},"streamIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"inherited":true}},"tagIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"inherited":true}},"categoryIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"inherited":true}},"childCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"customFieldSetSelectionActive":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true}},"sales":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"metaDescription":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"inherited":true,"search_ranking":500,"translatable":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"inherited":true,"translatable":true}},"metaTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"packUnit":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"packUnitPlural":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"customSearchKeywords":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true,"search_ranking":500,"translatable":true}},"parent":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"deliveryTime":{"type":"association","relation":"many_to_one","entity":"delivery_time","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"deliveryTimeId","referenceField":"id"},"tax":{"type":"association","relation":"many_to_one","entity":"tax","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"taxId","referenceField":"id"},"manufacturer":{"type":"association","relation":"many_to_one","entity":"product_manufacturer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"manufacturerId","referenceField":"id"},"unit":{"type":"association","relation":"many_to_one","entity":"unit","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"unitId","referenceField":"id"},"cover":{"type":"association","relation":"many_to_one","entity":"product_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"coverId","referenceField":"id"},"featureSet":{"type":"association","relation":"many_to_one","entity":"product_feature_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true},"localField":"featureSetId","referenceField":"id"},"cmsPage":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"cmsPageId","referenceField":"id"},"canonicalProduct":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"canonicalProductId","referenceField":"id"},"prices":{"type":"association","relation":"one_to_many","entity":"product_price","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"productId","primary":"id"},"media":{"type":"association","relation":"one_to_many","entity":"product_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"productId","primary":"id"},"crossSellings":{"type":"association","relation":"one_to_many","entity":"product_cross_selling","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"productId","primary":"id"},"crossSellingAssignedProducts":{"type":"association","relation":"one_to_many","entity":"product_cross_selling_assigned_products","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"configuratorSettings":{"type":"association","relation":"one_to_many","entity":"product_configurator_setting","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"visibilities":{"type":"association","relation":"one_to_many","entity":"product_visibility","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"productId","primary":"id"},"searchKeywords":{"type":"association","relation":"one_to_many","entity":"product_search_keyword","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"productReviews":{"type":"association","relation":"one_to_many","entity":"product_review","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"mainCategories":{"type":"association","relation":"one_to_many","entity":"main_category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"seoUrls":{"type":"association","relation":"one_to_many","entity":"seo_url","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"foreignKey","primary":"id"},"orderLineItems":{"type":"association","relation":"one_to_many","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"wishlists":{"type":"association","relation":"one_to_many","entity":"customer_wishlist_product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"options":{"type":"association","relation":"many_to_many","local":"productId","reference":"optionId","mapping":"product_option","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"properties":{"type":"association","relation":"many_to_many","local":"productId","reference":"optionId","mapping":"product_property","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"id"},"categories":{"type":"association","relation":"many_to_many","local":"productId","reference":"categoryId","mapping":"product_category","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true,"search_ranking":0.25},"localField":"id","referenceField":"id"},"streams":{"type":"association","relation":"many_to_many","local":"productId","reference":"productStreamId","mapping":"product_stream_mapping","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"categoriesRo":{"type":"association","relation":"many_to_many","local":"productId","reference":"categoryId","mapping":"product_category_tree","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"write_protected":[[]]},"localField":"id","referenceField":"id"},"tags":{"type":"association","relation":"many_to_many","local":"productId","reference":"tagId","mapping":"product_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"inherited":true,"search_ranking":0.25},"localField":"id","referenceField":"id"},"customFieldSets":{"type":"association","relation":"many_to_many","local":"productId","reference":"customFieldSetId","mapping":"product_custom_field_set","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"product_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true,"required":true},"localField":"id","referenceField":"productId","primary":"productId"},"cheapestPrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"inherited":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_category":{"entity":"product_category","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"categoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"categoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"category":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"categoryId","referenceField":"id"}}},"product_category_tree":{"entity":"product_category_tree","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"categoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"categoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"category":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"categoryId","referenceField":"id"}}},"product_configurator_setting":{"entity":"product_configurator_setting","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"optionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"price":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"option":{"type":"association","relation":"many_to_one","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"optionId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_cross_selling":{"entity":"product_cross_selling","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"sortBy":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"sortDirection":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"limit":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"reversed_inherited":"crossSellings"},"localField":"productId","referenceField":"id"},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"},"assignedProducts":{"type":"association","relation":"one_to_many","entity":"product_cross_selling_assigned_products","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"crossSellingId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"product_cross_selling_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"productCrossSellingId","primary":"productCrossSellingId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_cross_selling_assigned_products":{"entity":"product_cross_selling_assigned_products","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"crossSellingId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"crossSelling":{"type":"association","relation":"many_to_one","entity":"product_cross_selling","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"crossSellingId","referenceField":"id"},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_cross_selling_translation":{"entity":"product_cross_selling_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productCrossSellingId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productCrossSelling":{"type":"association","relation":"many_to_one","entity":"product_cross_selling","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productCrossSellingId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product_custom_field_set":{"entity":"product_custom_field_set","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"customFieldSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"customFieldSet":{"type":"association","relation":"many_to_one","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customFieldSetId","referenceField":"id"}}},"product_export":{"entity":"product_export","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"storefrontSalesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannelDomainId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fileName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"accessKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"encoding":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fileFormat":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"includeVariants":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"generateByCronjob":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"generatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"headerTemplate":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true}},"bodyTemplate":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true}},"footerTemplate":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true}},"pausedSchedule":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"},"storefrontSalesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"storefrontSalesChannelId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"salesChannelDomain":{"type":"association","relation":"many_to_one","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelDomainId","referenceField":"id"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"currencyId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_feature_set":{"entity":"product_feature_set","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"features":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true,"reversed_inherited":"featureSet"},"localField":"id","referenceField":"featureSetId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"product_feature_set_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"productFeatureSetId","primary":"productFeatureSetId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_feature_set_translation":{"entity":"product_feature_set_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productFeatureSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productFeatureSet":{"type":"association","relation":"many_to_one","entity":"product_feature_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productFeatureSetId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product_keyword_dictionary":{"entity":"product_keyword_dictionary","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"keyword":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"reversed":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"computed":true}},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product_manufacturer":{"entity":"product_manufacturer","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"link":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true,"reversed_inherited":"manufacturer"},"localField":"id","referenceField":"manufacturerId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"product_manufacturer_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"productManufacturerId","primary":"productManufacturerId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_manufacturer_translation":{"entity":"product_manufacturer_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productManufacturerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productManufacturer":{"type":"association","relation":"many_to_one","entity":"product_manufacturer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productManufacturerId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"productManufacturerVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"product_media":{"entity":"product_media","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"reversed_inherited":"media"},"localField":"productId","referenceField":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_option":{"entity":"product_option","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"optionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"option":{"type":"association","relation":"many_to_one","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"optionId","referenceField":"id"}}},"product_price":{"entity":"product_price","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"price":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantityStart":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantityEnd":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"reversed_inherited":"prices"},"localField":"productId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_property":{"entity":"product_property","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"optionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"option":{"type":"association","relation":"many_to_one","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"optionId","referenceField":"id"}}},"product_review":{"entity":"product_review","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"externalUser":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":250}},"externalEmail":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":250}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":80}},"content":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":80,"allow_html":true}},"points":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"status":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"comment":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":0.25},"localField":"productId","referenceField":"id"},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":250},"localField":"customerId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_search_config":{"entity":"product_search_config","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"andLogic":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"minSearchLength":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"excludedTerms":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"language":{"type":"association","relation":"one_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"configFields":{"type":"association","relation":"one_to_many","entity":"product_search_config_field","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"searchConfigId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_search_config_field":{"entity":"product_search_config_field","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"searchConfigId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFieldId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"field":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"tokenize":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"searchable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"ranking":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"searchConfig":{"type":"association","relation":"many_to_one","entity":"product_search_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"searchConfigId","referenceField":"id"},"customField":{"type":"association","relation":"many_to_one","entity":"custom_field","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customFieldId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_search_keyword":{"entity":"product_search_keyword","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"keyword":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"ranking":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_sorting":{"entity":"product_sorting","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"locked":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"computed":true}},"key":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"product_sorting_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"inherited":true,"required":true},"localField":"id","referenceField":"productSortingId","primary":"productSortingId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_sorting_translation":{"entity":"product_sorting_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productSortingId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productSorting":{"type":"association","relation":"many_to_one","entity":"product_sorting","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productSortingId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product_stream":{"entity":"product_stream","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"apiFilter":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"invalid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"product_stream_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"productStreamId","primary":"productStreamId"},"filters":{"type":"association","relation":"one_to_many","entity":"product_stream_filter","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"productCrossSellings":{"type":"association","relation":"one_to_many","entity":"product_cross_selling","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"productExports":{"type":"association","relation":"one_to_many","entity":"product_export","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"categories":{"type":"association","relation":"one_to_many","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_stream_filter":{"entity":"product_stream_filter","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"field":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"operator":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"value":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"parameters":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"},"parent":{"type":"association","relation":"many_to_one","entity":"product_stream_filter","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"queries":{"type":"association","relation":"one_to_many","entity":"product_stream_filter","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_stream_mapping":{"entity":"product_stream_mapping","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"}}},"product_stream_translation":{"entity":"product_stream_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product_tag":{"entity":"product_tag","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}}},"product_translation":{"entity":"product_translation","properties":{"metaDescription":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"metaTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"packUnit":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"packUnitPlural":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customSearchKeywords":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"product_visibility":{"entity":"product_visibility","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"primary_key":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"visibility":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion":{"entity":"promotion","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"validFrom":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"validUntil":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"maxRedemptionsGlobal":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"maxRedemptionsPerCustomer":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"exclusive":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"code":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"useCodes":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"useIndividualCodes":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"individualCodePattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"useSetGroups":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customerRestriction":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"preventCombination":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"orderCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"ordersPerCustomerCount":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"setgroups":{"type":"association","relation":"one_to_many","entity":"promotion_setgroup","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"promotion_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"discounts":{"type":"association","relation":"one_to_many","entity":"promotion_discount","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"individualCodes":{"type":"association","relation":"one_to_many","entity":"promotion_individual_code","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"personaRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_persona_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"personaCustomers":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"customerId","mapping":"promotion_persona_customer","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"orderRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_order_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"cartRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_cart_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"promotion_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"promotionId","primary":"promotionId"},"exclusionIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"promotion_cart_rule":{"entity":"promotion_cart_rule","properties":{"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"promotion_discount":{"entity":"promotion_discount","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"scope":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"value":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"considerAdvancedRules":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"maxValue":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"sorterKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"applierKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"usageKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"pickerKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"discountRules":{"type":"association","relation":"many_to_many","local":"discountId","reference":"ruleId","mapping":"promotion_discount_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"promotionDiscountPrices":{"type":"association","relation":"one_to_many","entity":"promotion_discount_prices","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"discountId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion_discount_prices":{"entity":"promotion_discount_prices","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"discountId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"promotionDiscount":{"type":"association","relation":"many_to_one","entity":"promotion_discount","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"discountId","referenceField":"id"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"currencyId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion_discount_rule":{"entity":"promotion_discount_rule","properties":{"discountId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"discount":{"type":"association","relation":"many_to_one","entity":"promotion_discount","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"discountId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"promotion_individual_code":{"entity":"promotion_individual_code","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"code":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"payload":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion_order_rule":{"entity":"promotion_order_rule","properties":{"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"promotion_persona_customer":{"entity":"promotion_persona_customer","properties":{"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerId","referenceField":"id"}}},"promotion_persona_rule":{"entity":"promotion_persona_rule","properties":{"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"promotion_sales_channel":{"entity":"promotion_sales_channel","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion_setgroup":{"entity":"promotion_setgroup","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"packagerKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"sorterKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"value":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"setGroupRules":{"type":"association","relation":"many_to_many","local":"setgroupId","reference":"ruleId","mapping":"promotion_setgroup_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion_setgroup_rule":{"entity":"promotion_setgroup_rule","properties":{"setgroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"setgroup":{"type":"association","relation":"many_to_one","entity":"promotion_setgroup","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"setgroupId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"promotion_translation":{"entity":"promotion_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"property_group":{"entity":"property_group","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"displayType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"sortingType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"filterable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"visibleOnProductDetailPage":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"options":{"type":"association","relation":"one_to_many","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"groupId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"property_group_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"propertyGroupId","primary":"propertyGroupId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"property_group_option":{"entity":"property_group_option","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"groupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"colorHexCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"group":{"type":"association","relation":"many_to_one","entity":"property_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"groupId","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"property_group_option_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"propertyGroupOptionId","primary":"propertyGroupOptionId"},"productConfiguratorSettings":{"type":"association","relation":"one_to_many","entity":"product_configurator_setting","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"optionId","primary":"id"},"productProperties":{"type":"association","relation":"many_to_many","local":"optionId","reference":"productId","mapping":"product_property","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"reversed_inherited":"properties"},"localField":"id","referenceField":"id"},"productOptions":{"type":"association","relation":"many_to_many","local":"optionId","reference":"productId","mapping":"product_option","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"property_group_option_translation":{"entity":"property_group_option_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"propertyGroupOptionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"propertyGroupOption":{"type":"association","relation":"many_to_one","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"propertyGroupOptionId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"property_group_translation":{"entity":"property_group_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"propertyGroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"propertyGroup":{"type":"association","relation":"many_to_one","entity":"property_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"propertyGroupId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"rule":{"entity":"rule","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"payload":{"type":"blob","flags":{"write_protected":[["system"]]}},"invalid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"moduleTypes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"conditions":{"type":"association","relation":"one_to_many","entity":"rule_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"ruleId","primary":"id"},"productPrices":{"type":"association","relation":"one_to_many","entity":"product_price","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"ruleId","primary":"id"},"shippingMethodPrices":{"type":"association","relation":"one_to_many","entity":"shipping_method_price","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"ruleId","primary":"id"},"shippingMethodPriceCalculations":{"type":"association","relation":"one_to_many","entity":"shipping_method_price","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"calculationRuleId","primary":"id"},"shippingMethods":{"type":"association","relation":"one_to_many","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"availabilityRuleId","primary":"id"},"paymentMethods":{"type":"association","relation":"one_to_many","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"availabilityRuleId","primary":"id"},"personaPromotions":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"promotionId","mapping":"promotion_persona_rule","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"flowSequences":{"type":"association","relation":"one_to_many","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"ruleId","primary":"id"},"orderPromotions":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"promotionId","mapping":"promotion_order_rule","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"cartPromotions":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"promotionId","mapping":"promotion_cart_rule","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"promotionDiscounts":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"discountId","mapping":"promotion_discount_rule","entity":"promotion_discount","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"promotionSetGroups":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"setgroupId","mapping":"promotion_setgroup_rule","entity":"promotion_setgroup","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"eventActions":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"eventActionId","mapping":"event_action_rule","entity":"event_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"deprecated":{"deprecated_since":"v6.4.6","will_be_removed_in":"v6.5.0","replaced_by":null}},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"rule_condition":{"entity":"rule_condition","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"value":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"},"parent":{"type":"association","relation":"many_to_one","entity":"rule_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"rule_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"sales_channel":{"entity":"sales_channel","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"typeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customerGroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"paymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"analyticsId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"navigationCategoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"navigationCategoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"navigationCategoryDepth":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"footerCategoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"footerCategoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"serviceCategoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"serviceCategoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mailHeaderFooterId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"hreflangDefaultDomainId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"shortName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"taxCalculationType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"accessKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"configuration":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"hreflangActive":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"maintenance":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"maintenanceIpWhitelist":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"sales_channel_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"salesChannelId","primary":"salesChannelId"},"currencies":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"currencyId","mapping":"sales_channel_currency","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"languages":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"languageId","mapping":"sales_channel_language","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"countries":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"countryId","mapping":"sales_channel_country","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"paymentMethods":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"paymentMethodId","mapping":"sales_channel_payment_method","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"paymentMethodIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"shippingMethods":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"shippingMethodId","mapping":"sales_channel_shipping_method","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"type":{"type":"association","relation":"many_to_one","entity":"sales_channel_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"typeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"languageId","referenceField":"id"},"customerGroup":{"type":"association","relation":"many_to_one","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerGroupId","referenceField":"id"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"currencyId","referenceField":"id"},"paymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"paymentMethodId","referenceField":"id"},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"shippingMethodId","referenceField":"id"},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"countryId","referenceField":"id"},"orders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelId","primary":"id"},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelId","primary":"id"},"homeCmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"homeCmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"homeCmsPage":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"homeCmsPageId","referenceField":"id"},"homeSlotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"homeEnabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"homeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"homeMetaTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"homeMetaDescription":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"homeKeywords":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"domains":{"type":"association","relation":"one_to_many","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"systemConfigs":{"type":"association","relation":"one_to_many","entity":"system_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"navigationCategory":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"navigationCategoryId","referenceField":"id"},"footerCategory":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"footerCategoryId","referenceField":"id"},"serviceCategory":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"serviceCategoryId","referenceField":"id"},"productVisibilities":{"type":"association","relation":"one_to_many","entity":"product_visibility","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"hreflangDefaultDomain":{"type":"association","relation":"one_to_one","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"hreflangDefaultDomainId","referenceField":"id"},"mailHeaderFooter":{"type":"association","relation":"many_to_one","entity":"mail_header_footer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailHeaderFooterId","referenceField":"id"},"newsletterRecipients":{"type":"association","relation":"one_to_many","entity":"newsletter_recipient","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelId","primary":"id"},"numberRangeSalesChannels":{"type":"association","relation":"one_to_many","entity":"number_range_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"promotionSalesChannels":{"type":"association","relation":"one_to_many","entity":"promotion_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"documentBaseConfigSalesChannels":{"type":"association","relation":"one_to_many","entity":"document_base_config_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"productReviews":{"type":"association","relation":"one_to_many","entity":"product_review","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelId","primary":"id"},"seoUrls":{"type":"association","relation":"one_to_many","entity":"seo_url","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"seoUrlTemplates":{"type":"association","relation":"one_to_many","entity":"seo_url_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"mainCategories":{"type":"association","relation":"one_to_many","entity":"main_category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"productExports":{"type":"association","relation":"one_to_many","entity":"product_export","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelId","primary":"id"},"analytics":{"type":"association","relation":"one_to_one","entity":"sales_channel_analytics","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"analyticsId","referenceField":"id"},"customerGroupsRegistrations":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"customerGroupId","mapping":"customer_group_registration_sales_channels","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"eventActions":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"eventActionId","mapping":"event_action_sales_channel","entity":"event_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"deprecated":{"deprecated_since":"v6.4.6","will_be_removed_in":"v6.5.0","replaced_by":null}},"localField":"id","referenceField":"id"},"landingPages":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"landingPageId","mapping":"landing_page_sales_channel","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"boundCustomers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"boundSalesChannelId","primary":"id"},"wishlists":{"type":"association","relation":"one_to_many","entity":"customer_wishlist","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"themes":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"themeId","mapping":"theme_sales_channel","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"id"},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"sales_channel_analytics":{"entity":"sales_channel_analytics","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"trackingId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"trackOrders":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"anonymizeIp":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"salesChannel":{"type":"association","relation":"one_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"analyticsId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"sales_channel_country":{"entity":"sales_channel_country","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"countryId","referenceField":"id"}}},"sales_channel_currency":{"entity":"sales_channel_currency","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"currencyId","referenceField":"id"}}},"sales_channel_domain":{"entity":"sales_channel_domain","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"snippetSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"languageId","referenceField":"id"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"currencyId","referenceField":"id"},"snippetSet":{"type":"association","relation":"many_to_one","entity":"snippet_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"snippetSetId","referenceField":"id"},"salesChannelDefaultHreflang":{"type":"association","relation":"one_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"hreflangDefaultDomainId"},"productExports":{"type":"association","relation":"one_to_many","entity":"product_export","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelDomainId","primary":"id"},"hreflangUseOnlyLocale":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"sales_channel_language":{"entity":"sales_channel_language","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"sales_channel_payment_method":{"entity":"sales_channel_payment_method","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"paymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"paymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"paymentMethodId","referenceField":"id"}}},"sales_channel_shipping_method":{"entity":"sales_channel_shipping_method","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"shippingMethodId","referenceField":"id"}}},"sales_channel_translation":{"entity":"sales_channel_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"homeSlotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"homeEnabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"homeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"homeMetaTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"homeMetaDescription":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"homeKeywords":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"sales_channel_type":{"entity":"sales_channel_type","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"coverUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"iconName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"screenshotUrls":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"manufacturer":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"descriptionLong":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"sales_channel_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"salesChannelTypeId","primary":"salesChannelTypeId"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"typeId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"sales_channel_type_translation":{"entity":"sales_channel_type_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"manufacturer":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"descriptionLong":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salesChannelTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"salesChannelType":{"type":"association","relation":"many_to_one","entity":"sales_channel_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelTypeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"salutation":{"entity":"salutation","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"salutationKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"displayName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"letterName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"salutation_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"salutationId","primary":"salutationId"},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"salutationId","primary":"id"},"customerAddresses":{"type":"association","relation":"one_to_many","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"salutationId","primary":"id"},"orderCustomers":{"type":"association","relation":"one_to_many","entity":"order_customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"salutationId","primary":"id"},"orderAddresses":{"type":"association","relation":"one_to_many","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"salutationId","primary":"id"},"newsletterRecipients":{"type":"association","relation":"one_to_many","entity":"newsletter_recipient","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"salutationId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"salutation_translation":{"entity":"salutation_translation","properties":{"displayName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"letterName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salutationId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"scheduled_task":{"entity":"scheduled_task","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"scheduledTaskClass":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"runInterval":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"status":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"lastExecutionTime":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"nextExecutionTime":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"deadMessages":{"type":"association","relation":"one_to_many","entity":"dead_message","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"scheduledTaskId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"script":{"entity":"script","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"script":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"hook":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"seo_url":{"entity":"seo_url","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"foreignKey":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"routeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"pathInfo":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"seoPathInfo":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"isCanonical":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"isModified":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"isDeleted":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"seo_url_template":{"entity":"seo_url_template","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"entityName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"routeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"template":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_empty_string":true}},"isValid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"shipping_method":{"entity":"shipping_method","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"availabilityRuleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"deliveryTimeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"taxType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"taxId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"deliveryTime":{"type":"association","relation":"many_to_one","entity":"delivery_time","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"deliveryTimeId","referenceField":"id"},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":80,"translatable":true}},"trackingUrl":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"shipping_method_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"shippingMethodId","primary":"shippingMethodId"},"availabilityRule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"availabilityRuleId","referenceField":"id"},"prices":{"type":"association","relation":"one_to_many","entity":"shipping_method_price","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"shippingMethodId","primary":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"tags":{"type":"association","relation":"many_to_many","local":"shippingMethodId","reference":"tagId","mapping":"shipping_method_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"id"},"orderDeliveries":{"type":"association","relation":"one_to_many","entity":"order_delivery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"shippingMethodId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"shippingMethodId","reference":"salesChannelId","mapping":"sales_channel_shipping_method","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"shippingMethodId","primary":"id"},"tax":{"type":"association","relation":"many_to_one","entity":"tax","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"taxId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"shipping_method_price":{"entity":"shipping_method_price","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"calculation":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"calculationRuleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"quantityStart":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"quantityEnd":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"currencyPrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"shippingMethodId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"},"calculationRule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"calculationRuleId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"shipping_method_tag":{"entity":"shipping_method_tag","properties":{"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"shippingMethodId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}}},"shipping_method_translation":{"entity":"shipping_method_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"trackingUrl":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"shippingMethodId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"snippet":{"entity":"snippet","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"setId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"translationKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"value":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"allow_html":true,"allow_empty_string":true}},"author":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"set":{"type":"association","relation":"many_to_one","entity":"snippet_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"setId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"snippet_set":{"entity":"snippet_set","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"baseFile":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"iso":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"snippets":{"type":"association","relation":"one_to_many","entity":"snippet","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"setId","primary":"id"},"salesChannelDomains":{"type":"association","relation":"one_to_many","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"snippetSetId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"state_machine":{"entity":"state_machine","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"states":{"type":"association","relation":"one_to_many","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"stateMachineId","primary":"id"},"transitions":{"type":"association","relation":"one_to_many","entity":"state_machine_transition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"stateMachineId","primary":"id"},"initialStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"translations":{"type":"association","relation":"one_to_many","entity":"state_machine_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"stateMachineId","primary":"stateMachineId"},"historyEntries":{"type":"association","relation":"one_to_many","entity":"state_machine_history","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"stateMachineId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"state_machine_history":{"entity":"state_machine_history","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"stateMachineId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"stateMachine":{"type":"association","relation":"many_to_one","entity":"state_machine","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"stateMachineId","referenceField":"id"},"entityName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"entityId":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fromStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fromStateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"fromStateId","referenceField":"id"},"toStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"toStateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"toStateId","referenceField":"id"},"transitionActionName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"state_machine_state":{"entity":"state_machine_state","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"stateMachineId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"stateMachine":{"type":"association","relation":"many_to_one","entity":"state_machine","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"stateMachineId","referenceField":"id"},"fromStateMachineTransitions":{"type":"association","relation":"one_to_many","entity":"state_machine_transition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"fromStateId","primary":"id"},"toStateMachineTransitions":{"type":"association","relation":"one_to_many","entity":"state_machine_transition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"toStateId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"state_machine_state_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"stateMachineStateId","primary":"stateMachineStateId"},"orderTransactions":{"type":"association","relation":"one_to_many","entity":"order_transaction","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"stateId","primary":"id"},"orderDeliveries":{"type":"association","relation":"one_to_many","entity":"order_delivery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"stateId","primary":"id"},"orders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"stateId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"toStateMachineHistoryEntries":{"type":"association","relation":"one_to_many","entity":"state_machine_history","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"toStateId","primary":"id"},"fromStateMachineHistoryEntries":{"type":"association","relation":"one_to_many","entity":"state_machine_history","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"fromStateId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"state_machine_state_translation":{"entity":"state_machine_state_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"stateMachineStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"stateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"stateMachineStateId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"state_machine_transition":{"entity":"state_machine_transition","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"actionName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"stateMachineId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"stateMachine":{"type":"association","relation":"many_to_one","entity":"state_machine","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"stateMachineId","referenceField":"id"},"fromStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fromStateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"fromStateId","referenceField":"id"},"toStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"toStateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"toStateId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"state_machine_translation":{"entity":"state_machine_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"stateMachineId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"stateMachine":{"type":"association","relation":"many_to_one","entity":"state_machine","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"stateMachineId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"system_config":{"entity":"system_config","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"configurationKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"configurationValue":{"type":"json_object","properties":{"_value":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"tag":{"entity":"tag","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"products":{"type":"association","relation":"many_to_many","local":"tagId","reference":"productId","mapping":"product_tag","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"media":{"type":"association","relation":"many_to_many","local":"tagId","reference":"mediaId","mapping":"media_tag","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"categories":{"type":"association","relation":"many_to_many","local":"tagId","reference":"categoryId","mapping":"category_tag","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"customers":{"type":"association","relation":"many_to_many","local":"tagId","reference":"customerId","mapping":"customer_tag","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"orders":{"type":"association","relation":"many_to_many","local":"tagId","reference":"orderId","mapping":"order_tag","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"shippingMethods":{"type":"association","relation":"many_to_many","local":"tagId","reference":"shippingMethodId","mapping":"shipping_method_tag","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"newsletterRecipients":{"type":"association","relation":"many_to_many","local":"tagId","reference":"newsletterRecipientId","mapping":"newsletter_recipient_tag","entity":"newsletter_recipient","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"landingPages":{"type":"association","relation":"many_to_many","local":"tagId","reference":"landingPageId","mapping":"landing_page_tag","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"tax":{"entity":"tax","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"taxRate":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"since":"6.4.0.0"}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true,"reversed_inherited":"tax"},"localField":"id","referenceField":"taxId","primary":"id"},"rules":{"type":"association","relation":"one_to_many","entity":"tax_rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"taxId","primary":"id"},"shippingMethods":{"type":"association","relation":"one_to_many","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"taxId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"tax_rule":{"entity":"tax_rule","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"taxRuleTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRate":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"data":{"type":"json_object","properties":{"states":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"zipCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"fromZipCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"toZipCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"taxId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"type":{"type":"association","relation":"many_to_one","entity":"tax_rule_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"taxRuleTypeId","referenceField":"id"},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"countryId","referenceField":"id"},"tax":{"type":"association","relation":"many_to_one","entity":"tax","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"taxId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"tax_rule_type":{"entity":"tax_rule_type","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[[]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"typeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"rules":{"type":"association","relation":"one_to_many","entity":"tax_rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"taxRuleTypeId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"tax_rule_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"taxRuleTypeId","primary":"taxRuleTypeId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"tax_rule_type_translation":{"entity":"tax_rule_type_translation","properties":{"typeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"taxRuleTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"taxRuleType":{"type":"association","relation":"many_to_one","entity":"tax_rule_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"taxRuleTypeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"theme":{"entity":"theme","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"author":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"labels":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"helpTexts":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"previewMediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"parentThemeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"baseConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"configValues":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"translations":{"type":"association","relation":"one_to_many","entity":"theme_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"themeId","primary":"themeId"},"salesChannels":{"type":"association","relation":"many_to_many","local":"themeId","reference":"salesChannelId","mapping":"theme_sales_channel","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"media":{"type":"association","relation":"many_to_many","local":"themeId","reference":"mediaId","mapping":"theme_media","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"id"},"previewMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"previewMediaId","referenceField":"id"},"childThemes":{"type":"association","relation":"one_to_many","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"parentThemeId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"theme_media":{"entity":"theme_media","properties":{"themeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"theme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"themeId","referenceField":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaId","referenceField":"id"}}},"theme_sales_channel":{"entity":"theme_sales_channel","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"themeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"theme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"themeId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"}}},"theme_translation":{"entity":"theme_translation","properties":{"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"labels":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"helpTexts":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"themeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"theme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"themeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"unit":{"entity":"unit","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"shortCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":80,"translatable":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true,"reversed_inherited":"unit"},"localField":"id","referenceField":"unitId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"unit_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"unitId","primary":"unitId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"unit_translation":{"entity":"unit_translation","properties":{"shortCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"unitId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"unit":{"type":"association","relation":"many_to_one","entity":"unit","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"unitId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"user":{"entity":"user","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"localeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"avatarId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"username":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"password":{"type":"password","flags":{"required":true}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":250}},"email":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"admin":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"lastUpdatedPasswordAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"timeZone":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"locale":{"type":"association","relation":"many_to_one","entity":"locale","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"localeId","referenceField":"id"},"avatarMedia":{"type":"association","relation":"one_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"avatarId","referenceField":"id"},"media":{"type":"association","relation":"one_to_many","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"userId","primary":"id"},"accessKeys":{"type":"association","relation":"one_to_many","entity":"user_access_key","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"userId","primary":"id"},"configs":{"type":"association","relation":"one_to_many","entity":"user_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"userId","primary":"id"},"stateMachineHistoryEntries":{"type":"association","relation":"one_to_many","entity":"state_machine_history","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"userId","primary":"id"},"importExportLogEntries":{"type":"association","relation":"one_to_many","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"userId","primary":"id"},"aclRoles":{"type":"association","relation":"many_to_many","local":"userId","reference":"aclRoleId","mapping":"acl_user_role","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"recoveryUser":{"type":"association","relation":"one_to_one","entity":"user_recovery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"userId"},"storeToken":{"type":"string","flags":[]},"createdOrders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"createdById","primary":"id"},"updatedOrders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"updatedById","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"user_access_key":{"entity":"user_access_key","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"accessKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"secretAccessKey":{"type":"password","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"writeAccess":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"deprecated":{"deprecated_since":"v6.4.0","will_be_removed_in":"v6.5.0","replaced_by":null}}},"lastUsageAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"user_config":{"entity":"user_config","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"key":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"value":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"user_recovery":{"entity":"user_recovery","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"hash":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"user":{"type":"association","relation":"one_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"version":{"entity":"version","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"commits":{"type":"association","relation":"one_to_many","entity":"version_commit","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"versionId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"version_commit":{"entity":"version_commit","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"integrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"isMerge":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"message":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":500}},"data":{"type":"association","relation":"one_to_many","entity":"version_commit_data","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"versionCommitId","primary":"id"},"version":{"type":"association","relation":"many_to_one","entity":"version","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"versionId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"version_commit_data":{"entity":"version_commit_data","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"versionCommitId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"commit":{"type":"association","relation":"many_to_one","entity":"version_commit","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"versionCommitId","referenceField":"id"},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"integrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"entityName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"entityId":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"action":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":80}},"payload":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":80}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"webhook":{"entity":"webhook","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"eventName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"errorCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"webhook_event_log":{"entity":"webhook_event_log","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"appName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"webhookName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"eventName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"deliveryStatus":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"timestamp":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"processingTime":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appVersion":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"requestContent":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"responseContent":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"responseStatusCode":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"responseReasonPhrase":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"serializedWebhookMessage":{"type":"blob","flags":{"required":true,"write_protected":[["system"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}}} \ No newline at end of file +{"acl_role":{"entity":"acl_role","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"privileges":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"deletedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"users":{"type":"association","relation":"many_to_many","local":"aclRoleId","reference":"userId","mapping":"acl_user_role","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"app":{"type":"association","relation":"one_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"aclRoleId"},"integrations":{"type":"association","relation":"many_to_many","local":"aclRoleId","reference":"integrationId","mapping":"integration_role","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"acl_user_role":{"entity":"acl_user_role","properties":{"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"aclRoleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"aclRole":{"type":"association","relation":"many_to_one","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"aclRoleId","referenceField":"id"}}},"app":{"entity":"app","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"author":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"copyright":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"license":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"configurable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"privacy":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"version":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"iconRaw":{"type":"blob","flags":[]},"icon":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"appSecret":{"type":"string","flags":{"write_protected":[["system"]]}},"modules":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mainModule":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"cookies":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"translations":{"type":"association","relation":"one_to_many","entity":"app_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appId","primary":"appId"},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"privacyPolicyExtensions":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"since":"6.4.1.0","translatable":true}},"integrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"integration":{"type":"association","relation":"one_to_one","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"integrationId","referenceField":"id"},"aclRoleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"aclRole":{"type":"association","relation":"one_to_one","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"aclRoleId","referenceField":"id"},"customFieldSets":{"type":"association","relation":"one_to_many","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"actionButtons":{"type":"association","relation":"one_to_many","entity":"app_action_button","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"templates":{"type":"association","relation":"one_to_many","entity":"app_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"scripts":{"type":"association","relation":"one_to_many","entity":"script","flags":{"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"webhooks":{"type":"association","relation":"one_to_many","entity":"webhook","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"paymentMethods":{"type":"association","relation":"one_to_many","entity":"app_payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"cmsBlocks":{"type":"association","relation":"one_to_many","entity":"app_cms_block","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"app_action_button":{"entity":"app_action_button","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"entity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"view":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"action":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"openNewTab":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"app_action_button_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appActionButtonId","primary":"appActionButtonId"},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"app_action_button_translation":{"entity":"app_action_button_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"appActionButtonId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"appActionButton":{"type":"association","relation":"many_to_one","entity":"app_action_button","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appActionButtonId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"app_cms_block":{"entity":"app_cms_block","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"block":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"template":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"styles":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"app_cms_block_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appCmsBlockId","primary":"appCmsBlockId"},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"app_cms_block_translation":{"entity":"app_cms_block_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"appCmsBlockId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"appCmsBlock":{"type":"association","relation":"many_to_one","entity":"app_cms_block","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appCmsBlockId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"app_payment_method":{"entity":"app_payment_method","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"appName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"identifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"payUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"finalizeUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"validateUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"captureUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"originalMediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"originalMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"originalMediaId","referenceField":"id"},"paymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"paymentMethod":{"type":"association","relation":"one_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"paymentMethodId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"app_template":{"entity":"app_template","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"template":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"app_translation":{"entity":"app_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"privacyPolicyExtensions":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"since":"6.4.1.0"}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"category":{"entity":"category","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"parentVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"afterCategoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"afterCategoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"displayNestedProducts":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"breadcrumb":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"translatable":true}},"level":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"path":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"childCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productAssignmentType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"visible":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"linkType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"internalLink":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"externalLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"linkNewTab":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"metaTitle":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"parent":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"category_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"categoryId","primary":"categoryId"},"products":{"type":"association","relation":"many_to_many","local":"categoryId","reference":"productId","mapping":"product_category","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"reversed_inherited":"categories"},"localField":"id","referenceField":"id"},"nestedProducts":{"type":"association","relation":"many_to_many","local":"categoryId","reference":"productId","mapping":"product_category_tree","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"write_protected":[[]]},"localField":"id","referenceField":"id"},"tags":{"type":"association","relation":"many_to_many","local":"categoryId","reference":"tagId","mapping":"category_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"cmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"cmsPage":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"cmsPageId","referenceField":"id"},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"},"navigationSalesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"navigationCategoryId","primary":"id"},"footerSalesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"footerCategoryId","primary":"id"},"serviceSalesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"serviceCategoryId","primary":"id"},"mainCategories":{"type":"association","relation":"one_to_many","entity":"main_category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"categoryId","primary":"id"},"seoUrls":{"type":"association","relation":"one_to_many","entity":"seo_url","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"foreignKey","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"category_tag":{"entity":"category_tag","properties":{"categoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"categoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"category":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"categoryId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}}},"category_translation":{"entity":"category_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"breadcrumb":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"linkType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"internalLink":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"externalLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"linkNewTab":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"metaTitle":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"categoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"category":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"categoryId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"categoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"cms_block":{"entity":"cms_block","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"locked":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"computed":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"sectionPosition":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"marginTop":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"marginBottom":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"marginLeft":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"marginRight":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundColor":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundMediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundMediaMode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cssClass":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"sectionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"section":{"type":"association","relation":"many_to_one","entity":"cms_section","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"sectionId","referenceField":"id"},"backgroundMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"backgroundMediaId","referenceField":"id"},"slots":{"type":"association","relation":"one_to_many","entity":"cms_slot","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"blockId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"cmsSectionVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"cms_page":{"entity":"cms_page","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"entity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"config":{"type":"json_object","properties":{"backgroundColor":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"previewMediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"locked":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"computed":true}},"sections":{"type":"association","relation":"one_to_many","entity":"cms_section","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"pageId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"cms_page_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"cmsPageId","primary":"cmsPageId"},"previewMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"previewMediaId","referenceField":"id"},"categories":{"type":"association","relation":"one_to_many","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"cmsPageId","primary":"id"},"landingPages":{"type":"association","relation":"one_to_many","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"cmsPageId","primary":"id"},"homeSalesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"homeCmsPageId","primary":"id"},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"cmsPageId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"cms_page_translation":{"entity":"cms_page_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"cmsPage":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"cmsPageId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"cms_section":{"entity":"cms_section","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"locked":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"computed":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"sizingMode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mobileBehavior":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundColor":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundMediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"backgroundMediaMode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cssClass":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"pageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"page":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"pageId","referenceField":"id"},"backgroundMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"backgroundMediaId","referenceField":"id"},"blocks":{"type":"association","relation":"one_to_many","entity":"cms_block","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"sectionId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"cms_slot":{"entity":"cms_slot","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"slot":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"locked":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"data":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true,"write_protected":[[]]}},"blockId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"block":{"type":"association","relation":"many_to_one","entity":"cms_block","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"blockId","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"cms_slot_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"cmsSlotId","primary":"cmsSlotId"},"cmsBlockVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"cms_slot_translation":{"entity":"cms_slot_translation","properties":{"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cmsSlotId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"cmsSlot":{"type":"association","relation":"many_to_one","entity":"cms_slot","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"cmsSlotId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"cmsSlotVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"country":{"entity":"country","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"iso":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"shippingAvailable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"iso3":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"displayStateInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"forceStateInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"companyTaxFree":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"deprecated":{"deprecated_since":"v6.4.0","will_be_removed_in":"v6.5.0","replaced_by":null}}},"checkVatIdPattern":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"vatIdRequired":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"taxFree":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"deprecated":{"deprecated_since":"v6.4.0","will_be_removed_in":"v6.5.0","replaced_by":null}}},"vatIdPattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customerTax":{"type":"json_object","properties":{"enabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currencyId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"amount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"companyTax":{"type":"json_object","properties":{"enabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currencyId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"amount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"states":{"type":"association","relation":"one_to_many","entity":"country_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"country_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"countryId","primary":"countryId"},"customerAddresses":{"type":"association","relation":"one_to_many","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"orderAddresses":{"type":"association","relation":"one_to_many","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"countryId","reference":"salesChannelId","mapping":"sales_channel_country","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"taxRules":{"type":"association","relation":"one_to_many","entity":"tax_rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"currencyCountryRoundings":{"type":"association","relation":"one_to_many","entity":"currency_country_rounding","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"countryId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"country_state":{"entity":"country_state","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shortCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"countryId","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"country_state_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"countryStateId","primary":"countryStateId"},"customerAddresses":{"type":"association","relation":"one_to_many","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"countryStateId","primary":"id"},"orderAddresses":{"type":"association","relation":"one_to_many","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"countryStateId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"country_state_translation":{"entity":"country_state_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"countryStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"countryState":{"type":"association","relation":"many_to_one","entity":"country_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"countryStateId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"country_translation":{"entity":"country_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"countryId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"currency":{"entity":"currency","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"factor":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"symbol":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"isoCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shortName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250,"translatable":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"isSystemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"currency_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"currencyId","primary":"currencyId"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"orders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"currencyId","reference":"salesChannelId","mapping":"sales_channel_currency","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"salesChannelDomains":{"type":"association","relation":"one_to_many","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"promotionDiscountPrices":{"type":"association","relation":"one_to_many","entity":"promotion_discount_prices","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"productExports":{"type":"association","relation":"one_to_many","entity":"product_export","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"itemRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"countryRoundings":{"type":"association","relation":"one_to_many","entity":"currency_country_rounding","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"currencyId","primary":"id"},"taxFreeFrom":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"currency_country_rounding":{"entity":"currency_country_rounding","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"itemRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"currencyId","referenceField":"id"},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":0.25},"localField":"countryId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"currency_translation":{"entity":"currency_translation","properties":{"shortName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"currencyId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"custom_field":{"entity":"custom_field","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFieldSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFieldSet":{"type":"association","relation":"many_to_one","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customFieldSetId","referenceField":"id"},"productSearchConfigFields":{"type":"association","relation":"one_to_many","entity":"product_search_config_field","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"customFieldId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"custom_field_set":{"entity":"custom_field_set","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"global":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"association","relation":"one_to_many","entity":"custom_field","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"customFieldSetId","primary":"id"},"relations":{"type":"association","relation":"one_to_many","entity":"custom_field_set_relation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"customFieldSetId","primary":"id"},"products":{"type":"association","relation":"many_to_many","local":"customFieldSetId","reference":"productId","mapping":"product_custom_field_set","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"reversed_inherited":"customFieldSets"},"localField":"id","referenceField":"id"},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"custom_field_set_relation":{"entity":"custom_field_set_relation","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"customFieldSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"entityName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFieldSet":{"type":"association","relation":"many_to_one","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customFieldSetId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"customer":{"entity":"customer","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"groupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"defaultPaymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"lastPaymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"defaultBillingAddressId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"defaultShippingAddressId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"customerNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"company":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500}},"password":{"type":"password","flags":[]},"email":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"vatIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"affiliateCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"campaignCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInEmailSentDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInConfirmDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"hash":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"guest":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"firstLogin":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"lastLogin":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"newsletterSalesChannelIds":{"type":"json_object","properties":[],"flags":{"write_protected":[["system"]]}},"newsletter":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"birthday":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"lastOrderDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"orderCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"orderTotalAmount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"legacyPassword":{"type":"string","flags":[]},"legacyEncoder":{"type":"string","flags":[]},"group":{"type":"association","relation":"many_to_one","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"groupId","referenceField":"id"},"defaultPaymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"defaultPaymentMethodId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"languageId","referenceField":"id"},"lastPaymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"lastPaymentMethodId","referenceField":"id"},"defaultBillingAddress":{"type":"association","relation":"many_to_one","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"defaultBillingAddressId","referenceField":"id"},"defaultShippingAddress":{"type":"association","relation":"many_to_one","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"defaultShippingAddressId","referenceField":"id"},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"salutationId","referenceField":"id"},"addresses":{"type":"association","relation":"one_to_many","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"customerId","primary":"id"},"orderCustomers":{"type":"association","relation":"one_to_many","entity":"order_customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"customerId","primary":"id"},"tags":{"type":"association","relation":"many_to_many","local":"customerId","reference":"tagId","mapping":"customer_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":0.25},"localField":"id","referenceField":"id"},"promotions":{"type":"association","relation":"many_to_many","local":"customerId","reference":"promotionId","mapping":"promotion_persona_customer","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"productReviews":{"type":"association","relation":"one_to_many","entity":"product_review","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"customerId","primary":"id"},"recoveryCustomer":{"type":"association","relation":"one_to_one","entity":"customer_recovery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"customerId"},"remoteAddress":{"type":"Shopware\\Core\\Framework\\DataAbstractionLayer\\Field\\RemoteAddressField","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"tagIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"requestedGroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"requestedGroup":{"type":"association","relation":"many_to_one","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"requestedGroupId","referenceField":"id"},"boundSalesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"boundSalesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"boundSalesChannelId","referenceField":"id"},"wishlists":{"type":"association","relation":"one_to_many","entity":"customer_wishlist","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"customerId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"customer_address":{"entity":"customer_address","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"countryStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"zipcode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"city":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"company":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"street":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"department":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"phoneNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"additionalAddressLine1":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"additionalAddressLine2":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerId","referenceField":"id"},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"countryId","referenceField":"id"},"countryState":{"type":"association","relation":"many_to_one","entity":"country_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"countryStateId","referenceField":"id"},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"salutationId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"customer_group":{"entity":"customer_group","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"displayGross":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"registrationActive":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"registrationTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"registrationIntroduction":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"registrationOnlyCompanyRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"registrationSeoMetaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"groupId","primary":"id"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"customerGroupId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"customer_group_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"customerGroupId","primary":"customerGroupId"},"registrationSalesChannels":{"type":"association","relation":"many_to_many","local":"customerGroupId","reference":"salesChannelId","mapping":"customer_group_registration_sales_channels","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"customer_group_registration_sales_channels":{"entity":"customer_group_registration_sales_channels","properties":{"customerGroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"customerGroup":{"type":"association","relation":"many_to_one","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerGroupId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}}},"customer_group_translation":{"entity":"customer_group_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"registrationTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"registrationIntroduction":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"registrationOnlyCompanyRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"registrationSeoMetaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customerGroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"customerGroup":{"type":"association","relation":"many_to_one","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerGroupId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"customer_recovery":{"entity":"customer_recovery","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"hash":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customer":{"type":"association","relation":"one_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"customer_tag":{"entity":"customer_tag","properties":{"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"tagId","referenceField":"id"}}},"customer_wishlist":{"entity":"customer_wishlist","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"products":{"type":"association","relation":"one_to_many","entity":"customer_wishlist_product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"wishlistId","primary":"id"},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"customer_wishlist_product":{"entity":"customer_wishlist_product","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"wishlistId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"wishlist":{"type":"association","relation":"many_to_one","entity":"customer_wishlist","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"wishlistId","referenceField":"id"},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"dead_message":{"entity":"dead_message","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true,"write_protected":[["system"]]}},"originalMessageClass":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"serializedOriginalMessage":{"type":"blob","flags":{"required":true,"write_protected":[["system"]]}},"handlerClass":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"encrypted":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"errorCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"nextExecutionTime":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"exception":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"exceptionMessage":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"exceptionFile":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"exceptionLine":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"scheduledTaskId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"scheduledTask":{"type":"association","relation":"many_to_one","entity":"scheduled_task","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"scheduledTaskId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"delivery_time":{"entity":"delivery_time","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"min":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"max":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"unit":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"shippingMethods":{"type":"association","relation":"one_to_many","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"deliveryTimeId","primary":"id"},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"deliveryTimeId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"delivery_time_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"deliveryTimeId","primary":"deliveryTimeId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"delivery_time_translation":{"entity":"delivery_time_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"deliveryTimeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"deliveryTime":{"type":"association","relation":"many_to_one","entity":"delivery_time","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"deliveryTimeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"document":{"entity":"document","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"documentTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"fileType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"referencedDocumentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"documentMediaFileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"sent":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"static":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"deepLinkCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"documentType":{"type":"association","relation":"many_to_one","entity":"document_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"documentTypeId","referenceField":"id"},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"orderId","referenceField":"id"},"referencedDocument":{"type":"association","relation":"many_to_one","entity":"document","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"referencedDocumentId","referenceField":"id"},"dependentDocuments":{"type":"association","relation":"one_to_many","entity":"document","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"referencedDocumentId","primary":"id"},"documentMediaFile":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"documentMediaFileId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"document_base_config":{"entity":"document_base_config","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"documentTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"logoId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"filenamePrefix":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"filenameSuffix":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"global":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"documentNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"documentType":{"type":"association","relation":"many_to_one","entity":"document_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"documentTypeId","referenceField":"id"},"logo":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"logoId","referenceField":"id"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"document_base_config_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"documentBaseConfigId","primary":"id"},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"document_base_config_sales_channel":{"entity":"document_base_config_sales_channel","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"documentBaseConfigId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"documentTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"documentType":{"type":"association","relation":"many_to_one","entity":"document_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"documentTypeId","referenceField":"id"},"documentBaseConfig":{"type":"association","relation":"many_to_one","entity":"document_base_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"documentBaseConfigId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"document_type":{"entity":"document_type","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250,"translatable":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"document_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"documentTypeId","primary":"documentTypeId"},"documents":{"type":"association","relation":"one_to_many","entity":"document","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"documentTypeId","primary":"id"},"documentBaseConfigs":{"type":"association","relation":"one_to_many","entity":"document_base_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"documentTypeId","primary":"id"},"documentBaseConfigSalesChannels":{"type":"association","relation":"one_to_many","entity":"document_base_config_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"documentTypeId","primary":"id"},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"document_type_translation":{"entity":"document_type_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"documentTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"documentType":{"type":"association","relation":"many_to_one","entity":"document_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"documentTypeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"event_action":{"entity":"event_action","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"eventName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"actionName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":500}},"rules":{"type":"association","relation":"many_to_many","local":"eventActionId","reference":"ruleId","mapping":"event_action_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"eventActionId","reference":"salesChannelId","mapping":"event_action_sales_channel","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"event_action_rule":{"entity":"event_action_rule","properties":{"eventActionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"eventAction":{"type":"association","relation":"many_to_one","entity":"event_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"eventActionId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"event_action_sales_channel":{"entity":"event_action_sales_channel","properties":{"eventActionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"eventAction":{"type":"association","relation":"many_to_one","entity":"event_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"eventActionId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"}}},"flow":{"entity":"flow","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"eventName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"payload":{"type":"blob","flags":{"write_protected":[["system"]]}},"invalid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"sequences":{"type":"association","relation":"one_to_many","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"flowId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"flow_sequence":{"entity":"flow_sequence","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"flowId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"actionName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"displayGroup":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"trueCase":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"flow":{"type":"association","relation":"many_to_one","entity":"flow","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"flowId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"},"parent":{"type":"association","relation":"many_to_one","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"import_export_file":{"entity":"import_export_file","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"originalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"expireDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"size":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"log":{"type":"association","relation":"one_to_one","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"fileId"},"accessToken":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"import_export_log":{"entity":"import_export_log","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"activity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"state":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"records":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"profileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"fileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"invalidRecordsLogId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"username":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"profileName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"result":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"profile":{"type":"association","relation":"many_to_one","entity":"import_export_profile","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"profileId","referenceField":"id"},"file":{"type":"association","relation":"one_to_one","entity":"import_export_file","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"fileId","referenceField":"id"},"invalidRecordsLog":{"type":"association","relation":"one_to_one","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"invalidRecordsLogId","referenceField":"id"},"failedImportLog":{"type":"association","relation":"one_to_one","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"invalidRecordsLogId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"import_export_profile":{"entity":"import_export_profile","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"systemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"sourceEntity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fileType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"delimiter":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"enclosure":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"mapping":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"updateBy":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"importExportLogs":{"type":"association","relation":"one_to_many","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"profileId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"import_export_profile_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"importExportProfileId","primary":"importExportProfileId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"import_export_profile_translation":{"entity":"import_export_profile_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"importExportProfileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"importExportProfile":{"type":"association","relation":"many_to_one","entity":"import_export_profile","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"importExportProfileId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"integration":{"entity":"integration","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"accessKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"secretAccessKey":{"type":"password","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"writeAccess":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"deprecated":{"deprecated_since":"v3","will_be_removed_in":"v4","replaced_by":null}}},"lastUsageAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"admin":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"deletedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"one_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"integrationId"},"aclRoles":{"type":"association","relation":"many_to_many","local":"integrationId","reference":"aclRoleId","mapping":"integration_role","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdNotifications":{"type":"association","relation":"one_to_many","entity":"notification","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"createdByIntegrationId","primary":"id"}}},"integration_role":{"entity":"integration_role","properties":{"integrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"aclRoleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"integration":{"type":"association","relation":"many_to_one","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"integrationId","referenceField":"id"},"role":{"type":"association","relation":"many_to_one","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"aclRoleId","referenceField":"id"}}},"landing_page":{"entity":"landing_page","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"metaTitle":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"landing_page_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"landingPageId","primary":"landingPageId"},"tags":{"type":"association","relation":"many_to_many","local":"landingPageId","reference":"tagId","mapping":"landing_page_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"cmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cmsPage":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"cmsPageId","referenceField":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"landingPageId","reference":"salesChannelId","mapping":"landing_page_sales_channel","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"seoUrls":{"type":"association","relation":"one_to_many","entity":"seo_url","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"foreignKey","primary":"id"},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"landing_page_sales_channel":{"entity":"landing_page_sales_channel","properties":{"landingPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"landingPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"landingPage":{"type":"association","relation":"many_to_one","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"landingPageId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"}}},"landing_page_tag":{"entity":"landing_page_tag","properties":{"landingPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"landingPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"landingPage":{"type":"association","relation":"many_to_one","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"landingPageId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}}},"landing_page_translation":{"entity":"landing_page_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"metaTitle":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"landingPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"landingPage":{"type":"association","relation":"many_to_one","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"landingPageId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"landingPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"language":{"entity":"language","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"localeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"translationCodeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"parent":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"parentId","referenceField":"id"},"locale":{"type":"association","relation":"many_to_one","entity":"locale","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"localeId","referenceField":"id"},"translationCode":{"type":"association","relation":"many_to_one","entity":"locale","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"translationCodeId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"languageId","reference":"salesChannelId","mapping":"sales_channel_language","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"languageId","primary":"id"},"salesChannelDomains":{"type":"association","relation":"one_to_many","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"newsletterRecipients":{"type":"association","relation":"one_to_many","entity":"newsletter_recipient","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"orders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"categoryTranslations":{"type":"association","relation":"one_to_many","entity":"category_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"categoryId"},"countryStateTranslations":{"type":"association","relation":"one_to_many","entity":"country_state_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"countryStateId"},"countryTranslations":{"type":"association","relation":"one_to_many","entity":"country_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"countryId"},"currencyTranslations":{"type":"association","relation":"one_to_many","entity":"currency_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"currencyId"},"customerGroupTranslations":{"type":"association","relation":"one_to_many","entity":"customer_group_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"customerGroupId"},"localeTranslations":{"type":"association","relation":"one_to_many","entity":"locale_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"localeId"},"mediaTranslations":{"type":"association","relation":"one_to_many","entity":"media_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"mediaId"},"paymentMethodTranslations":{"type":"association","relation":"one_to_many","entity":"payment_method_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"paymentMethodId"},"productManufacturerTranslations":{"type":"association","relation":"one_to_many","entity":"product_manufacturer_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productManufacturerId"},"productTranslations":{"type":"association","relation":"one_to_many","entity":"product_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productId"},"shippingMethodTranslations":{"type":"association","relation":"one_to_many","entity":"shipping_method_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"shippingMethodId"},"unitTranslations":{"type":"association","relation":"one_to_many","entity":"unit_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"unitId"},"propertyGroupTranslations":{"type":"association","relation":"one_to_many","entity":"property_group_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"propertyGroupId"},"propertyGroupOptionTranslations":{"type":"association","relation":"one_to_many","entity":"property_group_option_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"propertyGroupOptionId"},"salesChannelTranslations":{"type":"association","relation":"one_to_many","entity":"sales_channel_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"salesChannelId"},"salesChannelTypeTranslations":{"type":"association","relation":"one_to_many","entity":"sales_channel_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"salesChannelTypeId"},"salutationTranslations":{"type":"association","relation":"one_to_many","entity":"salutation_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"salutationId"},"pluginTranslations":{"type":"association","relation":"one_to_many","entity":"plugin_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"pluginId"},"productStreamTranslations":{"type":"association","relation":"one_to_many","entity":"product_stream_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productStreamId"},"stateMachineTranslations":{"type":"association","relation":"one_to_many","entity":"state_machine_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"stateMachineId"},"stateMachineStateTranslations":{"type":"association","relation":"one_to_many","entity":"state_machine_state_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"stateMachineStateId"},"cmsPageTranslations":{"type":"association","relation":"one_to_many","entity":"cms_page_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"cmsPageId"},"cmsSlotTranslations":{"type":"association","relation":"one_to_many","entity":"cms_slot_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"cmsSlotId"},"mailTemplateTranslations":{"type":"association","relation":"one_to_many","entity":"mail_template_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"mailTemplateId"},"mailHeaderFooterTranslations":{"type":"association","relation":"one_to_many","entity":"mail_header_footer_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"mailHeaderFooterId"},"documentTypeTranslations":{"type":"association","relation":"one_to_many","entity":"document_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"documentTypeId"},"numberRangeTypeTranslations":{"type":"association","relation":"one_to_many","entity":"number_range_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"numberRangeTypeId"},"deliveryTimeTranslations":{"type":"association","relation":"one_to_many","entity":"delivery_time_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"deliveryTimeId"},"productSearchKeywords":{"type":"association","relation":"one_to_many","entity":"product_search_keyword","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"productKeywordDictionaries":{"type":"association","relation":"one_to_many","entity":"product_keyword_dictionary","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"mailTemplateTypeTranslations":{"type":"association","relation":"one_to_many","entity":"mail_template_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"mailTemplateTypeId"},"promotionTranslations":{"type":"association","relation":"one_to_many","entity":"promotion_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"promotionId"},"numberRangeTranslations":{"type":"association","relation":"one_to_many","entity":"number_range_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"numberRangeId"},"productReviews":{"type":"association","relation":"one_to_many","entity":"product_review","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"seoUrlTranslations":{"type":"association","relation":"one_to_many","entity":"seo_url","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"id"},"taxRuleTypeTranslations":{"type":"association","relation":"one_to_many","entity":"tax_rule_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"taxRuleTypeId"},"productCrossSellingTranslations":{"type":"association","relation":"one_to_many","entity":"product_cross_selling_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productCrossSellingId"},"importExportProfileTranslations":{"type":"association","relation":"one_to_many","entity":"import_export_profile_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"importExportProfileId"},"productSortingTranslations":{"type":"association","relation":"one_to_many","entity":"product_sorting_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productSortingId"},"productFeatureSetTranslations":{"type":"association","relation":"one_to_many","entity":"product_feature_set_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"productFeatureSetId"},"appTranslations":{"type":"association","relation":"one_to_many","entity":"app_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"appId"},"actionButtonTranslations":{"type":"association","relation":"one_to_many","entity":"app_action_button_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"appActionButtonId"},"landingPageTranslations":{"type":"association","relation":"one_to_many","entity":"landing_page_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"landingPageId"},"appCmsBlockTranslations":{"type":"association","relation":"one_to_many","entity":"app_cms_block_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"appCmsBlockId"},"productSearchConfig":{"type":"association","relation":"one_to_one","entity":"product_search_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"themeTranslations":{"type":"association","relation":"one_to_many","entity":"theme_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"extension":true},"localField":"id","referenceField":"languageId","primary":"themeId"}}},"locale":{"entity":"locale","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"code":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"territory":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"languages":{"type":"association","relation":"one_to_many","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"localeId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"locale_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"localeId","primary":"localeId"},"users":{"type":"association","relation":"one_to_many","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"localeId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"locale_translation":{"entity":"locale_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"territory":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"localeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"locale":{"type":"association","relation":"many_to_one","entity":"locale","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"localeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"log_entry":{"entity":"log_entry","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"message":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":500}},"level":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"channel":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"context":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":250}},"extra":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":80}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"mail_header_footer":{"entity":"mail_header_footer","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"systemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"headerHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"headerPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"footerHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"footerPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"mail_header_footer_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"mailHeaderFooterId","primary":"mailHeaderFooterId"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"mailHeaderFooterId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"mail_header_footer_translation":{"entity":"mail_header_footer_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"headerHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"headerPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"footerHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"footerPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mailHeaderFooterId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mailHeaderFooter":{"type":"association","relation":"many_to_one","entity":"mail_header_footer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailHeaderFooterId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"mail_template":{"entity":"mail_template","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"mailTemplateTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"systemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"senderName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500,"translatable":true}},"subject":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true,"search_ranking":500,"translatable":true}},"contentHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"allow_html":true,"translatable":true}},"contentPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"allow_html":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"mail_template_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"mailTemplateId","primary":"mailTemplateId"},"mailTemplateType":{"type":"association","relation":"many_to_one","entity":"mail_template_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"mailTemplateTypeId","referenceField":"id"},"media":{"type":"association","relation":"one_to_many","entity":"mail_template_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"mailTemplateId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"mail_template_media":{"entity":"mail_template_media","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mailTemplateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mailTemplate":{"type":"association","relation":"many_to_one","entity":"mail_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailTemplateId","referenceField":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"}}},"mail_template_translation":{"entity":"mail_template_translation","properties":{"senderName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"subject":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"contentHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"contentPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mailTemplateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mailTemplate":{"type":"association","relation":"many_to_one","entity":"mail_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailTemplateId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"mail_template_type":{"entity":"mail_template_type","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250,"translatable":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"availableEntities":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"mail_template_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"mailTemplateTypeId","primary":"mailTemplateTypeId"},"mailTemplates":{"type":"association","relation":"one_to_many","entity":"mail_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mailTemplateTypeId","primary":"id"},"templateData":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"mail_template_type_translation":{"entity":"mail_template_type_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mailTemplateTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mailTemplateType":{"type":"association","relation":"many_to_one","entity":"mail_template_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailTemplateTypeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"main_category":{"entity":"main_category","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"categoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"categoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"category":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"categoryId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media":{"entity":"media","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mediaFolderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mimeType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]],"search_ranking":80}},"fileExtension":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"uploadedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"fileName":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]],"search_ranking":500}},"fileSize":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"mediaTypeRaw":{"type":"blob","flags":{"write_protected":[["system"]]}},"metaData":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"mediaType":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"alt":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250,"translatable":true}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500,"translatable":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"hasFile":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"private":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"thumbnailsRo":{"type":"blob","flags":{"computed":true}},"translations":{"type":"association","relation":"one_to_many","entity":"media_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"mediaId","primary":"mediaId"},"tags":{"type":"association","relation":"many_to_many","local":"mediaId","reference":"tagId","mapping":"media_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":0.25},"localField":"id","referenceField":"id"},"thumbnails":{"type":"association","relation":"one_to_many","entity":"media_thumbnail","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"categories":{"type":"association","relation":"one_to_many","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"productManufacturers":{"type":"association","relation":"one_to_many","entity":"product_manufacturer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"productMedia":{"type":"association","relation":"one_to_many","entity":"product_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"avatarUser":{"type":"association","relation":"one_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"avatarId"},"mediaFolder":{"type":"association","relation":"many_to_one","entity":"media_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaFolderId","referenceField":"id"},"propertyGroupOptions":{"type":"association","relation":"one_to_many","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"mailTemplateMedia":{"type":"association","relation":"one_to_many","entity":"mail_template_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"documentBaseConfigs":{"type":"association","relation":"one_to_many","entity":"document_base_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"logoId","primary":"id"},"shippingMethods":{"type":"association","relation":"one_to_many","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"paymentMethods":{"type":"association","relation":"one_to_many","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"productConfiguratorSettings":{"type":"association","relation":"one_to_many","entity":"product_configurator_setting","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"orderLineItems":{"type":"association","relation":"one_to_many","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"coverId","primary":"id"},"cmsBlocks":{"type":"association","relation":"one_to_many","entity":"cms_block","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"backgroundMediaId","primary":"id"},"cmsSections":{"type":"association","relation":"one_to_many","entity":"cms_section","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"backgroundMediaId","primary":"id"},"cmsPages":{"type":"association","relation":"one_to_many","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"previewMediaId","primary":"id"},"documents":{"type":"association","relation":"one_to_many","entity":"document","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"documentMediaFileId","primary":"id"},"appPaymentMethods":{"type":"association","relation":"one_to_many","entity":"app_payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"originalMediaId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"themes":{"type":"association","relation":"one_to_many","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"previewMediaId","primary":"id"},"themeMedia":{"type":"association","relation":"many_to_many","local":"mediaId","reference":"themeId","mapping":"theme_media","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"id"},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"media_default_folder":{"entity":"media_default_folder","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"associationFields":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"entity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"folder":{"type":"association","relation":"one_to_one","entity":"media_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"defaultFolderId"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media_folder":{"entity":"media_folder","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"useParentConfiguration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"configurationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"defaultFolderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"parent":{"type":"association","relation":"many_to_one","entity":"media_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"media_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"childCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"media":{"type":"association","relation":"one_to_many","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"mediaFolderId","primary":"id"},"defaultFolder":{"type":"association","relation":"one_to_one","entity":"media_default_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"defaultFolderId","referenceField":"id"},"configuration":{"type":"association","relation":"many_to_one","entity":"media_folder_configuration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"configurationId","referenceField":"id"},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":500,"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media_folder_configuration":{"entity":"media_folder_configuration","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"createThumbnails":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"keepAspectRatio":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"thumbnailQuality":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"private":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"noAssociation":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mediaFolders":{"type":"association","relation":"one_to_many","entity":"media_folder","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"configurationId","primary":"id"},"mediaThumbnailSizes":{"type":"association","relation":"many_to_many","local":"mediaFolderConfigurationId","reference":"mediaThumbnailSizeId","mapping":"media_folder_configuration_media_thumbnail_size","entity":"media_thumbnail_size","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"mediaThumbnailSizesRo":{"type":"blob","flags":{"computed":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media_folder_configuration_media_thumbnail_size":{"entity":"media_folder_configuration_media_thumbnail_size","properties":{"mediaFolderConfigurationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"mediaThumbnailSizeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"mediaFolderConfiguration":{"type":"association","relation":"many_to_one","entity":"media_folder_configuration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaFolderConfigurationId","referenceField":"id"},"mediaThumbnailSize":{"type":"association","relation":"many_to_one","entity":"media_thumbnail_size","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaThumbnailSizeId","referenceField":"id"}}},"media_tag":{"entity":"media_tag","properties":{"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"tagId","referenceField":"id"}}},"media_thumbnail":{"entity":"media_thumbnail","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"width":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"write_protected":[["system"]]}},"height":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"write_protected":[["system"]]}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media_thumbnail_size":{"entity":"media_thumbnail_size","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"width":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"height":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaFolderConfigurations":{"type":"association","relation":"many_to_many","local":"mediaThumbnailSizeId","reference":"mediaFolderConfigurationId","mapping":"media_folder_configuration_media_thumbnail_size","entity":"media_folder_configuration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"media_translation":{"entity":"media_translation","properties":{"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"alt":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"message_queue_stats":{"entity":"message_queue_stats","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true,"write_protected":[["system"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"size":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"newsletter_recipient":{"entity":"newsletter_recipient","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"email":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"zipCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"city":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"street":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"status":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"hash":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"confirmedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"tags":{"type":"association","relation":"many_to_many","local":"newsletterRecipientId","reference":"tagId","mapping":"newsletter_recipient_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salutationId","referenceField":"id"},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"newsletter_recipient_tag":{"entity":"newsletter_recipient_tag","properties":{"newsletterRecipientId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"newsletterRecipient":{"type":"association","relation":"many_to_one","entity":"newsletter_recipient","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"newsletterRecipientId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}}},"notification":{"entity":"notification","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"status":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"message":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"adminOnly":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"requiredPrivileges":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdByIntegrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdByUserId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdByIntegration":{"type":"association","relation":"many_to_one","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"createdByIntegrationId","referenceField":"id"},"createdByUser":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"createdByUserId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"number_range":{"entity":"number_range","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"typeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"global":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"pattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"start":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"type":{"type":"association","relation":"many_to_one","entity":"number_range_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"typeId","referenceField":"id"},"numberRangeSalesChannels":{"type":"association","relation":"one_to_many","entity":"number_range_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"numberRangeId","primary":"id"},"state":{"type":"association","relation":"one_to_one","entity":"number_range_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"numberRangeId"},"translations":{"type":"association","relation":"one_to_many","entity":"number_range_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"numberRangeId","primary":"numberRangeId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"number_range_sales_channel":{"entity":"number_range_sales_channel","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"numberRangeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"numberRangeTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"numberRange":{"type":"association","relation":"many_to_one","entity":"number_range","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"numberRangeId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"numberRangeType":{"type":"association","relation":"many_to_one","entity":"number_range_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"numberRangeTypeId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"number_range_state":{"entity":"number_range_state","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"numberRangeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"lastValue":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"numberRange":{"type":"association","relation":"one_to_one","entity":"number_range","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"numberRangeId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"number_range_translation":{"entity":"number_range_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"numberRangeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"numberRange":{"type":"association","relation":"many_to_one","entity":"number_range","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"numberRangeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"number_range_type":{"entity":"number_range_type","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":500}},"typeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"global":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"numberRanges":{"type":"association","relation":"one_to_many","entity":"number_range","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"typeId","primary":"id"},"numberRangeSalesChannels":{"type":"association","relation":"one_to_many","entity":"number_range_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"numberRangeTypeId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"number_range_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"numberRangeTypeId","primary":"numberRangeTypeId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"number_range_type_translation":{"entity":"number_range_type_translation","properties":{"typeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"numberRangeTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"numberRangeType":{"type":"association","relation":"many_to_one","entity":"number_range_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"numberRangeTypeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"order":{"entity":"order","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"orderNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500}},"billingAddressId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"billingAddressVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderDateTime":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"price":{"type":"json_object","properties":{"netPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"positionPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"rawTotal":{"type":"float","flags":{"required":true,"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"taxStatus":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"amountTotal":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"search_ranking":250}},"amountNet":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"positionPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"taxStatus":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"shippingCosts":{"type":"json_object","properties":{"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencePrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"listPrice":{"type":"json_object","properties":{"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"discount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"percentage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"shippingTotal":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"currencyFactor":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"deepLinkCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"affiliateCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"campaignCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customerComment":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"stateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"stateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"stateId","referenceField":"id"},"ruleIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdById":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"updatedById":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"orderCustomer":{"type":"association","relation":"one_to_one","entity":"order_customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"search_ranking":0.5},"localField":"id","referenceField":"orderId"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"currencyId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"languageId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"addresses":{"type":"association","relation":"one_to_many","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"orderId","primary":"id"},"billingAddress":{"type":"association","relation":"many_to_one","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"billingAddressId","referenceField":"id"},"deliveries":{"type":"association","relation":"one_to_many","entity":"order_delivery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"orderId","primary":"id"},"lineItems":{"type":"association","relation":"one_to_many","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"orderId","primary":"id"},"transactions":{"type":"association","relation":"one_to_many","entity":"order_transaction","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"orderId","primary":"id"},"documents":{"type":"association","relation":"one_to_many","entity":"document","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"orderId","primary":"id"},"tags":{"type":"association","relation":"many_to_many","local":"orderId","reference":"tagId","mapping":"order_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"id","referenceField":"id"},"createdBy":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"createdById","referenceField":"id"},"updatedBy":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"updatedById","referenceField":"id"},"itemRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"totalRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_address":{"entity":"order_address","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"countryStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":80}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"street":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"zipcode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"city":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"company":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500}},"department":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"vatId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"phoneNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"additionalAddressLine1":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"additionalAddressLine2":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"countryId","referenceField":"id"},"countryState":{"type":"association","relation":"many_to_one","entity":"country_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"countryStateId","referenceField":"id"},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"orderId","referenceField":"id"},"orderDeliveries":{"type":"association","relation":"one_to_many","entity":"order_delivery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"shippingOrderAddressId","primary":"id"},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"salutationId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_customer":{"entity":"order_customer","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"email":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":80}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"company":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"vatIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customerNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"order":{"type":"association","relation":"one_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderId","referenceField":"id"},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":0.5},"localField":"customerId","referenceField":"id"},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"salutationId","referenceField":"id"},"remoteAddress":{"type":"Shopware\\Core\\Framework\\DataAbstractionLayer\\Field\\RemoteAddressField","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_delivery":{"entity":"order_delivery","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shippingOrderAddressId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shippingOrderAddressVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"stateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"stateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"stateId","referenceField":"id"},"trackingCodes":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"shippingDateEarliest":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"shippingDateLatest":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"shippingCosts":{"type":"json_object","properties":{"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencePrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"listPrice":{"type":"json_object","properties":{"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"discount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"percentage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderId","referenceField":"id"},"shippingOrderAddress":{"type":"association","relation":"many_to_one","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"shippingOrderAddressId","referenceField":"id"},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"shippingMethodId","referenceField":"id"},"positions":{"type":"association","relation":"one_to_many","entity":"order_delivery_position","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"orderDeliveryId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_delivery_position":{"entity":"order_delivery_position","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"orderDeliveryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderDeliveryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderLineItemId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderLineItemVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"price":{"type":"json_object","properties":{"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencePrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"listPrice":{"type":"json_object","properties":{"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"discount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"percentage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"orderDelivery":{"type":"association","relation":"many_to_one","entity":"order_delivery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderDeliveryId","referenceField":"id"},"orderLineItem":{"type":"association","relation":"many_to_one","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderLineItemId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_line_item":{"entity":"order_line_item","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"parentVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"coverId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"cover":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"coverId","referenceField":"id"},"identifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"referencedId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"payload":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"good":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"removable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"stackable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"price":{"type":"json_object","properties":{"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencePrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"listPrice":{"type":"json_object","properties":{"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"discount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"percentage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"priceDefinition":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderId","referenceField":"id"},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"orderDeliveryPositions":{"type":"association","relation":"one_to_many","entity":"order_delivery_position","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"write_protected":[[]]},"localField":"id","referenceField":"orderLineItemId","primary":"id"},"parent":{"type":"association","relation":"many_to_one","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"parentId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"order_tag":{"entity":"order_tag","properties":{"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"orderId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"tagId","referenceField":"id"}}},"order_transaction":{"entity":"order_transaction","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"orderId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"paymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"amount":{"type":"json_object","properties":{"unitPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"totalPrice":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantity":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"calculatedTaxes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRules":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencePrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"listPrice":{"type":"json_object","properties":{"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"discount":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"percentage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"stateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"stateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"stateId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"order":{"type":"association","relation":"many_to_one","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"orderId","referenceField":"id"},"paymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"paymentMethodId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"payment_method":{"entity":"payment_method","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"pluginId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"handlerIdentifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"distinguishableName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]],"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"afterOrderEnabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"availabilityRuleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"formattedHandlerIdentifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"synchronous":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"asynchronous":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"prepared":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"translations":{"type":"association","relation":"one_to_many","entity":"payment_method_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"paymentMethodId","primary":"paymentMethodId"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"availabilityRule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"availabilityRuleId","referenceField":"id"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"paymentMethodId","primary":"id"},"plugin":{"type":"association","relation":"many_to_one","entity":"plugin","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"pluginId","referenceField":"id"},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"lastPaymentMethodId","primary":"id"},"orderTransactions":{"type":"association","relation":"one_to_many","entity":"order_transaction","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"paymentMethodId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"paymentMethodId","reference":"salesChannelId","mapping":"sales_channel_payment_method","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"appPaymentMethod":{"type":"association","relation":"one_to_one","entity":"app_payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"paymentMethodId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"payment_method_translation":{"entity":"payment_method_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"distinguishableName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]]}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"paymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"paymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"paymentMethodId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"plugin":{"entity":"plugin","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"baseClass":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"composerName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"autoload":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"managedByComposer":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"author":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"copyright":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"license":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"version":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"upgradeVersion":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"installedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"upgradedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"iconRaw":{"type":"blob","flags":[]},"icon":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true,"translatable":true}},"manufacturerLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"supportLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"changelog":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"plugin_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"pluginId","primary":"pluginId"},"paymentMethods":{"type":"association","relation":"one_to_many","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"pluginId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"plugin_translation":{"entity":"plugin_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true}},"manufacturerLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"supportLink":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"changelog":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"pluginId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"plugin":{"type":"association","relation":"many_to_one","entity":"plugin","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"pluginId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product":{"entity":"product","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"parentVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"manufacturerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"productManufacturerVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":true}},"unitId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"taxId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":true}},"coverId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"productMediaVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":true}},"deliveryTimeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"featureSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true}},"canonicalProductId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"cmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":true}},"price":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true,"required":true}},"productNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500,"required":true}},"stock":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"restockTime":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"availableStock":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"available":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"isCloseout":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"variation":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"runtime":true}},"displayGroup":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"configuratorGroupConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true}},"mainVariantId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"variantRestrictions":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"manufacturerNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"search_ranking":250}},"ean":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"search_ranking":250}},"purchaseSteps":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"maxPurchase":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"minPurchase":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"purchaseUnit":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"referenceUnit":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"shippingFree":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"purchasePrices":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true}},"markAsTopseller":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"weight":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"width":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"height":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"length":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"releaseDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"ratingAverage":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"inherited":true}},"categoryTree":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"write_protected":[[]]}},"propertyIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"inherited":true}},"optionIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"inherited":true}},"streamIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"inherited":true}},"tagIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"inherited":true}},"categoryIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"inherited":true}},"childCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"customFieldSetSelectionActive":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true}},"sales":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"metaDescription":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"inherited":true,"search_ranking":500,"translatable":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"inherited":true,"translatable":true}},"metaTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"packUnit":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"packUnitPlural":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"translatable":true}},"customSearchKeywords":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true,"search_ranking":500,"translatable":true}},"parent":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"deliveryTime":{"type":"association","relation":"many_to_one","entity":"delivery_time","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"deliveryTimeId","referenceField":"id"},"tax":{"type":"association","relation":"many_to_one","entity":"tax","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"taxId","referenceField":"id"},"manufacturer":{"type":"association","relation":"many_to_one","entity":"product_manufacturer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"manufacturerId","referenceField":"id"},"unit":{"type":"association","relation":"many_to_one","entity":"unit","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"unitId","referenceField":"id"},"cover":{"type":"association","relation":"many_to_one","entity":"product_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"coverId","referenceField":"id"},"featureSet":{"type":"association","relation":"many_to_one","entity":"product_feature_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true},"localField":"featureSetId","referenceField":"id"},"cmsPage":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"cmsPageId","referenceField":"id"},"canonicalProduct":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true},"localField":"canonicalProductId","referenceField":"id"},"prices":{"type":"association","relation":"one_to_many","entity":"product_price","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"productId","primary":"id"},"media":{"type":"association","relation":"one_to_many","entity":"product_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"productId","primary":"id"},"crossSellings":{"type":"association","relation":"one_to_many","entity":"product_cross_selling","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"productId","primary":"id"},"crossSellingAssignedProducts":{"type":"association","relation":"one_to_many","entity":"product_cross_selling_assigned_products","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"configuratorSettings":{"type":"association","relation":"one_to_many","entity":"product_configurator_setting","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"visibilities":{"type":"association","relation":"one_to_many","entity":"product_visibility","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"productId","primary":"id"},"searchKeywords":{"type":"association","relation":"one_to_many","entity":"product_search_keyword","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"productReviews":{"type":"association","relation":"one_to_many","entity":"product_review","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"mainCategories":{"type":"association","relation":"one_to_many","entity":"main_category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"seoUrls":{"type":"association","relation":"one_to_many","entity":"seo_url","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"foreignKey","primary":"id"},"orderLineItems":{"type":"association","relation":"one_to_many","entity":"order_line_item","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"wishlists":{"type":"association","relation":"one_to_many","entity":"customer_wishlist_product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"options":{"type":"association","relation":"many_to_many","local":"productId","reference":"optionId","mapping":"product_option","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"properties":{"type":"association","relation":"many_to_many","local":"productId","reference":"optionId","mapping":"product_property","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"id"},"categories":{"type":"association","relation":"many_to_many","local":"productId","reference":"categoryId","mapping":"product_category","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true,"search_ranking":0.25},"localField":"id","referenceField":"id"},"streams":{"type":"association","relation":"many_to_many","local":"productId","reference":"productStreamId","mapping":"product_stream_mapping","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"categoriesRo":{"type":"association","relation":"many_to_many","local":"productId","reference":"categoryId","mapping":"product_category_tree","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"write_protected":[[]]},"localField":"id","referenceField":"id"},"tags":{"type":"association","relation":"many_to_many","local":"productId","reference":"tagId","mapping":"product_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"inherited":true,"search_ranking":0.25},"localField":"id","referenceField":"id"},"customFieldSets":{"type":"association","relation":"many_to_many","local":"productId","reference":"customFieldSetId","mapping":"product_custom_field_set","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"inherited":true},"localField":"id","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"product_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true,"required":true},"localField":"id","referenceField":"productId","primary":"productId"},"cheapestPrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"inherited":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_category":{"entity":"product_category","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"categoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"categoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"category":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"categoryId","referenceField":"id"}}},"product_category_tree":{"entity":"product_category_tree","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"categoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"categoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"category":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"categoryId","referenceField":"id"}}},"product_configurator_setting":{"entity":"product_configurator_setting","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"optionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"price":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"option":{"type":"association","relation":"many_to_one","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"optionId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_cross_selling":{"entity":"product_cross_selling","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"sortBy":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"sortDirection":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"limit":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"reversed_inherited":"crossSellings"},"localField":"productId","referenceField":"id"},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"},"assignedProducts":{"type":"association","relation":"one_to_many","entity":"product_cross_selling_assigned_products","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"crossSellingId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"product_cross_selling_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"productCrossSellingId","primary":"productCrossSellingId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_cross_selling_assigned_products":{"entity":"product_cross_selling_assigned_products","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"crossSellingId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"crossSelling":{"type":"association","relation":"many_to_one","entity":"product_cross_selling","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"crossSellingId","referenceField":"id"},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_cross_selling_translation":{"entity":"product_cross_selling_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productCrossSellingId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productCrossSelling":{"type":"association","relation":"many_to_one","entity":"product_cross_selling","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productCrossSellingId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product_custom_field_set":{"entity":"product_custom_field_set","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"customFieldSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"customFieldSet":{"type":"association","relation":"many_to_one","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customFieldSetId","referenceField":"id"}}},"product_export":{"entity":"product_export","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"storefrontSalesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannelDomainId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fileName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"accessKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"encoding":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fileFormat":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"includeVariants":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"generateByCronjob":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"generatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"interval":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"headerTemplate":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true}},"bodyTemplate":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true}},"footerTemplate":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true}},"pausedSchedule":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"},"storefrontSalesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"storefrontSalesChannelId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"salesChannelDomain":{"type":"association","relation":"many_to_one","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelDomainId","referenceField":"id"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"currencyId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_feature_set":{"entity":"product_feature_set","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"features":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true,"reversed_inherited":"featureSet"},"localField":"id","referenceField":"featureSetId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"product_feature_set_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"productFeatureSetId","primary":"productFeatureSetId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_feature_set_translation":{"entity":"product_feature_set_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productFeatureSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productFeatureSet":{"type":"association","relation":"many_to_one","entity":"product_feature_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productFeatureSetId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product_keyword_dictionary":{"entity":"product_keyword_dictionary","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"keyword":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"reversed":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"computed":true}},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product_manufacturer":{"entity":"product_manufacturer","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"link":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true,"reversed_inherited":"manufacturer"},"localField":"id","referenceField":"manufacturerId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"product_manufacturer_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"productManufacturerId","primary":"productManufacturerId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_manufacturer_translation":{"entity":"product_manufacturer_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productManufacturerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productManufacturer":{"type":"association","relation":"many_to_one","entity":"product_manufacturer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productManufacturerId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"productManufacturerVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"product_media":{"entity":"product_media","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"reversed_inherited":"media"},"localField":"productId","referenceField":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"coverProducts":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"coverId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_option":{"entity":"product_option","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"optionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"option":{"type":"association","relation":"many_to_one","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"optionId","referenceField":"id"}}},"product_price":{"entity":"product_price","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"price":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantityStart":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"quantityEnd":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"reversed_inherited":"prices"},"localField":"productId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_property":{"entity":"product_property","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"optionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"option":{"type":"association","relation":"many_to_one","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"optionId","referenceField":"id"}}},"product_review":{"entity":"product_review","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"externalUser":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":250}},"externalEmail":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":250}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":80}},"content":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":80,"allow_html":true}},"points":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"status":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"comment":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":0.25},"localField":"productId","referenceField":"id"},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":250},"localField":"customerId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_search_config":{"entity":"product_search_config","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"andLogic":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"minSearchLength":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"excludedTerms":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"language":{"type":"association","relation":"one_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"configFields":{"type":"association","relation":"one_to_many","entity":"product_search_config_field","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"searchConfigId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_search_config_field":{"entity":"product_search_config_field","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"searchConfigId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFieldId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"field":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"tokenize":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"searchable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"ranking":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"searchConfig":{"type":"association","relation":"many_to_one","entity":"product_search_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"searchConfigId","referenceField":"id"},"customField":{"type":"association","relation":"many_to_one","entity":"custom_field","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customFieldId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_search_keyword":{"entity":"product_search_keyword","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"keyword":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"ranking":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_sorting":{"entity":"product_sorting","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"locked":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"computed":true}},"key":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"product_sorting_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"inherited":true,"required":true},"localField":"id","referenceField":"productSortingId","primary":"productSortingId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_sorting_translation":{"entity":"product_sorting_translation","properties":{"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productSortingId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productSorting":{"type":"association","relation":"many_to_one","entity":"product_sorting","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productSortingId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product_stream":{"entity":"product_stream","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"apiFilter":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"invalid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"product_stream_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"productStreamId","primary":"productStreamId"},"filters":{"type":"association","relation":"one_to_many","entity":"product_stream_filter","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productStreamId","primary":"id"},"productCrossSellings":{"type":"association","relation":"one_to_many","entity":"product_cross_selling","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"productExports":{"type":"association","relation":"one_to_many","entity":"product_export","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"categories":{"type":"association","relation":"one_to_many","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"product_stream_filter":{"entity":"product_stream_filter","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"field":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"operator":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"value":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"parameters":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"},"parent":{"type":"association","relation":"many_to_one","entity":"product_stream_filter","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"queries":{"type":"association","relation":"one_to_many","entity":"product_stream_filter","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"product_stream_mapping":{"entity":"product_stream_mapping","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"}}},"product_stream_translation":{"entity":"product_stream_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productStreamId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productStream":{"type":"association","relation":"many_to_one","entity":"product_stream","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productStreamId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"product_tag":{"entity":"product_tag","properties":{"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}}},"product_translation":{"entity":"product_translation","properties":{"metaDescription":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"metaTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"packUnit":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"packUnitPlural":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customSearchKeywords":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"slotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}}}},"product_visibility":{"entity":"product_visibility","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"primary_key":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"visibility":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"productId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion":{"entity":"promotion","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"validFrom":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"validUntil":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"maxRedemptionsGlobal":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"maxRedemptionsPerCustomer":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"exclusive":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"code":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"useCodes":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"useIndividualCodes":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"individualCodePattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"useSetGroups":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customerRestriction":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"preventCombination":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"orderCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"ordersPerCustomerCount":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"setgroups":{"type":"association","relation":"one_to_many","entity":"promotion_setgroup","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"promotion_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"discounts":{"type":"association","relation":"one_to_many","entity":"promotion_discount","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"individualCodes":{"type":"association","relation":"one_to_many","entity":"promotion_individual_code","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"personaRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_persona_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"personaCustomers":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"customerId","mapping":"promotion_persona_customer","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"orderRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_order_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"cartRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_cart_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"promotion_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"promotionId","primary":"promotionId"},"exclusionIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"promotion_cart_rule":{"entity":"promotion_cart_rule","properties":{"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"promotion_discount":{"entity":"promotion_discount","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"scope":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"value":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"considerAdvancedRules":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"maxValue":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"sorterKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"applierKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"usageKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"pickerKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"discountRules":{"type":"association","relation":"many_to_many","local":"discountId","reference":"ruleId","mapping":"promotion_discount_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"promotionDiscountPrices":{"type":"association","relation":"one_to_many","entity":"promotion_discount_prices","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"discountId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion_discount_prices":{"entity":"promotion_discount_prices","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"discountId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"price":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"promotionDiscount":{"type":"association","relation":"many_to_one","entity":"promotion_discount","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"discountId","referenceField":"id"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"currencyId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion_discount_rule":{"entity":"promotion_discount_rule","properties":{"discountId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"discount":{"type":"association","relation":"many_to_one","entity":"promotion_discount","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"discountId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"promotion_individual_code":{"entity":"promotion_individual_code","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"code":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"payload":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion_order_rule":{"entity":"promotion_order_rule","properties":{"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"promotion_persona_customer":{"entity":"promotion_persona_customer","properties":{"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"customerId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"customer":{"type":"association","relation":"many_to_one","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerId","referenceField":"id"}}},"promotion_persona_rule":{"entity":"promotion_persona_rule","properties":{"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"promotion_sales_channel":{"entity":"promotion_sales_channel","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion_setgroup":{"entity":"promotion_setgroup","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"packagerKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"sorterKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"value":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"setGroupRules":{"type":"association","relation":"many_to_many","local":"setgroupId","reference":"ruleId","mapping":"promotion_setgroup_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"promotion_setgroup_rule":{"entity":"promotion_setgroup_rule","properties":{"setgroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"setgroup":{"type":"association","relation":"many_to_one","entity":"promotion_setgroup","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"setgroupId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"}}},"promotion_translation":{"entity":"promotion_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"property_group":{"entity":"property_group","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"displayType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"sortingType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"filterable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"visibleOnProductDetailPage":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"options":{"type":"association","relation":"one_to_many","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"search_ranking":0.25},"localField":"id","referenceField":"groupId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"property_group_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"propertyGroupId","primary":"propertyGroupId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"property_group_option":{"entity":"property_group_option","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"groupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"colorHexCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"group":{"type":"association","relation":"many_to_one","entity":"property_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"groupId","referenceField":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"property_group_option_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"propertyGroupOptionId","primary":"propertyGroupOptionId"},"productConfiguratorSettings":{"type":"association","relation":"one_to_many","entity":"product_configurator_setting","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"optionId","primary":"id"},"productProperties":{"type":"association","relation":"many_to_many","local":"optionId","reference":"productId","mapping":"product_property","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"reversed_inherited":"properties"},"localField":"id","referenceField":"id"},"productOptions":{"type":"association","relation":"many_to_many","local":"optionId","reference":"productId","mapping":"product_option","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"property_group_option_translation":{"entity":"property_group_option_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"propertyGroupOptionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"propertyGroupOption":{"type":"association","relation":"many_to_one","entity":"property_group_option","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"propertyGroupOptionId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"property_group_translation":{"entity":"property_group_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"propertyGroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"propertyGroup":{"type":"association","relation":"many_to_one","entity":"property_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"propertyGroupId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"rule":{"entity":"rule","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"payload":{"type":"blob","flags":{"write_protected":[["system"]]}},"invalid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"moduleTypes":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"conditions":{"type":"association","relation":"one_to_many","entity":"rule_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"ruleId","primary":"id"},"productPrices":{"type":"association","relation":"one_to_many","entity":"product_price","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"ruleId","primary":"id"},"shippingMethodPrices":{"type":"association","relation":"one_to_many","entity":"shipping_method_price","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"ruleId","primary":"id"},"shippingMethodPriceCalculations":{"type":"association","relation":"one_to_many","entity":"shipping_method_price","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"calculationRuleId","primary":"id"},"shippingMethods":{"type":"association","relation":"one_to_many","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"availabilityRuleId","primary":"id"},"paymentMethods":{"type":"association","relation":"one_to_many","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"availabilityRuleId","primary":"id"},"personaPromotions":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"promotionId","mapping":"promotion_persona_rule","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"flowSequences":{"type":"association","relation":"one_to_many","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"ruleId","primary":"id"},"orderPromotions":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"promotionId","mapping":"promotion_order_rule","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"cartPromotions":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"promotionId","mapping":"promotion_cart_rule","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"promotionDiscounts":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"discountId","mapping":"promotion_discount_rule","entity":"promotion_discount","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"promotionSetGroups":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"setgroupId","mapping":"promotion_setgroup_rule","entity":"promotion_setgroup","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"id"},"eventActions":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"eventActionId","mapping":"event_action_rule","entity":"event_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"deprecated":{"deprecated_since":"v6.4.6","will_be_removed_in":"v6.5.0","replaced_by":null}},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"rule_condition":{"entity":"rule_condition","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"value":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"},"parent":{"type":"association","relation":"many_to_one","entity":"rule_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"children":{"type":"association","relation":"one_to_many","entity":"rule_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"parentId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"sales_channel":{"entity":"sales_channel","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"typeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customerGroupId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"paymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"analyticsId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"navigationCategoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"navigationCategoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"navigationCategoryDepth":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"footerCategoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"footerCategoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"serviceCategoryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"serviceCategoryVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mailHeaderFooterId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"hreflangDefaultDomainId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"shortName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"taxCalculationType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"accessKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"configuration":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"hreflangActive":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"maintenance":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"maintenanceIpWhitelist":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"sales_channel_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"salesChannelId","primary":"salesChannelId"},"currencies":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"currencyId","mapping":"sales_channel_currency","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"languages":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"languageId","mapping":"sales_channel_language","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"countries":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"countryId","mapping":"sales_channel_country","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"paymentMethods":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"paymentMethodId","mapping":"sales_channel_payment_method","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"paymentMethodIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"shippingMethods":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"shippingMethodId","mapping":"sales_channel_shipping_method","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"type":{"type":"association","relation":"many_to_one","entity":"sales_channel_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"typeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"languageId","referenceField":"id"},"customerGroup":{"type":"association","relation":"many_to_one","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"customerGroupId","referenceField":"id"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"currencyId","referenceField":"id"},"paymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"paymentMethodId","referenceField":"id"},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"shippingMethodId","referenceField":"id"},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"countryId","referenceField":"id"},"orders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelId","primary":"id"},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelId","primary":"id"},"homeCmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"homeCmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"homeCmsPage":{"type":"association","relation":"many_to_one","entity":"cms_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"homeCmsPageId","referenceField":"id"},"homeSlotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"homeEnabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"homeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"homeMetaTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"homeMetaDescription":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"homeKeywords":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"domains":{"type":"association","relation":"one_to_many","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"systemConfigs":{"type":"association","relation":"one_to_many","entity":"system_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"navigationCategory":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"navigationCategoryId","referenceField":"id"},"footerCategory":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"footerCategoryId","referenceField":"id"},"serviceCategory":{"type":"association","relation":"many_to_one","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"serviceCategoryId","referenceField":"id"},"productVisibilities":{"type":"association","relation":"one_to_many","entity":"product_visibility","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"hreflangDefaultDomain":{"type":"association","relation":"one_to_one","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"hreflangDefaultDomainId","referenceField":"id"},"mailHeaderFooter":{"type":"association","relation":"many_to_one","entity":"mail_header_footer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailHeaderFooterId","referenceField":"id"},"newsletterRecipients":{"type":"association","relation":"one_to_many","entity":"newsletter_recipient","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelId","primary":"id"},"numberRangeSalesChannels":{"type":"association","relation":"one_to_many","entity":"number_range_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"promotionSalesChannels":{"type":"association","relation":"one_to_many","entity":"promotion_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"documentBaseConfigSalesChannels":{"type":"association","relation":"one_to_many","entity":"document_base_config_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"productReviews":{"type":"association","relation":"one_to_many","entity":"product_review","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelId","primary":"id"},"seoUrls":{"type":"association","relation":"one_to_many","entity":"seo_url","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"seoUrlTemplates":{"type":"association","relation":"one_to_many","entity":"seo_url_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"mainCategories":{"type":"association","relation":"one_to_many","entity":"main_category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"productExports":{"type":"association","relation":"one_to_many","entity":"product_export","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelId","primary":"id"},"analytics":{"type":"association","relation":"one_to_one","entity":"sales_channel_analytics","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"analyticsId","referenceField":"id"},"customerGroupsRegistrations":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"customerGroupId","mapping":"customer_group_registration_sales_channels","entity":"customer_group","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"eventActions":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"eventActionId","mapping":"event_action_sales_channel","entity":"event_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"deprecated":{"deprecated_since":"v6.4.6","will_be_removed_in":"v6.5.0","replaced_by":null}},"localField":"id","referenceField":"id"},"landingPages":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"landingPageId","mapping":"landing_page_sales_channel","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"boundCustomers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"boundSalesChannelId","primary":"id"},"wishlists":{"type":"association","relation":"one_to_many","entity":"customer_wishlist","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"salesChannelId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"themes":{"type":"association","relation":"many_to_many","local":"salesChannelId","reference":"themeId","mapping":"theme_sales_channel","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"id"},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"sales_channel_analytics":{"entity":"sales_channel_analytics","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"trackingId":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"trackOrders":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"anonymizeIp":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"salesChannel":{"type":"association","relation":"one_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"analyticsId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"sales_channel_country":{"entity":"sales_channel_country","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"countryId","referenceField":"id"}}},"sales_channel_currency":{"entity":"sales_channel_currency","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"currencyId","referenceField":"id"}}},"sales_channel_domain":{"entity":"sales_channel_domain","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"currencyId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"snippetSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"languageId","referenceField":"id"},"currency":{"type":"association","relation":"many_to_one","entity":"currency","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"currencyId","referenceField":"id"},"snippetSet":{"type":"association","relation":"many_to_one","entity":"snippet_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"snippetSetId","referenceField":"id"},"salesChannelDefaultHreflang":{"type":"association","relation":"one_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"hreflangDefaultDomainId"},"productExports":{"type":"association","relation":"one_to_many","entity":"product_export","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"salesChannelDomainId","primary":"id"},"hreflangUseOnlyLocale":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"sales_channel_language":{"entity":"sales_channel_language","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"sales_channel_payment_method":{"entity":"sales_channel_payment_method","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"paymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"paymentMethod":{"type":"association","relation":"many_to_one","entity":"payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"paymentMethodId","referenceField":"id"}}},"sales_channel_shipping_method":{"entity":"sales_channel_shipping_method","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"shippingMethodId","referenceField":"id"}}},"sales_channel_translation":{"entity":"sales_channel_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"homeSlotConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"homeEnabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"homeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"homeMetaTitle":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"homeMetaDescription":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"homeKeywords":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"sales_channel_type":{"entity":"sales_channel_type","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"coverUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"iconName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"screenshotUrls":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"manufacturer":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"descriptionLong":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"sales_channel_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"salesChannelTypeId","primary":"salesChannelTypeId"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"typeId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"sales_channel_type_translation":{"entity":"sales_channel_type_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"manufacturer":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"descriptionLong":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salesChannelTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"salesChannelType":{"type":"association","relation":"many_to_one","entity":"sales_channel_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelTypeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"salutation":{"entity":"salutation","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"salutationKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"displayName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"letterName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"salutation_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"salutationId","primary":"salutationId"},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"salutationId","primary":"id"},"customerAddresses":{"type":"association","relation":"one_to_many","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"salutationId","primary":"id"},"orderCustomers":{"type":"association","relation":"one_to_many","entity":"order_customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"salutationId","primary":"id"},"orderAddresses":{"type":"association","relation":"one_to_many","entity":"order_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"salutationId","primary":"id"},"newsletterRecipients":{"type":"association","relation":"one_to_many","entity":"newsletter_recipient","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"salutationId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"salutation_translation":{"entity":"salutation_translation","properties":{"displayName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"letterName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"salutation":{"type":"association","relation":"many_to_one","entity":"salutation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salutationId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"scheduled_task":{"entity":"scheduled_task","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"scheduledTaskClass":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"runInterval":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"status":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"lastExecutionTime":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"nextExecutionTime":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"deadMessages":{"type":"association","relation":"one_to_many","entity":"dead_message","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"scheduledTaskId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"script":{"entity":"script","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"script":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"hook":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"seo_url":{"entity":"seo_url","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"foreignKey":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"routeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"pathInfo":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"seoPathInfo":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"isCanonical":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"isModified":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"isDeleted":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"seo_url_template":{"entity":"seo_url_template","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"entityName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"routeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"template":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_empty_string":true}},"isValid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"shipping_method":{"entity":"shipping_method","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"availabilityRuleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"deliveryTimeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"taxType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"taxId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"deliveryTime":{"type":"association","relation":"many_to_one","entity":"delivery_time","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"deliveryTimeId","referenceField":"id"},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":80,"translatable":true}},"trackingUrl":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"shipping_method_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"shippingMethodId","primary":"shippingMethodId"},"availabilityRule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"availabilityRuleId","referenceField":"id"},"prices":{"type":"association","relation":"one_to_many","entity":"shipping_method_price","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"shippingMethodId","primary":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"tags":{"type":"association","relation":"many_to_many","local":"shippingMethodId","reference":"tagId","mapping":"shipping_method_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"id"},"orderDeliveries":{"type":"association","relation":"one_to_many","entity":"order_delivery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"shippingMethodId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"shippingMethodId","reference":"salesChannelId","mapping":"sales_channel_shipping_method","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"shippingMethodId","primary":"id"},"tax":{"type":"association","relation":"many_to_one","entity":"tax","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"taxId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"shipping_method_price":{"entity":"shipping_method_price","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"calculation":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"calculationRuleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"quantityStart":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"quantityEnd":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"currencyPrice":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"shippingMethodId","referenceField":"id"},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"},"calculationRule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"calculationRuleId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"shipping_method_tag":{"entity":"shipping_method_tag","properties":{"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"tagId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"shippingMethodId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}}},"shipping_method_translation":{"entity":"shipping_method_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"trackingUrl":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"shippingMethod":{"type":"association","relation":"many_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"shippingMethodId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"snippet":{"entity":"snippet","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"setId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"translationKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"value":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"allow_html":true,"allow_empty_string":true}},"author":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"set":{"type":"association","relation":"many_to_one","entity":"snippet_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"setId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"snippet_set":{"entity":"snippet_set","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"baseFile":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"iso":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"snippets":{"type":"association","relation":"one_to_many","entity":"snippet","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"setId","primary":"id"},"salesChannelDomains":{"type":"association","relation":"one_to_many","entity":"sales_channel_domain","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"snippetSetId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"state_machine":{"entity":"state_machine","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"states":{"type":"association","relation":"one_to_many","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"stateMachineId","primary":"id"},"transitions":{"type":"association","relation":"one_to_many","entity":"state_machine_transition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"stateMachineId","primary":"id"},"initialStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"translations":{"type":"association","relation":"one_to_many","entity":"state_machine_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"stateMachineId","primary":"stateMachineId"},"historyEntries":{"type":"association","relation":"one_to_many","entity":"state_machine_history","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"stateMachineId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"state_machine_history":{"entity":"state_machine_history","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"stateMachineId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"stateMachine":{"type":"association","relation":"many_to_one","entity":"state_machine","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"stateMachineId","referenceField":"id"},"entityName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"entityId":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fromStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fromStateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"fromStateId","referenceField":"id"},"toStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"toStateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"toStateId","referenceField":"id"},"transitionActionName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"state_machine_state":{"entity":"state_machine_state","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"stateMachineId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"stateMachine":{"type":"association","relation":"many_to_one","entity":"state_machine","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"stateMachineId","referenceField":"id"},"fromStateMachineTransitions":{"type":"association","relation":"one_to_many","entity":"state_machine_transition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"fromStateId","primary":"id"},"toStateMachineTransitions":{"type":"association","relation":"one_to_many","entity":"state_machine_transition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"toStateId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"state_machine_state_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"stateMachineStateId","primary":"stateMachineStateId"},"orderTransactions":{"type":"association","relation":"one_to_many","entity":"order_transaction","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"stateId","primary":"id"},"orderDeliveries":{"type":"association","relation":"one_to_many","entity":"order_delivery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"stateId","primary":"id"},"orders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"stateId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"toStateMachineHistoryEntries":{"type":"association","relation":"one_to_many","entity":"state_machine_history","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"toStateId","primary":"id"},"fromStateMachineHistoryEntries":{"type":"association","relation":"one_to_many","entity":"state_machine_history","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"fromStateId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"state_machine_state_translation":{"entity":"state_machine_state_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"stateMachineStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"stateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"stateMachineStateId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"state_machine_transition":{"entity":"state_machine_transition","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"actionName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"stateMachineId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"stateMachine":{"type":"association","relation":"many_to_one","entity":"state_machine","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"stateMachineId","referenceField":"id"},"fromStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fromStateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"fromStateId","referenceField":"id"},"toStateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"toStateMachineState":{"type":"association","relation":"many_to_one","entity":"state_machine_state","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"toStateId","referenceField":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"state_machine_translation":{"entity":"state_machine_translation","properties":{"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"stateMachineId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"stateMachine":{"type":"association","relation":"many_to_one","entity":"state_machine","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"stateMachineId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"system_config":{"entity":"system_config","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"configurationKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"configurationValue":{"type":"json_object","properties":{"_value":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"salesChannelId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"tag":{"entity":"tag","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"products":{"type":"association","relation":"many_to_many","local":"tagId","reference":"productId","mapping":"product_tag","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"media":{"type":"association","relation":"many_to_many","local":"tagId","reference":"mediaId","mapping":"media_tag","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"categories":{"type":"association","relation":"many_to_many","local":"tagId","reference":"categoryId","mapping":"category_tag","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"customers":{"type":"association","relation":"many_to_many","local":"tagId","reference":"customerId","mapping":"customer_tag","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"orders":{"type":"association","relation":"many_to_many","local":"tagId","reference":"orderId","mapping":"order_tag","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"shippingMethods":{"type":"association","relation":"many_to_many","local":"tagId","reference":"shippingMethodId","mapping":"shipping_method_tag","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"newsletterRecipients":{"type":"association","relation":"many_to_many","local":"tagId","reference":"newsletterRecipientId","mapping":"newsletter_recipient_tag","entity":"newsletter_recipient","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"landingPages":{"type":"association","relation":"many_to_many","local":"tagId","reference":"landingPageId","mapping":"landing_page_tag","entity":"landing_page","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"tax":{"entity":"tax","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"taxRate":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"since":"6.4.0.0"}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true,"reversed_inherited":"tax"},"localField":"id","referenceField":"taxId","primary":"id"},"rules":{"type":"association","relation":"one_to_many","entity":"tax_rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"taxId","primary":"id"},"shippingMethods":{"type":"association","relation":"one_to_many","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"taxId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"tax_rule":{"entity":"tax_rule","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"taxRuleTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"countryId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"taxRate":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"data":{"type":"json_object","properties":{"states":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"zipCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"fromZipCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"toZipCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"taxId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"type":{"type":"association","relation":"many_to_one","entity":"tax_rule_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"taxRuleTypeId","referenceField":"id"},"country":{"type":"association","relation":"many_to_one","entity":"country","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"countryId","referenceField":"id"},"tax":{"type":"association","relation":"many_to_one","entity":"tax","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"taxId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"tax_rule_type":{"entity":"tax_rule_type","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[[]]}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"typeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"rules":{"type":"association","relation":"one_to_many","entity":"tax_rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"taxRuleTypeId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"tax_rule_type_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"taxRuleTypeId","primary":"taxRuleTypeId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"tax_rule_type_translation":{"entity":"tax_rule_type_translation","properties":{"typeName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"taxRuleTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"taxRuleType":{"type":"association","relation":"many_to_one","entity":"tax_rule_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"taxRuleTypeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"theme":{"entity":"theme","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"author":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"labels":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"helpTexts":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"previewMediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"parentThemeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"baseConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"configValues":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"translations":{"type":"association","relation":"one_to_many","entity":"theme_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"themeId","primary":"themeId"},"salesChannels":{"type":"association","relation":"many_to_many","local":"themeId","reference":"salesChannelId","mapping":"theme_sales_channel","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"media":{"type":"association","relation":"many_to_many","local":"themeId","reference":"mediaId","mapping":"theme_media","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"id"},"previewMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"previewMediaId","referenceField":"id"},"dependentThemes":{"type":"association","relation":"many_to_many","local":"parentId","reference":"childId","mapping":"theme_child","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"childThemes":{"type":"association","relation":"one_to_many","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"deprecated":{"deprecated_since":"v6.4.8","will_be_removed_in":"v6.5.0","replaced_by":null}},"localField":"id","referenceField":"parentThemeId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"theme_child":{"entity":"theme_child","properties":{"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"childId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"parentTheme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"childTheme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"childId","referenceField":"id"}}},"theme_media":{"entity":"theme_media","properties":{"themeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"theme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"themeId","referenceField":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mediaId","referenceField":"id"}}},"theme_sales_channel":{"entity":"theme_sales_channel","properties":{"salesChannelId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"themeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"theme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"themeId","referenceField":"id"},"salesChannel":{"type":"association","relation":"many_to_one","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"salesChannelId","referenceField":"id"}}},"theme_translation":{"entity":"theme_translation","properties":{"description":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"labels":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"helpTexts":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"themeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"theme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"themeId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"unit":{"entity":"unit","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"shortCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":80,"translatable":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"products":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true,"reversed_inherited":"unit"},"localField":"id","referenceField":"unitId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"unit_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"unitId","primary":"unitId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}}},"unit_translation":{"entity":"unit_translation","properties":{"shortCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"unitId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"unit":{"type":"association","relation":"many_to_one","entity":"unit","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"unitId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}}},"user":{"entity":"user","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"localeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"avatarId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"username":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"password":{"type":"password","flags":{"required":true}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":250}},"email":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"admin":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"lastUpdatedPasswordAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"timeZone":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"locale":{"type":"association","relation":"many_to_one","entity":"locale","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"localeId","referenceField":"id"},"avatarMedia":{"type":"association","relation":"one_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"avatarId","referenceField":"id"},"media":{"type":"association","relation":"one_to_many","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"userId","primary":"id"},"accessKeys":{"type":"association","relation":"one_to_many","entity":"user_access_key","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"userId","primary":"id"},"configs":{"type":"association","relation":"one_to_many","entity":"user_config","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"userId","primary":"id"},"stateMachineHistoryEntries":{"type":"association","relation":"one_to_many","entity":"state_machine_history","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"userId","primary":"id"},"importExportLogEntries":{"type":"association","relation":"one_to_many","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"userId","primary":"id"},"aclRoles":{"type":"association","relation":"many_to_many","local":"userId","reference":"aclRoleId","mapping":"acl_user_role","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"recoveryUser":{"type":"association","relation":"one_to_one","entity":"user_recovery","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"userId"},"storeToken":{"type":"string","flags":[]},"createdOrders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"createdById","primary":"id"},"updatedOrders":{"type":"association","relation":"one_to_many","entity":"order","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"updatedById","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdNotifications":{"type":"association","relation":"one_to_many","entity":"notification","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"createdByUserId","primary":"id"}}},"user_access_key":{"entity":"user_access_key","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"accessKey":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"secretAccessKey":{"type":"password","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"writeAccess":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"deprecated":{"deprecated_since":"v6.4.0","will_be_removed_in":"v6.5.0","replaced_by":null}}},"lastUsageAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"user_config":{"entity":"user_config","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"key":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"value":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"user_recovery":{"entity":"user_recovery","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"hash":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"user":{"type":"association","relation":"one_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"version":{"entity":"version","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"commits":{"type":"association","relation":"one_to_many","entity":"version_commit","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"versionId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"version_commit":{"entity":"version_commit","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"integrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"isMerge":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"message":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"search_ranking":500}},"data":{"type":"association","relation":"one_to_many","entity":"version_commit_data","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"versionCommitId","primary":"id"},"version":{"type":"association","relation":"many_to_one","entity":"version","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"versionId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"version_commit_data":{"entity":"version_commit_data","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"versionCommitId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"commit":{"type":"association","relation":"many_to_one","entity":"version_commit","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"versionCommitId","referenceField":"id"},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"integrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"entityName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500}},"entityId":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"action":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":80}},"payload":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":80}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"webhook":{"entity":"webhook","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"eventName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"errorCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"write_protected":[["system"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}},"webhook_event_log":{"entity":"webhook_event_log","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"appName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"webhookName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"eventName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"deliveryStatus":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"timestamp":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"processingTime":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appVersion":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"requestContent":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"responseContent":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"responseStatusCode":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"responseReasonPhrase":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"url":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"serializedWebhookMessage":{"type":"blob","flags":{"required":true,"write_protected":[["system"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}}}} \ No newline at end of file diff --git a/src/Service/AdminSearchService.php b/src/Service/AdminSearchService.php new file mode 100644 index 00000000..83b5af88 --- /dev/null +++ b/src/Service/AdminSearchService.php @@ -0,0 +1,98 @@ +getValue(); + + if (!$partCriteria instanceof Criteria) { + throw new \InvalidArgumentException('Parameter $criteria must be array of Criteria'); + } + + $parsed[$part->getKey()] = $partCriteria->parse(); + } + + /** @var Context|null $context */ + $context = $this->context; + + if ($context === null) { + throw new \Exception('Please call setContext method before sending the request'); + } + + try { + $response = $this->httpClient->post($this->getFullUrl(self::ADMIN_SEARCH_ENDPOINT), [ + 'headers' => $this->getBasicHeaders($additionalHeaders), + 'json' => $parsed, + ]); + + $contents = self::handleResponse($response->getBody()->getContents(), $response->getHeaders()); + + $pairs = new KeyValuePairs(); + + $data = $contents['data'] ?? []; + + foreach ($criteriaCollection as $entityName => $partCriteria) { + $itemResponse = $data[$entityName] ?? []; + + $rawData = $itemResponse['data'] ?? []; + + $rawData = array_map(function ($item) use ($entityName, $itemResponse) { + return [ + 'type' => $entityName, + 'id' => $item['id'], + 'attributes' => $item, + 'meta' => [ + 'total' => $itemResponse['total'], + 'totalCountMode' => Criteria::TOTAL_COUNT_MODE_EXACT + ], + ]; + }, $rawData); + + $itemResponse['data'] = $rawData; + + $aggregations = new AggregationResultCollection($itemResponse['aggregations'] ?? []); + + $entities = $this->hydrateSearchResult($itemResponse, $context); + + + $meta = new SearchResultMeta($itemResponse['total'] ?? 0, Criteria::TOTAL_COUNT_MODE_EXACT); + + $result = new EntitySearchResult($entityName, $meta, $entities, $aggregations, $partCriteria->getValue(), $context); + + $pairs->add(KeyValuePair::create($entityName, $result)); + } + + return $pairs; + } catch (BadResponseException $exception) { + $message = $exception->getResponse()->getBody()->getContents(); + throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); + } + } +} diff --git a/src/Service/NotificationService.php b/src/Service/NotificationService.php new file mode 100644 index 00000000..e19972c9 --- /dev/null +++ b/src/Service/NotificationService.php @@ -0,0 +1,62 @@ +httpClient->post($this->getFullUrl(self::NOTIFICATION_ENDPOINT), [ + 'headers' => $this->getBasicHeaders($additionalHeaders), + 'body' => json_encode(array_merge($notification->parse(), $additionalParams)) + ]); + + $contents = self::handleResponse($response->getBody()->getContents(), $response->getHeaders()); + + return new ApiResponse($contents, $response->getHeaders(), $response->getStatusCode()); + } catch (BadResponseException $exception) { + $message = $exception->getResponse()->getBody()->getContents(); + throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); + } + } + + public function fetchNotification(?string $latestTimestamp = null, ?int $limit = 5, array $additionalParams = [], array $additionalHeaders = []): NotificationCollection + { + try { + $response = $this->httpClient->get($this->getFullUrl(self::NOTIFICATION_MESSAGE_ENDPOINT), [ + 'headers' => $this->getBasicHeaders($additionalHeaders), + 'body' => json_encode(array_merge([ + 'latestTimestamp' => $latestTimestamp, + 'limit' => $limit, + ], $additionalParams)) + ]); + + $contents = self::handleResponse($response->getBody()->getContents(), $response->getHeaders()); + + $collection = new NotificationCollection([], $contents['timestamp']); + + if (empty($contents['notifications'])) { + return $collection; + } + + foreach ($contents['notifications'] as $notification) { + $collection->add(Notification::create($notification['status'], $notification['message'], $notification['adminOnly'], $notification['requiredPrivileges'])); + } + + return $collection; + } catch (BadResponseException $exception) { + $message = $exception->getResponse()->getBody()->getContents(); + throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); + } + } +} diff --git a/src/Service/Struct/KeyValuePair.php b/src/Service/Struct/KeyValuePair.php new file mode 100644 index 00000000..5b80b294 --- /dev/null +++ b/src/Service/Struct/KeyValuePair.php @@ -0,0 +1,53 @@ +key = $key; + $this->value = $value ?? null; + } + + /** + * @param string $key + * @param mixed|null $value + * @return self + */ + public static function create(string $key, $value): self + { + return new self($key, $value); + } + + public function parse(): array + { + return [$this->key => $this->value]; + } + + public function getKey(): string + { + return $this->key; + } + + /** + * @return mixed|null + */ + public function getValue() + { + return $this->value; + } +} diff --git a/src/Service/Struct/KeyValuePairs.php b/src/Service/Struct/KeyValuePairs.php new file mode 100644 index 00000000..54e0fe47 --- /dev/null +++ b/src/Service/Struct/KeyValuePairs.php @@ -0,0 +1,42 @@ +set($element->getKey(), $element); + } + + /** + * @param KeyValuePair $element + * @return void + */ + public function set($key, $element): void + { + parent::set($element->getKey(), $element); // TODO: Change the autogenerated stub + } + + protected function getExpectedClass(): ?string + { + return KeyValuePair::class; + } +} diff --git a/src/Service/Struct/Notification.php b/src/Service/Struct/Notification.php new file mode 100644 index 00000000..2045fd98 --- /dev/null +++ b/src/Service/Struct/Notification.php @@ -0,0 +1,68 @@ +status = $status; + $this->message = $message; + $this->adminOnly = $adminOnly; + $this->requiredPrivileges = $requiredPrivileges; + } + + public static function createNotificationSuccess(string $message, bool $adminOnly = false, array $requiredPrivileges = []): self + { + return self::create(self::SUCCESS, $message, $adminOnly, $requiredPrivileges); + } + + public static function createNotificationError(string $message, bool $adminOnly = false, array $requiredPrivileges = []): self + { + return self::create(self::ERROR, $message, $adminOnly, $requiredPrivileges); + } + + public static function createNotificationWarning(string $message, bool $adminOnly = false, array $requiredPrivileges = []): self + { + return self::create(self::WARNING, $message, $adminOnly, $requiredPrivileges); + } + + public static function createNotificationInfo(string $message, bool $adminOnly = false, array $requiredPrivileges = []): self + { + return self::create(self::INFO, $message, $adminOnly, $requiredPrivileges); + } + + public static function create(string $status, string $message, bool $adminOnly = false, array $requiredPrivileges = []): self + { + return new self($status, $message, $adminOnly, $requiredPrivileges); + } + + public function parse(): array + { + return [ + 'status' => $this->status, + 'message' => $this->message, + 'adminOnly' => $this->adminOnly, + 'requiredPrivileges' => $this->requiredPrivileges, + ]; + } +} diff --git a/src/Service/Struct/NotificationCollection.php b/src/Service/Struct/NotificationCollection.php new file mode 100644 index 00000000..132ef247 --- /dev/null +++ b/src/Service/Struct/NotificationCollection.php @@ -0,0 +1,26 @@ +latestTimestamp = $latestTimestamp; + } + + public function getLatestTimestamp(): ?string + { + return $this->latestTimestamp; + } + + protected function getExpectedClass(): ?string + { + return Notification::class; + } +} diff --git a/src/Service/SystemConfigService.php b/src/Service/SystemConfigService.php index 77cca32a..dd9d6c40 100644 --- a/src/Service/SystemConfigService.php +++ b/src/Service/SystemConfigService.php @@ -6,6 +6,8 @@ use Vin\ShopwareSdk\Data\Entity\SystemConfig\SystemConfigCollection; use Vin\ShopwareSdk\Data\Entity\SystemConfig\SystemConfigEntity; use Vin\ShopwareSdk\Exception\ShopwareResponseException; +use Vin\ShopwareSdk\Service\Struct\KeyValuePair; +use Vin\ShopwareSdk\Service\Struct\KeyValuePairs; class SystemConfigService extends ApiService { @@ -70,18 +72,28 @@ public function getConfigurationValues(string $domain, ?string $salesChannelId = } } + /** + * @deprecated use save method instead + */ public function saveConfiguration(SystemConfigEntity $configuration, ?string $salesChannelId = null, array $additionalHeaders = []): ApiResponse { if ($configuration->configurationKey === null) { throw new \Exception("Please provide configuration key"); } + $config = KeyValuePair::create($configuration->configurationKey, $configuration->configurationValue ? $configuration->configurationValue['_value'] : null); + + return $this->save($config, $salesChannelId, [], $additionalHeaders); + } + + public function save(KeyValuePair $configuration, ?string $salesChannelId = null, array $additionalParams = [], array $additionalHeaders = []): ApiResponse + { try { $response = $this->httpClient->post( $this->buildQueryUrl(self::SYSTEM_CONFIG_SAVE_ENDPOINT, array_filter(['salesChannelId' => $salesChannelId])), [ 'headers' => $this->getBasicHeaders($additionalHeaders), - 'body' => json_encode([$configuration->configurationKey => $configuration->configurationValue ? $configuration->configurationValue['_value'] : null]) + 'body' => json_encode(array_merge([$configuration->getKey() => $configuration->getValue()], $additionalParams)) ] ); @@ -94,6 +106,9 @@ public function saveConfiguration(SystemConfigEntity $configuration, ?string $sa } } + /** + * @deprecated use batchSave method instead + */ public function batchSaveConfiguration(SystemConfigCollection $systemConfigCollection, array $additionalHeaders = []): ApiResponse { $parsed = []; @@ -121,4 +136,28 @@ public function batchSaveConfiguration(SystemConfigCollection $systemConfigColle throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); } } + + public function batchSave(KeyValuePairs $configs, ?string $salesChannelId = null, array $additionalParams = [], array $additionalHeaders = []): ApiResponse + { + $parsed = []; + + /** @var KeyValuePair $item */ + foreach ($configs as $item) { + $parsed[$salesChannelId === null ? 'null' : $salesChannelId] = [$item->getKey() => $item->getValue()]; + } + + try { + $response = $this->httpClient->post($this->getFullUrl(self::SYSTEM_CONFIG_SAVE_BATCH_ENDPOINT), [ + 'headers' => $this->getBasicHeaders($additionalHeaders), + 'body' => json_encode(array_merge($parsed, $additionalParams)) + ]); + + $contents = self::handleResponse($response->getBody()->getContents(), $response->getHeaders()); + + return new ApiResponse($contents, $response->getHeaders(), $response->getStatusCode()); + } catch (BadResponseException $exception) { + $message = $exception->getResponse()->getBody()->getContents(); + throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); + } + } } diff --git a/src/Service/UserConfigService.php b/src/Service/UserConfigService.php new file mode 100644 index 00000000..8a63329f --- /dev/null +++ b/src/Service/UserConfigService.php @@ -0,0 +1,65 @@ +httpClient->get($this->getFullUrl(self::USER_CONFIG_ENDPOINT), [ + 'headers' => $this->getBasicHeaders($additionalHeaders), + 'query' => [ + 'keys' => $keys, + ] + ]); + + $contents = self::handleResponse($response->getBody()->getContents(), $response->getHeaders()); + + $data = new KeyValuePairs(); + + if (empty($contents['data'])) { + return $data; + } + + foreach ($contents['data'] as $key => $value) { + $data->add(KeyValuePair::create($key, $value)); + } + return $data; + } catch (BadResponseException $exception) { + $message = $exception->getResponse()->getBody()->getContents(); + throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); + } + } + + public function saveConfigMe(KeyValuePairs $configs, array $additionalParams = [], array $additionalHeaders = []): ApiResponse + { + $parsed = []; + + /** @var KeyValuePair $item */ + foreach ($configs as $item) { + $parsed[$item->getKey()] = $item->getValue(); + } + + try { + $response = $this->httpClient->post($this->getFullUrl(self::USER_CONFIG_ENDPOINT), [ + 'headers' => $this->getBasicHeaders($additionalHeaders), + 'body' => json_encode(array_merge($parsed, $additionalParams)) + ]); + + $contents = self::handleResponse($response->getBody()->getContents(), $response->getHeaders()); + + return new ApiResponse($contents, $response->getHeaders(), $response->getStatusCode()); + } catch (BadResponseException $exception) { + $message = $exception->getResponse()->getBody()->getContents(); + throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); + } + } +}