From a95cd039b2a73e29fd24fd1e153946e840baa323 Mon Sep 17 00:00:00 2001 From: Maksim Borodov Date: Thu, 3 Nov 2022 17:56:49 +0400 Subject: [PATCH] [SW-502] Fixed SDK, added a working schema.json from vim-sw PHP SDK --- .idea/.gitignore | 2 ++ src/api.js | 8 ++++---- src/client.js | 2 +- src/data/entity-definition.data.js | 2 +- src/data/repository.data.js | 3 +-- src/data/schema.json | 1 + 6 files changed, 10 insertions(+), 8 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 src/data/schema.json diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b4fb944 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,2 @@ +# Default ignored files +.idea diff --git a/src/api.js b/src/api.js index 94a2031..bb80f41 100644 --- a/src/api.js +++ b/src/api.js @@ -10,15 +10,15 @@ export default class Api { this.url = url; this.client = createClient(url, token, version) this.version = version; + this.schema = require('./data/schema.json') } async _initialize() { - let schema = await this.client.get('_info/entity-schema.json'); this.EntityDefinition = EntityDefinition; - Object.keys(schema.data).forEach((entityName) => { - this.EntityDefinition.add(entityName, schema.data[entityName]); + Object.keys(this.schema).forEach((entityName) => { + this.EntityDefinition.add(entityName, this.schema[entityName]); }); const hydrator = new EntityHydrator(this.EntityDefinition); @@ -39,7 +39,7 @@ export default class Api { return new Repository( route, - definition.entity, + entityName, this.client, hydrator, changesetGenerator, diff --git a/src/client.js b/src/client.js index 6bef952..40fda92 100644 --- a/src/client.js +++ b/src/client.js @@ -3,7 +3,7 @@ import axios from 'axios'; export function createClient(url, token, version) { const client = axios.create({ - baseURL: `${url}/api/v${version}` + baseURL: `${url}/api` }) client.defaultUrl = url; diff --git a/src/data/entity-definition.data.js b/src/data/entity-definition.data.js index dca25c6..b0b8ad2 100644 --- a/src/data/entity-definition.data.js +++ b/src/data/entity-definition.data.js @@ -25,7 +25,7 @@ export default class EntityDefinition { */ getPrimaryKeyFields() { return this.filterProperties((property) => { - return property.flags.primary_key === true; + return property.flags.primary === true; }); } diff --git a/src/data/repository.data.js b/src/data/repository.data.js index a764782..83e3d73 100644 --- a/src/data/repository.data.js +++ b/src/data/repository.data.js @@ -462,8 +462,7 @@ export default class Repository { let headers = { Accept: 'application/vnd.api+json', Authorization: `Bearer ${context.authToken.access}`, - 'Content-Type': 'application/json', - 'sw-api-compatibility': compatibility + 'Content-Type': 'application/json' }; if (context.languageId) { diff --git a/src/data/schema.json b/src/data/schema.json new file mode 100644 index 0000000..8168845 --- /dev/null +++ b/src/data/schema.json @@ -0,0 +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"},"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"]]}},"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"]]}},"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,"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,"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}},"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}},"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}},"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"},"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.0","will_be_removed_in":"v6.5.0","replaced_by":null}},"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"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\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.0","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"]]}}}},"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