From 726e3250b3b6007135448cb32e3ccd8214e0e104 Mon Sep 17 00:00:00 2001 From: Thuong Le Vin Date: Sun, 5 Jan 2025 20:13:18 +0700 Subject: [PATCH] Release 2.2.0 --- .github/workflows/ci.yml | 12 +- CHANGELOG.md | 19 + composer.json | 11 +- composer.lock | 947 ++++++++---------- .../MyExampleEntity/MyCustomCollection.php | 21 + .../MyExampleEntity/MyCustomDefinition.php | 38 + examples/MyExampleEntity/MyCustomEntity.php | 8 + examples/auth-config.json | 6 +- examples/custom-entity.php | 34 + examples/entity-repository.php | 11 +- examples/sync-service.php | 11 + examples/token.php | 7 +- phpstan.neon | 10 +- script/composer.lock | 108 +- script/config.json | 6 +- src/Client/AdminAuthenticator.php | 15 +- src/Client/Client.php | 60 +- src/Data/Criteria.php | 71 +- src/Data/Custom/CustomCollection.php | 21 + src/Data/Custom/CustomDefinition.php | 48 + src/Data/Custom/CustomEntity.php | 11 + src/Data/Entity/Entity.php | 2 + src/Data/Entity/EntityCollection.php | 3 +- .../Notification/NotificationCollection.php | 25 + .../Notification/NotificationDefinition.php | 51 + .../Notification/NotificationEntity.php | 31 + .../StateMachineHistoryDefinition.php | 2 +- .../SystemConfig/SystemConfigEntity.php | 4 +- .../ShopwareUnreachableException.php | 11 + src/Factory/RepositoryFactory.php | 6 +- src/Hydrate/EntityHydrator.php | 48 +- src/Hydrate/HydratorInterface.php | 2 +- src/Repository/EntityRepository.php | 150 ++- src/Repository/RepositoryInterface.php | 3 + src/Resources/entity-mapping.json | 1 + src/Resources/schema.json | 2 +- src/Service/DocumentService.php | 4 +- src/Service/Struct/SyncOperator.php | 43 +- tests/CriteriaTest.php | 226 ++--- tests/EntityHydratorTest.php | 2 +- tests/EntityRepositoryTest.php | 10 +- tests/RepositoryFactoryTest.php | 6 +- 42 files changed, 1254 insertions(+), 853 deletions(-) create mode 100644 examples/MyExampleEntity/MyCustomCollection.php create mode 100644 examples/MyExampleEntity/MyCustomDefinition.php create mode 100644 examples/MyExampleEntity/MyCustomEntity.php create mode 100644 examples/custom-entity.php create mode 100644 src/Data/Custom/CustomCollection.php create mode 100644 src/Data/Custom/CustomDefinition.php create mode 100644 src/Data/Custom/CustomEntity.php create mode 100644 src/Data/Entity/Notification/NotificationCollection.php create mode 100644 src/Data/Entity/Notification/NotificationDefinition.php create mode 100644 src/Data/Entity/Notification/NotificationEntity.php create mode 100644 src/Exception/ShopwareUnreachableException.php diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9675f96b..d61f1e31 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,17 +7,17 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: php-actions/composer@v6 with: - php_version: 8.1 + php_version: 8.2 ssh_key: ${{ secrets.ssh_key }} ssh_key_pub: ${{ secrets.ssh_key_pub }} - name: PHPStan Static Analysis uses: php-actions/phpstan@v3 with: - php_version: 8.1 + php_version: 8.2 path: src/ memory_limit: 256M @@ -25,17 +25,17 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: php-actions/composer@v6 with: - php_version: 8.1 + php_version: 8.2 ssh_key: ${{ secrets.ssh_key }} ssh_key_pub: ${{ secrets.ssh_key_pub }} - name: PHPUnit Tests uses: php-actions/phpunit@v2 with: - php_version: 8.1 + php_version: 8.2 bootstrap: vendor/autoload.php configuration: phpunit.xml ssh_key: ${{ secrets.ssh_key }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 8269b9ed..855df41f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ All notable changes to `shopware-php-sdk` will be documented in this file. Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles. +### 2.2.0 +- Compatibility with Shopware 6.6.10.0 +- Update Criteria to support partial loading (Criteria.addFields) +- Added `Repository::aggregate` method to fetch aggregated data +- Fixes #89 Missing associated entities with same type in repository requests +- Fixes #86 Notification classes (definition, entity, collection) are missing +- Fixes #96 Class "Vin\ShopwareSdk\Data\Entity\Custom\CustomDefinition" not found +- Fixes #98 Deleting a Version does not work +- Fixes add custom definition, @see: examples/custom-entity.php for code example +- Throw ShopUnreachableException when the shop server is unreachable +- Fixes `Repository.syncDeleted` to use the same http client as the repository +- Fixes #87 Extensions not loaded into ProductEntity +- Fixes #50 Work with custom entities +- Fixes #78 Allowed memory size exhausted +- Added #77 Add support for criteria in SyncService / SyncPayload (@see: examples/sync-service.php) + +### 2.1.0 +- Updated the entity-schema for Shopware version 6.6 + ### 2.0.0 - Updated the entity-schema for Shopware version 6.5 - Added EndPointTrait for supporting to remove the unnecessary last slashes of an endpoint diff --git a/composer.json b/composer.json index 6d9131ea..3e672ea0 100755 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "A PHP SDK for Shopware 6 Platform", "type": "library", "license": "MIT", - "version": "2.1.0", + "version": "2.2.0", "authors": [ { "name": "vin", @@ -15,15 +15,16 @@ "php": "^8.0 || ^8.1 || ^8.2 || ^8.3", "ext-json": "*", "guzzlehttp/guzzle": "^7.0", - "psr/http-client": "^1.0" + "psr/http-client": "^1.0", + "guzzlehttp/psr7": "^2.7" }, "require-dev": { "phpunit/phpunit": "*", "squizlabs/php_codesniffer": "3.*", "symplify/easy-coding-standard": "9.3.20", "symplify/config-transformer": "^9.3", - "phpstan/phpstan": "^0.12.89", - "symfony/var-dumper": "^5.3" + "symfony/var-dumper": "^5.3", + "phpstan/phpstan": "^2.1" }, "autoload": { "psr-4": { @@ -36,7 +37,7 @@ } }, "scripts": { - "ecs": "vendor/bin/ecs check src", + "ecs": "vendor/bin/ecs check src --fix", "test": "vendor/bin/phpunit", "check-style": "phpcs src", "analyse": "vendor/bin/phpstan analyse src", diff --git a/composer.lock b/composer.lock index 0c31fd12..b87ca780 100644 --- a/composer.lock +++ b/composer.lock @@ -4,26 +4,26 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "34140d81c5f9a70c44f87678e876903e", + "content-hash": "3c6f1e36d19b3f08aee6a60e036990ba", "packages": [ { "name": "guzzlehttp/guzzle", - "version": "7.5.0", + "version": "7.9.2", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba" + "reference": "d281ed313b989f213357e3be1a179f02196ac99b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba", - "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5", - "guzzlehttp/psr7": "^1.9 || ^2.4", + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", + "guzzlehttp/psr7": "^2.7.0", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -32,10 +32,11 @@ "psr/http-client-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", + "bamarni/composer-bin-plugin": "^1.8.2", "ext-curl": "*", - "php-http/client-integration-tests": "^3.0", - "phpunit/phpunit": "^8.5.29 || ^9.5.23", + "guzzle/client-integration-tests": "3.0.2", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { @@ -48,9 +49,6 @@ "bamarni-bin": { "bin-links": true, "forward-command": false - }, - "branch-alias": { - "dev-master": "7.5-dev" } }, "autoload": { @@ -116,7 +114,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.5.0" + "source": "https://github.com/guzzle/guzzle/tree/7.9.2" }, "funding": [ { @@ -132,38 +130,37 @@ "type": "tidelift" } ], - "time": "2022-08-28T15:39:27+00:00" + "time": "2024-07-24T11:22:20+00:00" }, { "name": "guzzlehttp/promises", - "version": "1.5.2", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "b94b2807d85443f9719887892882d0329d1e2598" + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598", - "reference": "b94b2807d85443f9719887892882d0329d1e2598", + "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", "shasum": "" }, "require": { - "php": ">=5.5" + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "symfony/phpunit-bridge": "^4.4 || ^5.1" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.5-dev" + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { "GuzzleHttp\\Promise\\": "src/" } @@ -200,7 +197,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/1.5.2" + "source": "https://github.com/guzzle/promises/tree/2.0.4" }, "funding": [ { @@ -216,26 +213,26 @@ "type": "tidelift" } ], - "time": "2022-08-28T14:55:35+00:00" + "time": "2024-10-17T10:06:22+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.4.3", + "version": "2.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "67c26b443f348a51926030c83481b85718457d3d" + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d", - "reference": "67c26b443f348a51926030c83481b85718457d3d", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", "psr/http-factory": "^1.0", - "psr/http-message": "^1.0", + "psr/http-message": "^1.1 || ^2.0", "ralouphie/getallheaders": "^3.0" }, "provide": { @@ -243,9 +240,9 @@ "psr/http-message-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", - "http-interop/http-factory-tests": "^0.9", - "phpunit/phpunit": "^8.5.29 || ^9.5.23" + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -255,9 +252,6 @@ "bamarni-bin": { "bin-links": true, "forward-command": false - }, - "branch-alias": { - "dev-master": "2.4-dev" } }, "autoload": { @@ -319,7 +313,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.4.3" + "source": "https://github.com/guzzle/psr7/tree/2.7.0" }, "funding": [ { @@ -335,25 +329,25 @@ "type": "tidelift" } ], - "time": "2022-10-26T14:07:24+00:00" + "time": "2024-07-18T11:15:46+00:00" }, { "name": "psr/http-client", - "version": "1.0.1", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/php-fig/http-client.git", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621" + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", "shasum": "" }, "require": { "php": "^7.0 || ^8.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -373,7 +367,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP clients", @@ -385,27 +379,27 @@ "psr-18" ], "support": { - "source": "https://github.com/php-fig/http-client/tree/master" + "source": "https://github.com/php-fig/http-client" }, - "time": "2020-06-29T06:28:15+00:00" + "time": "2023-09-23T14:17:50+00:00" }, { "name": "psr/http-factory", - "version": "1.0.1", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { - "php": ">=7.0.0", - "psr/http-message": "^1.0" + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -425,10 +419,10 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], - "description": "Common interfaces for PSR-7 HTTP message factories", + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ "factory", "http", @@ -440,31 +434,31 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-factory/tree/master" + "source": "https://github.com/php-fig/http-factory" }, - "time": "2019-04-30T12:38:16+00:00" + "time": "2024-04-15T12:06:14+00:00" }, { "name": "psr/http-message", - "version": "1.0.1", + "version": "2.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -479,7 +473,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP messages", @@ -493,9 +487,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-message/tree/master" + "source": "https://github.com/php-fig/http-message/tree/2.0" }, - "time": "2016-08-06T14:39:51+00:00" + "time": "2023-04-04T09:54:51+00:00" }, { "name": "ralouphie/getallheaders", @@ -543,29 +537,29 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.5.2", + "version": "v3.5.1", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66" + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66", - "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.1" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "2.5-dev" - }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" } }, "autoload": { @@ -590,7 +584,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" }, "funding": [ { @@ -606,92 +600,22 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:53:40+00:00" + "time": "2024-09-25T14:20:29+00:00" } ], "packages-dev": [ - { - "name": "doctrine/instantiator", - "version": "1.4.1", - "source": { - "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc", - "shasum": "" - }, - "require": { - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "doctrine/coding-standard": "^9", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^0.16 || ^1", - "phpstan/phpstan": "^1.4", - "phpstan/phpstan-phpunit": "^1", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.22" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "https://ocramius.github.io/" - } - ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", - "keywords": [ - "constructor", - "instantiate" - ], - "support": { - "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.4.1" - }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", - "type": "tidelift" - } - ], - "time": "2022-03-03T08:28:38+00:00" - }, { "name": "myclabs/deep-copy", - "version": "1.11.0", + "version": "1.12.1", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614" + "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845", + "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845", "shasum": "" }, "require": { @@ -699,11 +623,12 @@ }, "conflict": { "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3,<3.2.2" + "doctrine/common": "<2.13.3 || >=3 <3.2.2" }, "require-dev": { "doctrine/collections": "^1.6.8", "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" }, "type": "library", @@ -729,7 +654,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0" + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1" }, "funding": [ { @@ -737,29 +662,31 @@ "type": "tidelift" } ], - "time": "2022-03-03T13:19:32+00:00" + "time": "2024-11-08T17:47:46+00:00" }, { "name": "nikic/php-parser", - "version": "v4.15.2", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc" + "reference": "447a020a1f875a434d62f2a401f53b82a396e494" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc", - "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494", + "reference": "447a020a1f875a434d62f2a401f53b82a396e494", "shasum": "" }, "require": { + "ext-ctype": "*", + "ext-json": "*", "ext-tokenizer": "*", - "php": ">=7.0" + "php": ">=7.4" }, "require-dev": { "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + "phpunit/phpunit": "^9.0" }, "bin": [ "bin/php-parse" @@ -767,7 +694,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.9-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -791,26 +718,27 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0" }, - "time": "2022-11-12T15:38:23+00:00" + "time": "2024-12-30T11:07:19+00:00" }, { "name": "phar-io/manifest", - "version": "2.0.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/phar-io/manifest.git", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + "reference": "54750ef60c58e43759730615a392c31c80e23176" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", "shasum": "" }, "require": { "ext-dom": "*", + "ext-libxml": "*", "ext-phar": "*", "ext-xmlwriter": "*", "phar-io/version": "^3.0.1", @@ -851,9 +779,15 @@ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", "support": { "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/2.0.3" + "source": "https://github.com/phar-io/manifest/tree/2.0.4" }, - "time": "2021-07-20T11:28:43+00:00" + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" }, { "name": "phar-io/version", @@ -908,20 +842,20 @@ }, { "name": "phpstan/phpstan", - "version": "0.12.100", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "48236ddf823547081b2b153d1cd2994b784328c3" + "reference": "2392d360fdf54ea253aa6c68cad1d4ba2e54e927" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/48236ddf823547081b2b153d1cd2994b784328c3", - "reference": "48236ddf823547081b2b153d1cd2994b784328c3", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/2392d360fdf54ea253aa6c68cad1d4ba2e54e927", + "reference": "2392d360fdf54ea253aa6c68cad1d4ba2e54e927", "shasum": "" }, "require": { - "php": "^7.1|^8.0" + "php": "^7.4|^8.0" }, "conflict": { "phpstan/phpstan-shim": "*" @@ -931,11 +865,6 @@ "phpstan.phar" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.12-dev" - } - }, "autoload": { "files": [ "bootstrap.php" @@ -946,9 +875,16 @@ "MIT" ], "description": "PHPStan - PHP Static Analysis Tool", + "keywords": [ + "dev", + "static analysis" + ], "support": { + "docs": "https://phpstan.org/user-guide/getting-started", + "forum": "https://github.com/phpstan/phpstan/discussions", "issues": "https://github.com/phpstan/phpstan/issues", - "source": "https://github.com/phpstan/phpstan/tree/0.12.100" + "security": "https://github.com/phpstan/phpstan/security/policy", + "source": "https://github.com/phpstan/phpstan-src" }, "funding": [ { @@ -958,54 +894,50 @@ { "url": "https://github.com/phpstan", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", - "type": "tidelift" } ], - "time": "2022-11-01T09:52:08+00:00" + "time": "2024-12-31T07:30:03+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.22", + "version": "11.0.8", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df" + "reference": "418c59fd080954f8c4aa5631d9502ecda2387118" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e4bf60d2220b4baaa0572986b5d69870226b06df", - "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/418c59fd080954f8c4aa5631d9502ecda2387118", + "reference": "418c59fd080954f8c4aa5631d9502ecda2387118", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.14", - "php": ">=7.3", - "phpunit/php-file-iterator": "^3.0.3", - "phpunit/php-text-template": "^2.0.2", - "sebastian/code-unit-reverse-lookup": "^2.0.2", - "sebastian/complexity": "^2.0", - "sebastian/environment": "^5.1.2", - "sebastian/lines-of-code": "^1.0.3", - "sebastian/version": "^3.0.1", - "theseer/tokenizer": "^1.2.0" + "nikic/php-parser": "^5.3.1", + "php": ">=8.2", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-text-template": "^4.0.1", + "sebastian/code-unit-reverse-lookup": "^4.0.1", + "sebastian/complexity": "^4.0.1", + "sebastian/environment": "^7.2.0", + "sebastian/lines-of-code": "^3.0.1", + "sebastian/version": "^5.0.2", + "theseer/tokenizer": "^1.2.3" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.5.0" }, "suggest": { - "ext-pcov": "*", - "ext-xdebug": "*" + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "9.2-dev" + "dev-main": "11.0.x-dev" } }, "autoload": { @@ -1033,7 +965,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.22" + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.8" }, "funding": [ { @@ -1041,32 +974,32 @@ "type": "github" } ], - "time": "2022-12-18T16:40:55+00:00" + "time": "2024-12-11T12:34:27+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "3.0.6", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" + "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", - "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6", + "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -1093,7 +1026,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0" }, "funding": [ { @@ -1101,28 +1035,28 @@ "type": "github" } ], - "time": "2021-12-02T12:48:52+00:00" + "time": "2024-08-27T05:02:59+00:00" }, { "name": "phpunit/php-invoker", - "version": "3.1.1", + "version": "5.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", - "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { "ext-pcntl": "*", - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "suggest": { "ext-pcntl": "*" @@ -1130,7 +1064,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -1156,7 +1090,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-invoker/issues", - "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + "security": "https://github.com/sebastianbergmann/php-invoker/security/policy", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1" }, "funding": [ { @@ -1164,32 +1099,32 @@ "type": "github" } ], - "time": "2020-09-28T05:58:55+00:00" + "time": "2024-07-03T05:07:44+00:00" }, { "name": "phpunit/php-text-template", - "version": "2.0.4", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", - "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -1215,7 +1150,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-text-template/issues", - "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1" }, "funding": [ { @@ -1223,32 +1159,32 @@ "type": "github" } ], - "time": "2020-10-26T05:33:50+00:00" + "time": "2024-07-03T05:08:43+00:00" }, { "name": "phpunit/php-timer", - "version": "5.0.3", + "version": "7.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", - "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-main": "7.0-dev" } }, "autoload": { @@ -1274,7 +1210,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + "security": "https://github.com/sebastianbergmann/php-timer/security/policy", + "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1" }, "funding": [ { @@ -1282,54 +1219,52 @@ "type": "github" } ], - "time": "2020-10-26T13:16:10+00:00" + "time": "2024-07-03T05:09:35+00:00" }, { "name": "phpunit/phpunit", - "version": "9.5.27", + "version": "11.5.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38" + "reference": "153d0531b9f7e883c5053160cad6dd5ac28140b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a2bc7ffdca99f92d959b3f2270529334030bba38", - "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/153d0531b9f7e883c5053160cad6dd5ac28140b3", + "reference": "153d0531b9f7e883c5053160cad6dd5ac28140b3", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", "ext-mbstring": "*", "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.10.1", - "phar-io/manifest": "^2.0.3", - "phar-io/version": "^3.0.2", - "php": ">=7.3", - "phpunit/php-code-coverage": "^9.2.13", - "phpunit/php-file-iterator": "^3.0.5", - "phpunit/php-invoker": "^3.1.1", - "phpunit/php-text-template": "^2.0.3", - "phpunit/php-timer": "^5.0.2", - "sebastian/cli-parser": "^1.0.1", - "sebastian/code-unit": "^1.0.6", - "sebastian/comparator": "^4.0.8", - "sebastian/diff": "^4.0.3", - "sebastian/environment": "^5.1.3", - "sebastian/exporter": "^4.0.5", - "sebastian/global-state": "^5.0.1", - "sebastian/object-enumerator": "^4.0.3", - "sebastian/resource-operations": "^3.0.3", - "sebastian/type": "^3.2", - "sebastian/version": "^3.0.2" + "myclabs/deep-copy": "^1.12.1", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.2", + "phpunit/php-code-coverage": "^11.0.8", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-invoker": "^5.0.1", + "phpunit/php-text-template": "^4.0.1", + "phpunit/php-timer": "^7.0.1", + "sebastian/cli-parser": "^3.0.2", + "sebastian/code-unit": "^3.0.2", + "sebastian/comparator": "^6.2.1", + "sebastian/diff": "^6.0.2", + "sebastian/environment": "^7.2.0", + "sebastian/exporter": "^6.3.0", + "sebastian/global-state": "^7.0.2", + "sebastian/object-enumerator": "^6.0.1", + "sebastian/type": "^5.1.0", + "sebastian/version": "^5.0.2", + "staabm/side-effects-detector": "^1.0.5" }, "suggest": { - "ext-soap": "*", - "ext-xdebug": "*" + "ext-soap": "To be able to generate mocks based on WSDL files" }, "bin": [ "phpunit" @@ -1337,7 +1272,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.5-dev" + "dev-main": "11.5-dev" } }, "autoload": { @@ -1368,7 +1303,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.27" + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.2" }, "funding": [ { @@ -1384,32 +1320,32 @@ "type": "tidelift" } ], - "time": "2022-12-09T07:31:23+00:00" + "time": "2024-12-21T05:51:08+00:00" }, { "name": "sebastian/cli-parser", - "version": "1.0.1", + "version": "3.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/cli-parser.git", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -1432,7 +1368,8 @@ "homepage": "https://github.com/sebastianbergmann/cli-parser", "support": { "issues": "https://github.com/sebastianbergmann/cli-parser/issues", - "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2" }, "funding": [ { @@ -1440,32 +1377,32 @@ "type": "github" } ], - "time": "2020-09-28T06:08:49+00:00" + "time": "2024-07-03T04:41:36+00:00" }, { "name": "sebastian/code-unit", - "version": "1.0.8", + "version": "3.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" + "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", - "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca", + "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -1488,7 +1425,8 @@ "homepage": "https://github.com/sebastianbergmann/code-unit", "support": { "issues": "https://github.com/sebastianbergmann/code-unit/issues", - "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + "security": "https://github.com/sebastianbergmann/code-unit/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.2" }, "funding": [ { @@ -1496,32 +1434,32 @@ "type": "github" } ], - "time": "2020-10-26T13:08:54+00:00" + "time": "2024-12-12T09:59:06+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", - "version": "2.0.3", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + "reference": "183a9b2632194febd219bb9246eee421dad8d45e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", - "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -1543,7 +1481,8 @@ "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", "support": { "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", - "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1" }, "funding": [ { @@ -1551,34 +1490,36 @@ "type": "github" } ], - "time": "2020-09-28T05:30:19+00:00" + "time": "2024-07-03T04:45:54+00:00" }, { "name": "sebastian/comparator", - "version": "4.0.8", + "version": "6.2.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "fa0f136dd2334583309d32b62544682ee972b51a" + "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", - "reference": "fa0f136dd2334583309d32b62544682ee972b51a", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739", + "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/diff": "^4.0", - "sebastian/exporter": "^4.0" + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/diff": "^6.0", + "sebastian/exporter": "^6.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.4" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "6.2-dev" } }, "autoload": { @@ -1617,7 +1558,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1" }, "funding": [ { @@ -1625,33 +1567,33 @@ "type": "github" } ], - "time": "2022-09-14T12:41:17+00:00" + "time": "2024-10-31T05:30:08+00:00" }, { "name": "sebastian/complexity", - "version": "2.0.2", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0", "shasum": "" }, "require": { - "nikic/php-parser": "^4.7", - "php": ">=7.3" + "nikic/php-parser": "^5.0", + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -1674,7 +1616,8 @@ "homepage": "https://github.com/sebastianbergmann/complexity", "support": { "issues": "https://github.com/sebastianbergmann/complexity/issues", - "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1" }, "funding": [ { @@ -1682,33 +1625,33 @@ "type": "github" } ], - "time": "2020-10-26T15:52:27+00:00" + "time": "2024-07-03T04:49:50+00:00" }, { "name": "sebastian/diff", - "version": "4.0.4", + "version": "6.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d" + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3", + "phpunit/phpunit": "^11.0", "symfony/process": "^4.2 || ^5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -1740,7 +1683,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2" }, "funding": [ { @@ -1748,27 +1692,27 @@ "type": "github" } ], - "time": "2020-10-26T13:10:38+00:00" + "time": "2024-07-03T04:53:05+00:00" }, { "name": "sebastian/environment", - "version": "5.1.4", + "version": "7.2.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7" + "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", + "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "suggest": { "ext-posix": "*" @@ -1776,7 +1720,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.1-dev" + "dev-main": "7.2-dev" } }, "autoload": { @@ -1795,7 +1739,7 @@ } ], "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "http://www.github.com/sebastianbergmann/environment", + "homepage": "https://github.com/sebastianbergmann/environment", "keywords": [ "Xdebug", "environment", @@ -1803,7 +1747,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4" + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0" }, "funding": [ { @@ -1811,34 +1756,34 @@ "type": "github" } ], - "time": "2022-04-03T09:37:03+00:00" + "time": "2024-07-03T04:54:44+00:00" }, { "name": "sebastian/exporter", - "version": "4.0.5", + "version": "6.3.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" + "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3", + "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/recursion-context": "^4.0" + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/recursion-context": "^6.0" }, "require-dev": { - "ext-mbstring": "*", - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "6.1-dev" } }, "autoload": { @@ -1880,7 +1825,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0" }, "funding": [ { @@ -1888,38 +1834,35 @@ "type": "github" } ], - "time": "2022-09-14T06:03:37+00:00" + "time": "2024-12-05T09:17:50+00:00" }, { "name": "sebastian/global-state", - "version": "5.0.5", + "version": "7.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" + "reference": "3be331570a721f9a4b5917f4209773de17f747d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/object-reflector": "^2.0", - "sebastian/recursion-context": "^4.0" + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" }, "require-dev": { "ext-dom": "*", - "phpunit/phpunit": "^9.3" - }, - "suggest": { - "ext-uopz": "*" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-main": "7.0-dev" } }, "autoload": { @@ -1938,13 +1881,14 @@ } ], "description": "Snapshotting of global state", - "homepage": "http://www.github.com/sebastianbergmann/global-state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", "keywords": [ "global state" ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2" }, "funding": [ { @@ -1952,33 +1896,33 @@ "type": "github" } ], - "time": "2022-02-14T08:28:10+00:00" + "time": "2024-07-03T04:57:36+00:00" }, { "name": "sebastian/lines-of-code", - "version": "1.0.3", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a", "shasum": "" }, "require": { - "nikic/php-parser": "^4.6", - "php": ">=7.3" + "nikic/php-parser": "^5.0", + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -2001,7 +1945,8 @@ "homepage": "https://github.com/sebastianbergmann/lines-of-code", "support": { "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", - "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1" }, "funding": [ { @@ -2009,34 +1954,34 @@ "type": "github" } ], - "time": "2020-11-28T06:42:11+00:00" + "time": "2024-07-03T04:58:38+00:00" }, { "name": "sebastian/object-enumerator", - "version": "4.0.4", + "version": "6.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" + "reference": "f5b498e631a74204185071eb41f33f38d64608aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", - "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/object-reflector": "^2.0", - "sebastian/recursion-context": "^4.0" + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -2058,7 +2003,8 @@ "homepage": "https://github.com/sebastianbergmann/object-enumerator/", "support": { "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", - "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1" }, "funding": [ { @@ -2066,32 +2012,32 @@ "type": "github" } ], - "time": "2020-10-26T13:12:34+00:00" + "time": "2024-07-03T05:00:13+00:00" }, { "name": "sebastian/object-reflector", - "version": "2.0.4", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", - "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -2113,7 +2059,8 @@ "homepage": "https://github.com/sebastianbergmann/object-reflector/", "support": { "issues": "https://github.com/sebastianbergmann/object-reflector/issues", - "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + "security": "https://github.com/sebastianbergmann/object-reflector/security/policy", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1" }, "funding": [ { @@ -2121,32 +2068,32 @@ "type": "github" } ], - "time": "2020-10-26T13:14:26+00:00" + "time": "2024-07-03T05:01:32+00:00" }, { "name": "sebastian/recursion-context", - "version": "4.0.4", + "version": "6.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172" + "reference": "694d156164372abbd149a4b85ccda2e4670c0e16" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16", + "reference": "694d156164372abbd149a4b85ccda2e4670c0e16", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -2173,10 +2120,11 @@ } ], "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2" }, "funding": [ { @@ -2184,32 +2132,32 @@ "type": "github" } ], - "time": "2020-10-26T13:17:30+00:00" + "time": "2024-07-03T05:10:34+00:00" }, { - "name": "sebastian/resource-operations", - "version": "3.0.3", + "name": "sebastian/type", + "version": "5.1.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac", + "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^11.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "5.1-dev" } }, "autoload": { @@ -2224,14 +2172,16 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Provides a list of PHP built-in functions that operate on resources", - "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", "support": { - "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + "issues": "https://github.com/sebastianbergmann/type/issues", + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/tree/5.1.0" }, "funding": [ { @@ -2239,32 +2189,29 @@ "type": "github" } ], - "time": "2020-09-28T06:45:17+00:00" + "time": "2024-09-17T13:12:04+00:00" }, { - "name": "sebastian/type", - "version": "3.2.0", + "name": "sebastian/version", + "version": "5.0.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/type.git", - "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e" + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", - "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874", "shasum": "" }, "require": { - "php": ">=7.3" - }, - "require-dev": { - "phpunit/phpunit": "^9.5" + "php": ">=8.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -2283,11 +2230,12 @@ "role": "lead" } ], - "description": "Collection of value objects that represent the types of the PHP type system", - "homepage": "https://github.com/sebastianbergmann/type", + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", "support": { - "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/3.2.0" + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/5.0.2" }, "funding": [ { @@ -2295,77 +2243,76 @@ "type": "github" } ], - "time": "2022-09-12T14:47:03+00:00" + "time": "2024-10-09T05:16:32+00:00" }, { - "name": "sebastian/version", - "version": "3.0.2", + "name": "staabm/side-effects-detector", + "version": "1.0.5", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/version.git", - "reference": "c6c1022351a901512170118436c764e473f6de8c" + "url": "https://github.com/staabm/side-effects-detector.git", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", - "reference": "c6c1022351a901512170118436c764e473f6de8c", + "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163", "shasum": "" }, "require": { - "php": ">=7.3" + "ext-tokenizer": "*", + "php": "^7.4 || ^8.0" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } + "require-dev": { + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.6", + "phpunit/phpunit": "^9.6.21", + "symfony/var-dumper": "^5.4.43", + "tomasvotruba/type-coverage": "1.0.0", + "tomasvotruba/unused-public": "1.0.0" }, + "type": "library", "autoload": { "classmap": [ - "src/" + "lib/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" - } + "description": "A static analysis tool to detect side effects in PHP code", + "keywords": [ + "static analysis" ], - "description": "Library that helps with managing the version number of Git-hosted PHP projects", - "homepage": "https://github.com/sebastianbergmann/version", "support": { - "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + "issues": "https://github.com/staabm/side-effects-detector/issues", + "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://github.com/staabm", "type": "github" } ], - "time": "2020-09-28T06:39:44+00:00" + "time": "2024-10-20T05:08:20+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.27.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", - "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-mbstring": "*" @@ -2375,12 +2322,9 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.27-dev" - }, "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -2415,7 +2359,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" }, "funding": [ { @@ -2431,33 +2375,30 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.27.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", - "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.27-dev" - }, "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -2498,7 +2439,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" }, "funding": [ { @@ -2514,20 +2455,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/var-dumper", - "version": "v5.4.14", + "version": "v5.4.48", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "6894d06145fefebd9a4c7272baa026a1c394a430" + "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6894d06145fefebd9a4c7272baa026a1c394a430", - "reference": "6894d06145fefebd9a4c7272baa026a1c394a430", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8", + "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8", "shasum": "" }, "require": { @@ -2536,12 +2477,12 @@ "symfony/polyfill-php80": "^1.16" }, "conflict": { - "phpunit/phpunit": "<5.4.3", "symfony/console": "<4.4" }, "require-dev": { "ext-iconv": "*", "symfony/console": "^4.4|^5.0|^6.0", + "symfony/http-kernel": "^4.4|^5.0|^6.0", "symfony/process": "^4.4|^5.0|^6.0", "symfony/uid": "^5.1|^6.0", "twig/twig": "^2.13|^3.0.4" @@ -2587,7 +2528,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.4.14" + "source": "https://github.com/symfony/var-dumper/tree/v5.4.48" }, "funding": [ { @@ -2603,7 +2544,7 @@ "type": "tidelift" } ], - "time": "2022-10-07T08:01:20+00:00" + "time": "2024-11-08T15:21:10+00:00" }, { "name": "symplify/config-transformer", @@ -2702,16 +2643,16 @@ }, { "name": "theseer/tokenizer", - "version": "1.2.1", + "version": "1.2.3", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", "shasum": "" }, "require": { @@ -2740,7 +2681,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/1.2.1" + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" }, "funding": [ { @@ -2748,7 +2689,7 @@ "type": "github" } ], - "time": "2021-07-28T10:34:58+00:00" + "time": "2024-03-03T12:36:25+00:00" } ], "aliases": [], @@ -2757,9 +2698,9 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "^7.4 || ^8.0 || ^8.1", + "php": "^8.0 || ^8.1 || ^8.2 || ^8.3", "ext-json": "*" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } diff --git a/examples/MyExampleEntity/MyCustomCollection.php b/examples/MyExampleEntity/MyCustomCollection.php new file mode 100644 index 00000000..ae5581b8 --- /dev/null +++ b/examples/MyExampleEntity/MyCustomCollection.php @@ -0,0 +1,21 @@ +getEntityName(), new PropertyCollection([ + new Property('id', 'uuid', new FlagCollection([new Flag('read_protected', json_decode('[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]', true)), new Flag('primary_key', 1), new Flag('required', 1), ]), []), + new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', json_decode('[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]', true)), new Flag('required', 1), ]), []), + new Property('updatedAt', 'date', new FlagCollection([new Flag('read_protected', json_decode('[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]', true)), ]), []), + ])); + } +} diff --git a/examples/MyExampleEntity/MyCustomEntity.php b/examples/MyExampleEntity/MyCustomEntity.php new file mode 100644 index 00000000..230ea2aa --- /dev/null +++ b/examples/MyExampleEntity/MyCustomEntity.php @@ -0,0 +1,8 @@ + \examples\MyExampleEntity\MyCustomDefinition::class]); + + $myEntityRepository = RepositoryFactory::create(\examples\MyExampleEntity\MyCustomDefinition::ENTITY_NAME); + + $criteria = new Criteria(); + $criteria->setLimit(1); + + $entityIds = $myEntityRepository->search($criteria, $context); + + dd($entityIds); + } +} + +$example = new MyCustomEntityExample(); +$example->execute(); \ No newline at end of file diff --git a/examples/entity-repository.php b/examples/entity-repository.php index 2d8489f3..08214c25 100644 --- a/examples/entity-repository.php +++ b/examples/entity-repository.php @@ -25,7 +25,16 @@ public function execute(): void $productRepository = RepositoryFactory::create(ProductDefinition::ENTITY_NAME); $criteria = new Criteria(); - $productIds = $productRepository->searchIds($criteria, $context); + $criteria->setIds(['0191c287798e734f91be7ae3ceeff481']); + $criteria->addAssociation('swagDynamicAccessRules'); + $criteria->addAssociation('manufacturer'); + try { + $productIds = $productRepository->search($criteria, $context); + + } catch (\Throwable $exception) { + dd($exception); + } + dd($productIds); // Search api using repositories and criteria $criteria = new Criteria(); diff --git a/examples/sync-service.php b/examples/sync-service.php index e74e5586..b6fef2a2 100644 --- a/examples/sync-service.php +++ b/examples/sync-service.php @@ -31,11 +31,22 @@ public function execute(): void ['id' => '442a39e14f774bf8853f7aa49a123021', 'name' => 'Harry potter book 2', 'active' => true], ])); + // sync delete using payload $payload->set(CategoryDefinition::ENTITY_NAME . '-delete', new SyncOperator(CategoryDefinition::ENTITY_NAME, SyncOperator::DELETE_OPERATOR, [ ['id' => '9c43e9029c0047cbb7b9777060f7064f'], ['id' => 'd32da4c846544f4b8a63357fe83dd827'], ])); + // sync delete using criteria + $criteria = new Criteria(); + $criteria->addFilter(new \Vin\ShopwareSdk\Data\Filter\EqualsFilter('name', 'Want to delete category')); + $payload->set(CategoryDefinition::ENTITY_NAME . '-delete', new SyncOperator( + CategoryDefinition::ENTITY_NAME, + SyncOperator::DELETE_OPERATOR, + [], + $criteria + )); + dump("============================================"); dump("Sync response"); $response = $syncService->sync($payload); diff --git a/examples/token.php b/examples/token.php index b928b154..908eaed5 100644 --- a/examples/token.php +++ b/examples/token.php @@ -8,4 +8,9 @@ $config = json_decode(file_get_contents(__DIR__ . '/auth-config.json'), true); $grantType = new PasswordGrantType($config['username'], $config['password']); $adminClient = new AdminAuthenticator($grantType, $config['shop_url']); -$accessToken = $adminClient->fetchAccessToken(); \ No newline at end of file + +try { + $accessToken = $adminClient->fetchAccessToken(); +} catch (\Throwable $exception) { + dd($exception); +} diff --git a/phpstan.neon b/phpstan.neon index f53bb113..94c9d4b4 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,8 +1,6 @@ parameters: level: 8 treatPhpDocTypesAsCertain: false - checkMissingIterableValueType: false - checkGenericClassInNonGenericObjectType: false inferPrivatePropertyTypeFromConstructor: true reportUnmatchedIgnoredErrors: true # Could be set to false if necessary during PHPStan update tmpDir: ./var/cache/phpstan @@ -12,9 +10,13 @@ parameters: excludePaths: - src/Service/WebhookAuthenticator.php - excludes_analyse: - ignoreErrors: + - + identifier: missingType.iterableValue + + - + identifier: missingType.generics + - message: '#Unsafe usage of new static\(\)#' path: src/Data/Collection.php diff --git a/script/composer.lock b/script/composer.lock index dd45838f..b6ba353f 100644 --- a/script/composer.lock +++ b/script/composer.lock @@ -134,16 +134,16 @@ }, { "name": "guzzlehttp/promises", - "version": "2.0.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8" + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", - "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", + "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", "shasum": "" }, "require": { @@ -197,7 +197,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.3" + "source": "https://github.com/guzzle/promises/tree/2.0.4" }, "funding": [ { @@ -213,7 +213,7 @@ "type": "tidelift" } ], - "time": "2024-07-18T10:29:17+00:00" + "time": "2024-10-17T10:06:22+00:00" }, { "name": "guzzlehttp/psr7", @@ -333,27 +333,27 @@ }, { "name": "laminas/laminas-code", - "version": "4.14.0", + "version": "4.16.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-code.git", - "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c" + "reference": "1793e78dad4108b594084d05d1fb818b85b110af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-code/zipball/562e02b7d85cb9142b5116cc76c4c7c162a11a1c", - "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c", + "url": "https://api.github.com/repos/laminas/laminas-code/zipball/1793e78dad4108b594084d05d1fb818b85b110af", + "reference": "1793e78dad4108b594084d05d1fb818b85b110af", "shasum": "" }, "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" }, "require-dev": { "doctrine/annotations": "^2.0.1", "ext-phar": "*", - "laminas/laminas-coding-standard": "^2.5.0", - "laminas/laminas-stdlib": "^3.17.0", - "phpunit/phpunit": "^10.3.3", + "laminas/laminas-coding-standard": "^3.0.0", + "laminas/laminas-stdlib": "^3.18.0", + "phpunit/phpunit": "^10.5.37", "psalm/plugin-phpunit": "^0.19.0", "vimeo/psalm": "^5.15.0" }, @@ -392,7 +392,7 @@ "type": "community_bridge" } ], - "time": "2024-06-17T08:50:25+00:00" + "time": "2024-11-20T13:15:13+00:00" }, { "name": "psr/http-client", @@ -600,16 +600,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v3.5.0", + "version": "v3.5.1", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", - "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", "shasum": "" }, "require": { @@ -617,12 +617,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "3.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -647,7 +647,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" }, "funding": [ { @@ -663,24 +663,24 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2024-09-25T14:20:29+00:00" }, { "name": "vin-sw/shopware-sdk", - "version": "2.0.0", + "version": "2.2.0", "dist": { "type": "path", "url": "..", - "reference": "471f0a0ef97f52f61c6fe40ea0ae3df636596855" + "reference": "facd49866a0f25be646455af5ad16143dceef2b9" }, "require": { "ext-json": "*", "guzzlehttp/guzzle": "^7.0", - "php": "^7.4 || ^8.0 || ^8.1", + "php": "^8.0 || ^8.1 || ^8.2 || ^8.3", "psr/http-client": "^1.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.89", + "phpstan/phpstan": "^2.1", "phpunit/phpunit": "*", "squizlabs/php_codesniffer": "3.*", "symfony/var-dumper": "^5.3", @@ -700,7 +700,7 @@ }, "scripts": { "ecs": [ - "vendor/bin/ecs check src" + "vendor/bin/ecs check src --fix" ], "test": [ "vendor/bin/phpunit" @@ -739,20 +739,20 @@ "packages-dev": [ { "name": "symfony/polyfill-mbstring", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c" + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", - "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-mbstring": "*" @@ -763,8 +763,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -799,7 +799,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" }, "funding": [ { @@ -815,30 +815,30 @@ "type": "tidelift" } ], - "time": "2024-06-19T12:30:46+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", - "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -879,7 +879,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" }, "funding": [ { @@ -895,20 +895,20 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/var-dumper", - "version": "v5.4.42", + "version": "v5.4.48", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "0c17c56d8ea052fc33942251c75d0e28936e043d" + "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0c17c56d8ea052fc33942251c75d0e28936e043d", - "reference": "0c17c56d8ea052fc33942251c75d0e28936e043d", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8", + "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8", "shasum": "" }, "require": { @@ -968,7 +968,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.4.42" + "source": "https://github.com/symfony/var-dumper/tree/v5.4.48" }, "funding": [ { @@ -984,7 +984,7 @@ "type": "tidelift" } ], - "time": "2024-07-26T12:23:09+00:00" + "time": "2024-11-08T15:21:10+00:00" } ], "aliases": [], diff --git a/script/config.json b/script/config.json index 0b7c1bcd..940cab0b 100644 --- a/script/config.json +++ b/script/config.json @@ -2,9 +2,9 @@ "username": "admin", "password": "shopware", "grant_type": "password", - "shop_url": "http://shopware.test", - "client_id": "SWIAD0HGZGVRRZF1T2TUWNDVMG", - "client_secret": "QnpublNSVE40Y1VEbk56WXVtVWU3aXFYZ2oyRXdvem82Tk5JNVI", + "shop_url": "http://localhost:8000", + "client_id": "SWIAA2ZNCWP6T1FOSMRJU1ZODW", + "client_secret": "bmdsc1NNZWw4aUI3WE1WcWxLMlh4aDd1dlNYNDRwVUdqbkRoS2E", "scopes": "write", "sdk_entity_namespace": "Vin\\ShopwareSdk\\Data\\Entity", "output_entity_dir": "/../../src/Data/Entity/", diff --git a/src/Client/AdminAuthenticator.php b/src/Client/AdminAuthenticator.php index b1a425b2..3076e8d4 100644 --- a/src/Client/AdminAuthenticator.php +++ b/src/Client/AdminAuthenticator.php @@ -5,6 +5,7 @@ namespace Vin\ShopwareSdk\Client; use GuzzleHttp\Exception\BadResponseException; +use Psr\Http\Client\NetworkExceptionInterface; use Vin\ShopwareSdk\Client\GrantType\ClientCredentialsGrantType; use Vin\ShopwareSdk\Client\GrantType\GrantType; use Vin\ShopwareSdk\Client\GrantType\PasswordGrantType; @@ -12,6 +13,7 @@ use Vin\ShopwareSdk\Data\AccessToken; use Vin\ShopwareSdk\Data\EndPointTrait; use Vin\ShopwareSdk\Exception\AuthorizationFailedException; +use Vin\ShopwareSdk\Exception\ShopwareUnreachableException; class AdminAuthenticator { @@ -56,15 +58,26 @@ public function fetchAccessToken(): AccessToken $response = $this->httpClient->post($this->getFullUrl(self::OAUTH_TOKEN_ENDPOINT), [ 'headers' => self::$headers, 'form_params' => $formParams - ])->getBody()->getContents(); + ]); } catch (BadResponseException $exception) { throw new AuthorizationFailedException( $exception->getResponse()->getBody()->getContents(), $exception->getCode(), $exception ); + } catch (NetworkExceptionInterface) { + throw new ShopwareUnreachableException(); } + if ($response->getStatusCode() === 400) { + $response = $response->getBody()->getContents(); + $response = \json_decode($response, true) ?? []; + $message = $response['errors'][0]['title'] ?? 'Invalid credentials'; + + throw new AuthorizationFailedException($message, 401); + } + + $response = $response->getBody()->getContents(); $tokenPayload = \json_decode($response, true) ?? []; if (empty($tokenPayload['access_token'])) { diff --git a/src/Client/Client.php b/src/Client/Client.php index a12fdc18..5246862f 100644 --- a/src/Client/Client.php +++ b/src/Client/Client.php @@ -4,8 +4,10 @@ namespace Vin\ShopwareSdk\Client; +use GuzzleHttp\Exception\ClientException; use GuzzleHttp\Exception\ConnectException; use GuzzleHttp\Exception\GuzzleException; +use GuzzleHttp\Exception\ServerException; use GuzzleHttp\Exception\TransferException; use GuzzleHttp\Handler\CurlHandler; use GuzzleHttp\HandlerStack; @@ -13,12 +15,15 @@ use GuzzleHttp\Promise\PromiseInterface; use GuzzleHttp\Psr7\Response; use GuzzleHttp\RequestOptions; +use Psr\Http\Client\NetworkExceptionInterface; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; use GuzzleHttp\ClientTrait as GuzzleClientTrait; use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\ClientInterface as GuzzleClientInterface; use Psr\Http\Message\UriInterface; +use Vin\ShopwareSdk\Exception\ShopwareResponseException; +use Vin\ShopwareSdk\Exception\ShopwareUnreachableException; class Client implements ClientInterface { @@ -33,7 +38,13 @@ private function __construct(GuzzleClientInterface $guzzleClient) public static function create(array $config = []): self { + $config = array_merge([ + 'timeout' => 20, + 'connect_timeout' => 5, + ], $config); + $handlerStack = HandlerStack::create(new CurlHandler()); + $handlerStack->push(Middleware::retry(function ( $retries, RequestInterface $request, @@ -42,7 +53,7 @@ public static function create(array $config = []): self ) use ($config) { $config = array_key_exists('max_attempt', $config) ? $config : ['max_attempt' => 3]; - // Limit the number of retries to 5 + // Limit the number of retries to 3 if ($retries >= $config['max_attempt']) { return false; } @@ -59,7 +70,7 @@ public static function create(array $config = []): self return false; }, function ($numberOfRetries) use ($config) { - $config = array_key_exists('sec_before_attempt', $config) ? $config : ['sec_before_attempt' => 2]; + $config = array_key_exists('sec_before_attempt', $config) ? $config : ['sec_before_attempt' => 0.5]; return $config['sec_before_attempt'] * 1000 * $numberOfRetries; })); @@ -71,9 +82,20 @@ public static function create(array $config = []): self return new self($client); } + /** + * @return ResponseInterface + * @throws GuzzleException + * @throws ShopwareResponseException + * @throws ShopwareUnreachableException + * @throws \Throwable + */ public function send(RequestInterface $request, array $options = []): ResponseInterface { - return $this->guzzleClient->send($request, $options); + try { + return $this->guzzleClient->send($request, $options); + } catch (\Exception $exception) { + throw self::handleException($exception); + } } public function sendRequest(RequestInterface $request): ResponseInterface @@ -87,7 +109,11 @@ public function sendRequest(RequestInterface $request): ResponseInterface public function sendAsync(RequestInterface $request, array $options = []): PromiseInterface { - return $this->guzzleClient->sendAsync($request, $options); + try { + return $this->guzzleClient->sendAsync($request, $options); + } catch (\Exception $exception) { + throw self::handleException($exception); + } } /** @@ -105,7 +131,11 @@ public function sendAsync(RequestInterface $request, array $options = []): Promi */ public function request(string $method, $uri, array $options = []): ResponseInterface { - return $this->guzzleClient->request($method, $uri, $options); + try { + return $this->guzzleClient->request($method, $uri, $options); + } catch (\Exception $exception) { + throw self::handleException($exception); + } } /** @@ -122,7 +152,11 @@ public function request(string $method, $uri, array $options = []): ResponseInte */ public function requestAsync(string $method, $uri, array $options = []): PromiseInterface { - return $this->guzzleClient->requestAsync($method, $uri, $options); + try { + return $this->guzzleClient->requestAsync($method, $uri, $options); + } catch (\Exception $exception) { + throw self::handleException($exception); + } } public function get(string $uri, array $options = []): ResponseInterface @@ -149,4 +183,18 @@ public function delete(string $uri, array $options = []): ResponseInterface { return $this->request('DELETE', $uri, $options); } + + private static function handleException(\Throwable $exception): \Throwable + { + if ($exception instanceof NetworkExceptionInterface) { + return new ShopwareUnreachableException(); + } + + if ($exception instanceof ClientException || $exception instanceof ServerException) { + $message = $exception->getResponse()->getBody()->getContents(); + return new ShopwareResponseException($message, $exception->getResponse()->getStatusCode()); + } + + return $exception; + } } diff --git a/src/Data/Criteria.php b/src/Data/Criteria.php index 43b764e6..8d9e7571 100755 --- a/src/Data/Criteria.php +++ b/src/Data/Criteria.php @@ -35,6 +35,11 @@ class Criteria implements ParseAware */ public const TOTAL_COUNT_MODE_NEXT_PAGES = 2; + /** + * @var list + */ + protected array $fields = []; + /** * page and limit should be mixed to allow null also * this would prevent from generating pagination problems @@ -43,6 +48,8 @@ class Criteria implements ParseAware */ private $page; + protected ?string $title; + /** * see above * @var mixed @@ -97,8 +104,8 @@ class Criteria implements ParseAware /** * Default should be null to not limit artificily * - * @param $page - * @param $limit + * @param mixed $page + * @param mixed $limit */ public function __construct($page = null, $limit = null) { @@ -388,10 +395,16 @@ public function parse(): array $params['includes'] = $this->includes; } - if ($this->totalCountMode !== null) { - $params['total-count-mode'] = $this->totalCountMode; + if (!empty($this->title)) { + $params['title'] = $this->title; + } + + if (!empty($this->fields)) { + $params['fields'] = $this->fields; } + $params['total-count-mode'] = $this->totalCountMode; + return $params; } @@ -542,4 +555,54 @@ public function removeInclude(string $apiAlias): self return $this; } + + /** + * @param list $fields + */ + public function addFields(array $fields): self + { + $this->fields = array_merge($this->fields, $fields); + + return $this; + } + + /** + * @return list + */ + public function getFields(): array + { + return $this->fields; + } + + public function getTitle(): ?string + { + return $this->title; + } + + public function setTitle(?string $title): self + { + $this->title = $title; + + return $this; + } + + /** + * @param array|array> $ids + */ + public function cloneForRead(array $ids = []): self + { + $self = new self($ids); + $self->setTitle($this->getTitle()); + + $associations = []; + + foreach ($this->associations as $name => $association) { + $associations[$name] = clone $association; + } + + $self->associations = $associations; + $self->fields = $this->fields; + + return $self; + } } diff --git a/src/Data/Custom/CustomCollection.php b/src/Data/Custom/CustomCollection.php new file mode 100644 index 00000000..acf919ad --- /dev/null +++ b/src/Data/Custom/CustomCollection.php @@ -0,0 +1,21 @@ +customEntity = $customEntity; + } + + public function getEntityName() : string + { + return $this->customEntity; + } + + public function getEntityClass() : string + { + return CustomEntity::class; + } + + public function getEntityCollection() : string + { + return CustomCollection::class; + } + + public function getSchema(): Schema + { + return new Schema($this->getEntityName(), new PropertyCollection([ + new Property('id', 'uuid', new FlagCollection([new Flag('read_protected', json_decode('[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]', true)), new Flag('primary_key', 1), new Flag('required', 1), ]), []), + new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', json_decode('[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]', true)), new Flag('required', 1), ]), []), + new Property('updatedAt', 'date', new FlagCollection([new Flag('read_protected', json_decode('[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]', true)), ]), []), + ])); + } +} diff --git a/src/Data/Custom/CustomEntity.php b/src/Data/Custom/CustomEntity.php new file mode 100644 index 00000000..1957c901 --- /dev/null +++ b/src/Data/Custom/CustomEntity.php @@ -0,0 +1,11 @@ + $value) { + // @phpstan-ignore-next-line if ($key === 'id' && property_exists($this, 'id')) { $this->id = $value; diff --git a/src/Data/Entity/EntityCollection.php b/src/Data/Entity/EntityCollection.php index 24970846..c51141ff 100644 --- a/src/Data/Entity/EntityCollection.php +++ b/src/Data/Entity/EntityCollection.php @@ -80,8 +80,9 @@ public function insert(int $position, Entity $entity): void } } - public function filterInstance(string $class): self + public function filterInstance(string $class): static { + // @phpstan-ignore-next-line - TODO: fix error return $this->filter(static function ($item) use ($class) { return $item instanceof $class; }); diff --git a/src/Data/Entity/Notification/NotificationCollection.php b/src/Data/Entity/Notification/NotificationCollection.php new file mode 100644 index 00000000..71f32156 --- /dev/null +++ b/src/Data/Entity/Notification/NotificationCollection.php @@ -0,0 +1,25 @@ + 'integration', 'referenceField' => 'id', 'localField' => 'createdByIntegrationId', 'relation' => 'many_to_one', ]), + new Property('createdByUser', 'association', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), ['entity' => 'user', 'referenceField' => 'id', 'localField' => 'createdByUserId', 'relation' => 'many_to_one', ]), + new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), ]), []), + new Property('updatedAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), ]), []), + ])); + } +} diff --git a/src/Data/Entity/Notification/NotificationEntity.php b/src/Data/Entity/Notification/NotificationEntity.php new file mode 100644 index 00000000..695c571e --- /dev/null +++ b/src/Data/Entity/Notification/NotificationEntity.php @@ -0,0 +1,31 @@ + 'user', 'referenceField' => 'id', 'localField' => 'userId', 'relation' => 'many_to_one', ]), - new Property('entityId', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), new Flag('deprecated', unserialize('a:3:{s:16:"deprecated_since";s:6:"v6.5.0";s:18:"will_be_removed_in";s:6:"v6.6.0";s:11:"replaced_by";s:69:"Use the dedicated properties 'referencedId' and 'referencedVersionId'";}')), ]), []), + new Property('entityId', 'json_object', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), new Flag('required', 1), new Flag('deprecated', unserialize('a:3:{s:16:"deprecated_since";s:6:"v6.5.0";s:18:"will_be_removed_in";s:6:"v6.6.0";s:11:"replaced_by";s:69:"Use the dedicated properties referencedId and referencedVersionId";}')), ]), []), new Property('referencedId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('referencedVersionId', 'uuid', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource']]), ]), []), new Property('createdAt', 'date', new FlagCollection([new Flag('read_protected', [['Shopware\Core\Framework\Api\Context\AdminApiSource', 'Shopware\Core\Framework\Api\Context\SalesChannelApiSource']]), new Flag('required', 1), ]), []), diff --git a/src/Data/Entity/SystemConfig/SystemConfigEntity.php b/src/Data/Entity/SystemConfig/SystemConfigEntity.php index df7ec0a5..24eff39d 100644 --- a/src/Data/Entity/SystemConfig/SystemConfigEntity.php +++ b/src/Data/Entity/SystemConfig/SystemConfigEntity.php @@ -15,9 +15,9 @@ class SystemConfigEntity extends Entity public ?string $configurationKey = null; /** - * @var mixed + * @var mixed|null */ - public string $configurationValue = null; + public $configurationValue = null; public ?string $salesChannelId = null; diff --git a/src/Exception/ShopwareUnreachableException.php b/src/Exception/ShopwareUnreachableException.php new file mode 100644 index 00000000..16acd5e1 --- /dev/null +++ b/src/Exception/ShopwareUnreachableException.php @@ -0,0 +1,11 @@ +getDefinition()->getEntityCollection(); - } + $repository = RepositoryFactory::create($entityName); + $collectionClass = $repository->getDefinition()->getEntityCollection(); if (empty($response) || empty($response['data'])) { /** @var EntityCollection $hydrated */ @@ -115,7 +100,6 @@ private function hydrateEntity(string $entityName, array $entityRaw, array $data $entity->internalSetEntityName($definition->getEntityName()); $entitySchema = $definition instanceof CustomDefinition ? $this->schema($entityName, $context) : $definition->getSchema(); - $entity = $this->hydrateEmptyJsonFields($entity, $attributes, $entitySchema); $relationships = $entityRaw['relationships'] ?? []; @@ -178,18 +162,18 @@ private function hydrateExtensions(Entity $entity, Schema $entitySchema, array $ $relationships = $extension['relationships'] ?? []; foreach ($relationships as $property => $relationship) { - if (!$entitySchema->properties->has($property)) { - continue; - } - - $field = $entitySchema->properties->get($property); + $field = null; - if ($field === null) { - continue; + if ($entitySchema->properties->has($property)) { + $field = $entitySchema->properties->get($property); } - if ($field->isToManyAssociation()) { + $isToMany = $field?->isToManyAssociation() || (!empty($relationship['data']) && array_is_list($relationship['data'])); + $isToOne = $field?->isToOneAssociation() || (!empty($relationship['data']) && !array_is_list($relationship['data'])); + + if ($isToMany) { $type = !empty($relationship['data'][0]['type']) ? $relationship['data'][0]['type'] : null; + if ($type) { $repository = RepositoryFactory::create($type); $definition = $repository->getDefinition(); @@ -200,7 +184,7 @@ private function hydrateExtensions(Entity $entity, Schema $entitySchema, array $ continue; } - if ($field->isToOneAssociation() && array_key_exists('data', $relationship) && !empty($relationship['data'])) { + if ($isToOne && array_key_exists('data', $relationship) && !empty($relationship['data'])) { $nestedEntity = $this->hydrateToOne($relationship, $data, $context); if ($nestedEntity) { @@ -296,6 +280,12 @@ private function getIncluded(string $key, string $id, array $data = []): ?array } } + foreach ($data['data'] as $item) { + if (array_key_exists('id', $item) && $item['id'] === $id && $item['type'] === $key) { + return $item; + } + } + return null; } } diff --git a/src/Hydrate/HydratorInterface.php b/src/Hydrate/HydratorInterface.php index 2c3f51da..54286b9f 100644 --- a/src/Hydrate/HydratorInterface.php +++ b/src/Hydrate/HydratorInterface.php @@ -12,5 +12,5 @@ interface HydratorInterface { public function schema(string $entity, Context $context): Schema; - public function hydrateSearchResult(array $response, Context $context, ?string $entityName): EntityCollection; + public function hydrateSearchResult(array $response, Context $context, string $entityName): EntityCollection; } diff --git a/src/Repository/EntityRepository.php b/src/Repository/EntityRepository.php index 27bc8190..6dd59104 100644 --- a/src/Repository/EntityRepository.php +++ b/src/Repository/EntityRepository.php @@ -2,15 +2,12 @@ namespace Vin\ShopwareSdk\Repository; -use GuzzleHttp\Exception\BadResponseException; use Vin\ShopwareSdk\Client\CreateClientTrait; use Vin\ShopwareSdk\Data\Context; use Vin\ShopwareSdk\Data\Criteria; use Vin\ShopwareSdk\Data\Entity\Entity; use Vin\ShopwareSdk\Data\Entity\EntityDefinition; use Vin\ShopwareSdk\Data\Uuid\Uuid; -use Vin\ShopwareSdk\Exception\ShopwareResponseException; -use Vin\ShopwareSdk\Exception\ShopwareSearchResponseException; use Vin\ShopwareSdk\Factory\HydratorFactory; use Vin\ShopwareSdk\Hydrate\HydratorInterface; use Vin\ShopwareSdk\Repository\Struct\AggregationResultCollection; @@ -30,6 +27,8 @@ class EntityRepository implements RepositoryInterface private const SEARCH_API_ENDPOINT = '/api/search'; + private const AGGREGATE_API_ENDPOINT = '/api/aggregate'; + private const MERGE_VERSION_API_ENDPOINT = '/api/_action/version/merge'; private const VERSION_API_ENDPOINT = '/api/_action/version'; @@ -67,16 +66,10 @@ public function get(string $id, Criteria $criteria, Context $context): ?Entity public function search(Criteria $criteria, Context $context): EntitySearchResult { - try { - $response = $this->httpClient->post($this->getSearchApiUrl($context->apiEndpoint), [ - 'headers' => $this->buildHeaders($context), - 'body' => json_encode($criteria->parse()) - ])->getBody()->getContents(); - } catch (BadResponseException $exception) { - $message = $exception->getResponse()->getBody()->getContents(); - - throw new ShopwareSearchResponseException($message, $exception->getResponse()->getStatusCode(), $criteria, $exception); - } + $response = $this->httpClient->post($this->getSearchApiUrl($context->apiEndpoint), [ + 'headers' => $this->buildHeaders($context), + 'body' => json_encode($criteria->parse()) + ])->getBody()->getContents(); $response = $this->decodeResponse($response); @@ -89,18 +82,24 @@ public function search(Criteria $criteria, Context $context): EntitySearchResult return new EntitySearchResult($this->entityName, $meta, $entities, $aggregations, $criteria, $context); } + public function aggregate(Criteria $criteria, Context $context): AggregationResultCollection + { + $response = $this->httpClient->post($this->getAggregateApiUrl($context->apiEndpoint), [ + 'headers' => $this->buildHeaders($context), + 'body' => json_encode($criteria->parse()) + ])->getBody()->getContents(); + + $response = $this->decodeResponse($response); + + return new AggregationResultCollection($response['aggregations']); + } + public function searchIds(Criteria $criteria, Context $context): IdSearchResult { - try { - $response = $this->httpClient->post($this->getSearchIdsApiUrl($context->apiEndpoint), [ - 'headers' => $this->buildHeaders($context), - 'body' => json_encode($criteria->parse()) - ])->getBody()->getContents(); - } catch (BadResponseException $exception) { - $message = $exception->getResponse()->getBody()->getContents(); - - throw new ShopwareSearchResponseException($message, $exception->getResponse()->getStatusCode(), $criteria, $exception); - } + $response = $this->httpClient->post($this->getSearchIdsApiUrl($context->apiEndpoint), [ + 'headers' => $this->buildHeaders($context), + 'body' => json_encode($criteria->parse()) + ])->getBody()->getContents(); $response = $this->decodeResponse($response); @@ -112,15 +111,10 @@ public function searchIds(Criteria $criteria, Context $context): IdSearchResult */ public function create(array $data, Context $context): void { - try { - $this->httpClient->post($this->getEntityEndpoint($context->apiEndpoint), [ - 'headers' => $this->buildHeaders($context), - 'body' => json_encode($data) - ])->getBody()->getContents(); - } catch (BadResponseException $exception) { - $message = $exception->getResponse()->getBody()->getContents(); - throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); - } + $this->httpClient->post($this->getEntityEndpoint($context->apiEndpoint), [ + 'headers' => $this->buildHeaders($context), + 'body' => json_encode($data) + ])->getBody()->getContents(); } /** @@ -134,32 +128,23 @@ public function update(array $data, Context $context): void $id = $data['id']; - try { - $this->httpClient->patch($this->getEntityEndpoint($context->apiEndpoint, $id), [ - 'headers' => $this->buildHeaders($context), - 'body' => json_encode($data) - ])->getBody()->getContents(); - } catch (BadResponseException $exception) { - $message = $exception->getResponse()->getBody()->getContents(); - throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); - } + $this->httpClient->patch($this->getEntityEndpoint($context->apiEndpoint, $id), [ + 'headers' => $this->buildHeaders($context), + 'body' => json_encode($data) + ]); } public function delete(string $id, Context $context): void { - try { - $this->httpClient->delete($this->getEntityEndpoint($context->apiEndpoint, $id), [ - 'headers' => $this->buildHeaders($context), - ])->getBody()->getContents(); - } catch (BadResponseException $exception) { - $message = $exception->getResponse()->getBody()->getContents(); - throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); - } + $this->httpClient->delete($this->getEntityEndpoint($context->apiEndpoint, $id), [ + 'headers' => $this->buildHeaders($context), + ])->getBody()->getContents(); } public function syncDeleted(array $ids, Context $context): ApiResponse { $syncService = new SyncService($context); + $syncService->setHttpClient($this->httpClient); $headers = ['fail-on-error' => true]; @@ -192,45 +177,30 @@ public function createVersion(string $id, Context $context, ?string $versionId = $data['versionName'] = $versionName; } - try { - $response = $this->httpClient->post($this->getCreateVersionEndpoint($context->apiEndpoint, $id), [ - 'headers' => $this->buildHeaders($context), - 'body' => json_encode($data) - ])->getBody()->getContents(); + $response = $this->httpClient->post($this->getCreateVersionEndpoint($context->apiEndpoint, $id), [ + 'headers' => $this->buildHeaders($context), + 'body' => json_encode($data) + ])->getBody()->getContents(); - $response = $this->decodeResponse($response); + $response = $this->decodeResponse($response); - return new VersionResponse($response); - } catch (BadResponseException $exception) { - $message = $exception->getResponse()->getBody()->getContents(); - throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); - } + return new VersionResponse($response); } public function mergeVersion(string $versionId, Context $context): void { - try { - $this->httpClient->post($this->getMergeVersionEndpoint($context->apiEndpoint, $versionId), [ - 'headers' => $this->buildHeaders($context, [ - 'sw-version-id' => $versionId - ]), - ])->getBody()->getContents(); - } catch (BadResponseException $exception) { - $message = $exception->getResponse()->getBody()->getContents(); - throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); - } + $this->httpClient->post($this->getMergeVersionEndpoint($context->apiEndpoint, $versionId), [ + 'headers' => $this->buildHeaders($context, [ + 'sw-version-id' => $versionId + ]), + ]); } public function deleteVersion(string $id, string $versionId, Context $context): void { - try { - $this->httpClient->post($this->getDeleteVersionEndpoint($context->apiEndpoint, $id, $versionId), [ - 'headers' => $this->buildHeaders($context), - ])->getBody()->getContents(); - } catch (BadResponseException $exception) { - $message = $exception->getResponse()->getBody()->getContents(); - throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); - } + $this->httpClient->post($this->getDeleteVersionEndpoint($context->apiEndpoint, $id, $versionId), [ + 'headers' => $this->buildHeaders($context), + ]); } public function clone(string $id, Context $context, ?CloneBehaviour $cloneBehaviour = null): string @@ -241,19 +211,14 @@ public function clone(string $id, Context $context, ?CloneBehaviour $cloneBehavi $data = $cloneBehaviour->jsonSerialize(); } - try { - $response = $this->httpClient->post($this->getCloneEndpoint($context->apiEndpoint, $id), [ - 'headers' => $this->buildHeaders($context), - 'body' => json_encode($data) - ])->getBody()->getContents(); + $response = $this->httpClient->post($this->getCloneEndpoint($context->apiEndpoint, $id), [ + 'headers' => $this->buildHeaders($context), + 'body' => json_encode($data) + ])->getBody()->getContents(); - $response = $this->decodeResponse($response); + $response = $this->decodeResponse($response); - return $response['id']; - } catch (BadResponseException $exception) { - $message = $exception->getResponse()->getBody()->getContents(); - throw new ShopwareResponseException($message, $exception->getResponse()->getStatusCode(), $exception); - } + return $response['id']; } public function createNew(array $data): Entity @@ -280,6 +245,11 @@ protected function getSearchApiUrl(string $endpoint, ?string $path = null): stri return sprintf('%s%s%s%s', $endpoint, self::SEARCH_API_ENDPOINT, $this->route, $path ?? ''); } + protected function getAggregateApiUrl(string $endpoint, ?string $path = null): string + { + return sprintf('%s%s%s%s', $endpoint, self::AGGREGATE_API_ENDPOINT, $this->route, $path ?? ''); + } + protected function getCloneEndpoint(string $endpoint, string $entityId): string { return sprintf('%s/api/_action/clone%s/%s', $endpoint, $this->route, $entityId); @@ -297,7 +267,7 @@ protected function getCreateVersionEndpoint(string $endpoint, string $entityId): protected function getDeleteVersionEndpoint(string $endpoint, string $entityId, string $versionId): string { - return sprintf('%s%s%s%s/%s', $endpoint, self::VERSION_API_ENDPOINT, $versionId, $this->route, $entityId); + return sprintf('%s%s/%s%s/%s', $endpoint, self::VERSION_API_ENDPOINT, $versionId, $this->route, $entityId); } protected function getSearchIdsApiUrl(string $endpoint, ?string $path = null): string diff --git a/src/Repository/RepositoryInterface.php b/src/Repository/RepositoryInterface.php index 8f4dc992..92da38fa 100644 --- a/src/Repository/RepositoryInterface.php +++ b/src/Repository/RepositoryInterface.php @@ -8,6 +8,7 @@ use Vin\ShopwareSdk\Data\Criteria; use Vin\ShopwareSdk\Data\Entity\Entity; use Vin\ShopwareSdk\Data\Entity\EntityDefinition; +use Vin\ShopwareSdk\Repository\Struct\AggregationResultCollection; use Vin\ShopwareSdk\Repository\Struct\CloneBehaviour; use Vin\ShopwareSdk\Repository\Struct\EntitySearchResult; use Vin\ShopwareSdk\Repository\Struct\IdSearchResult; @@ -22,6 +23,8 @@ public function searchIds(Criteria $criteria, Context $context): IdSearchResult; public function get(string $id, Criteria $criteria, Context $context): ?Entity; + public function aggregate(Criteria $criteria, Context $context): AggregationResultCollection; + public function search(Criteria $criteria, Context $context): EntitySearchResult; public function update(array $data, Context $context): void; diff --git a/src/Resources/entity-mapping.json b/src/Resources/entity-mapping.json index e61ef894..caceded1 100644 --- a/src/Resources/entity-mapping.json +++ b/src/Resources/entity-mapping.json @@ -88,6 +88,7 @@ "media_translation": "Vin\\ShopwareSdk\\Data\\Entity\\MediaTranslation\\MediaTranslationDefinition", "newsletter_recipient": "Vin\\ShopwareSdk\\Data\\Entity\\NewsletterRecipient\\NewsletterRecipientDefinition", "newsletter_recipient_tag": "Vin\\ShopwareSdk\\Data\\Entity\\NewsletterRecipientTag\\NewsletterRecipientTagDefinition", + "notification": "Vin\\ShopwareSdk\\Data\\Entity\\Notification\\NotificationDefinition", "number_range": "Vin\\ShopwareSdk\\Data\\Entity\\NumberRange\\NumberRangeDefinition", "number_range_sales_channel": "Vin\\ShopwareSdk\\Data\\Entity\\NumberRangeSalesChannel\\NumberRangeSalesChannelDefinition", "number_range_state": "Vin\\ShopwareSdk\\Data\\Entity\\NumberRangeState\\NumberRangeStateDefinition", diff --git a/src/Resources/schema.json b/src/Resources/schema.json index 397c1631..aadd97b1 100644 --- a/src/Resources/schema.json +++ b/src/Resources/schema.json @@ -1 +1 @@ -{"acl_role":{"entity":"acl_role","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"privileges":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"deletedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"users":{"type":"association","relation":"many_to_many","local":"aclRoleId","reference":"userId","mapping":"acl_user_role","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"app":{"type":"association","relation":"one_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"aclRoleId"},"integrations":{"type":"association","relation":"many_to_many","local":"aclRoleId","reference":"integrationId","mapping":"integration_role","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":true,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"allowDisable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"baseAppUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"allowedHosts":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"templateLoadPriority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"translations":{"type":"association","relation":"one_to_many","entity":"app_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appId","primary":"appId"},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"privacyPolicyExtensions":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"since":"6.4.1.0","translatable":true}},"integrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"integration":{"type":"association","relation":"one_to_one","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"integrationId","referenceField":"id"},"aclRoleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"aclRole":{"type":"association","relation":"one_to_one","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"aclRoleId","referenceField":"id"},"customFieldSets":{"type":"association","relation":"one_to_many","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"actionButtons":{"type":"association","relation":"one_to_many","entity":"app_action_button","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"templates":{"type":"association","relation":"one_to_many","entity":"app_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"scripts":{"type":"association","relation":"one_to_many","entity":"script","flags":{"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"webhooks":{"type":"association","relation":"one_to_many","entity":"webhook","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"paymentMethods":{"type":"association","relation":"one_to_many","entity":"app_payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"taxProviders":{"type":"association","relation":"one_to_many","entity":"tax_provider","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"scriptConditions":{"type":"association","relation":"one_to_many","entity":"app_script_condition","flags":{"cascade_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"},"flowActions":{"type":"association","relation":"one_to_many","entity":"app_flow_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"flowEvents":{"type":"association","relation":"one_to_many","entity":"app_flow_event","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"appShippingMethods":{"type":"association","relation":"one_to_many","entity":"app_shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_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}}},"write-protected":false,"read-protected":false},"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}},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"app_administration_snippet":{"entity":"app_administration_snippet","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"value":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"allow_empty_string":true}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"localeId":{"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"app_flow_action":{"entity":"app_flow_action","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"appId":{"type":"uuid","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}},"badge":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"parameters":{"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"]]}},"headers":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"requirements":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"iconRaw":{"type":"blob","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"icon":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"swIcon":{"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}},"delayable":{"type":"boolean","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}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"headline":{"type":"string","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":"app_flow_action_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appFlowActionId","primary":"appFlowActionId"},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"flowSequences":{"type":"association","relation":"one_to_many","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appFlowActionId","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}}},"write-protected":false,"read-protected":false},"app_flow_action_translation":{"entity":"app_flow_action_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"]]}},"headline":{"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"]]}},"appFlowActionId":{"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}},"appFlowAction":{"type":"association","relation":"many_to_one","entity":"app_flow_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appFlowActionId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}},"write-protected":false,"read-protected":false},"app_flow_event":{"entity":"app_flow_event","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"appId":{"type":"uuid","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}},"aware":{"type":"json_list","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"]]}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"flows":{"type":"association","relation":"one_to_many","entity":"flow","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appFlowEventId","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"]]}}},"write-protected":false,"read-protected":false},"app_payment_method":{"entity":"app_payment_method","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"appName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"identifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"payUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"finalizeUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"validateUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"captureUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"refundUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"recurringUrl":{"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"]]}}},"write-protected":false,"read-protected":false},"app_script_condition":{"entity":"app_script_condition","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"identifier":{"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"group":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"script":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true}},"constraints":{"type":"blob","flags":{"write_protected":[["system"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":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"},"ruleConditions":{"type":"association","relation":"one_to_many","entity":"rule_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"scriptId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"app_script_condition_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appScriptConditionId","primary":"appScriptConditionId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\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}}},"write-protected":false,"read-protected":false},"app_script_condition_translation":{"entity":"app_script_condition_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"]]}},"appScriptConditionId":{"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}},"appScriptCondition":{"type":"association","relation":"many_to_one","entity":"app_script_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appScriptConditionId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}},"write-protected":false,"read-protected":false},"app_shipping_method":{"entity":"app_shipping_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}},"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"},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"shippingMethod":{"type":"association","relation":"one_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"shippingMethodId","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"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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,"allow_empty_string":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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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_list","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"]]}},"cmsPageIdSwitched":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"visibleChildCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":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}},"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"]],"translatable":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"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"},"customEntityTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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_list","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"]]}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"keywords":{"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"]]}},"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}}},"write-protected":false,"read-protected":false},"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"]]}},"visibility":{"type":"json_object","properties":{"mobile":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"desktop":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"tablet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"cssClass":{"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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}},"visibility":{"type":"json_object","properties":{"mobile":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"desktop":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"tablet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"cms_slot":{"entity":"cms_slot","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}},"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"},"fieldConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"country":{"entity":"country","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"iso":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"shippingAvailable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"iso3":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"displayStateInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"forceStateInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"]]}},"postalCodeRequired":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"checkPostalCodePattern":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"checkAdvancedPostalCodePattern":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"advancedPostalCodePattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"addressFormat":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"defaultPostalCodePattern":{"type":"string","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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"addressFormat":{"type":"json_object","properties":[],"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"}},"write-protected":false,"read-protected":false},"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}},"taxFreeFrom":{"type":"float","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":"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"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"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\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}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"custom_entity":{"entity":"custom_entity","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}},"fields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"flags":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"pluginId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"cmsAware":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"runtime":true}},"storeApiAware":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"runtime":true}},"customFieldsAware":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"labelProperty":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"deletedAt":{"type":"date","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"]]}}},"write-protected":true,"read-protected":false},"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"]]}},"allowCustomerWrite":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"allowCartExpose":{"type":"boolean","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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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,"no_constraint":true}},"defaultShippingAddressId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"no_constraint":true}},"autoIncrement":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"customerNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"salutationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"firstName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"lastName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500}},"company":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500}},"password":{"type":"password","flags":[]},"email":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":250}},"title":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"vatIds":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"affiliateCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"campaignCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInEmailSentDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInConfirmDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"hash":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"guest":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"firstLogin":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"lastLogin":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"newsletterSalesChannelIds":{"type":"json_object","properties":[],"flags":{"write_protected":[["system"]]}},"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"]]}},"reviewCount":{"type":"int","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"},"activeBillingAddress":{"type":"association","relation":"many_to_one","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true},"localField":null,"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"},"activeShippingAddress":{"type":"association","relation":"many_to_one","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true},"localField":null,"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"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"]]}},"accountType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"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"},"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"]]}},"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"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"documentNumber":{"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"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"appFlowEventId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appFlowEvent":{"type":"association","relation":"many_to_one","entity":"app_flow_event","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appFlowEventId","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"]]}}},"write-protected":false,"read-protected":false},"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"]],"search_ranking":0.25}},"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"]]}},"appFlowActionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appFlowAction":{"type":"association","relation":"many_to_one","entity":"app_flow_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appFlowActionId","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"]]}}},"write-protected":false,"read-protected":false},"flow_template":{"entity":"flow_template","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"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"import_export_log":{"entity":"import_export_log","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"activity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"state":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"records":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"profileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"fileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"invalidRecordsLogId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"username":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"profileName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"result":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"profile":{"type":"association","relation":"many_to_one","entity":"import_export_profile","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"profileId","referenceField":"id"},"file":{"type":"association","relation":"one_to_one","entity":"import_export_file","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"fileId","referenceField":"id"},"invalidRecordsLog":{"type":"association","relation":"one_to_one","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"invalidRecordsLogId","referenceField":"id"},"failedImportLog":{"type":"association","relation":"one_to_one","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"invalidRecordsLogId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":true,"read-protected":false},"import_export_profile":{"entity":"import_export_profile","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"systemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"sourceEntity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fileType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"delimiter":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"enclosure":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"mapping":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"updateBy":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"importExportLogs":{"type":"association","relation":"one_to_many","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"profileId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"import_export_profile_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"importExportProfileId","primary":"importExportProfileId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"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"},"writeAccess":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"deprecated":{"deprecated_since":"v6.5.0.0","will_be_removed_in":"v6.6.0.0","replaced_by":null}}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdNotifications":{"type":"association","relation":"one_to_many","entity":"notification","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"createdByIntegrationId","primary":"id"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]],"translatable":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"keywords":{"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"]]}},"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}}},"write-protected":false,"read-protected":false},"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"},"appScriptConditionTranslations":{"type":"association","relation":"one_to_many","entity":"app_script_condition_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"appScriptConditionId"},"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"},"appFlowActionTranslations":{"type":"association","relation":"one_to_many","entity":"app_flow_action_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"appFlowActionId"},"taxProviderTranslations":{"type":"association","relation":"one_to_many","entity":"tax_provider_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"taxProviderId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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":"text","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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"mail_template":{"entity":"mail_template","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"mailTemplateTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"systemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"senderName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500,"translatable":true}},"subject":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true,"search_ranking":500,"translatable":true}},"contentHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"allow_html":true,"translatable":true}},"contentPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"allow_html":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"mail_template_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"mailTemplateId","primary":"mailTemplateId"},"mailTemplateType":{"type":"association","relation":"many_to_one","entity":"mail_template_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"mailTemplateTypeId","referenceField":"id"},"media":{"type":"association","relation":"one_to_many","entity":"mail_template_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"mailTemplateId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"mail_template_translation":{"entity":"mail_template_translation","properties":{"senderName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"subject":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"contentHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"contentPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mailTemplateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mailTemplate":{"type":"association","relation":"many_to_one","entity":"mail_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailTemplateId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}},"config":{"type":"json_object","properties":[],"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"]],"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}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"},"productDownloads":{"type":"association","relation":"one_to_many","entity":"product_download","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"orderLineItemDownloads":{"type":"association","relation":"one_to_many","entity":"order_line_item_download","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"avatarUsers":{"type":"association","relation":"one_to_many","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"avatarId","primary":"id"},"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"},"appShippingMethods":{"type":"association","relation":"one_to_many","entity":"app_shipping_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}}},"write-protected":false,"read-protected":false},"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}},"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"]]}},"associationFields":{"type":"json_list","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"]]}}},"write-protected":false,"read-protected":false},"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":[[]]}},"path":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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,"no_constraint":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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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"]]}},"source":{"type":"string","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"]],"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}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"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"]],"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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"]]}}},"write-protected":false,"read-protected":false},"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}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"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}},"states":{"type":"json_list","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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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"},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","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"},"orderTransactionCaptureRefundPositions":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture_refund_position","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"orderLineItemId","primary":"id"},"downloads":{"type":"association","relation":"one_to_many","entity":"order_line_item_download","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"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"]]}}},"write-protected":false,"read-protected":false},"order_line_item_download":{"entity":"order_line_item_download","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}},"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}},"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"]],"required":true}},"accessGranted":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderLineItem":{"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":"orderLineItemId","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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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"},"captures":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"orderTransactionId","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"]]}}},"write-protected":false,"read-protected":false},"order_transaction_capture":{"entity":"order_transaction_capture","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}},"orderTransactionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderTransactionVersionId":{"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"},"transaction":{"type":"association","relation":"many_to_one","entity":"order_transaction","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"orderTransactionId","referenceField":"id"},"refunds":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture_refund","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"captureId","primary":"id"},"externalReference":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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}},"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"]]}}},"write-protected":false,"read-protected":false},"order_transaction_capture_refund":{"entity":"order_transaction_capture_refund","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}},"captureId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"captureVersionId":{"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"},"transactionCapture":{"type":"association","relation":"many_to_one","entity":"order_transaction_capture","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"captureId","referenceField":"id"},"positions":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture_refund_position","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"refundId","primary":"id"},"externalReference":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"reason":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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}},"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"]]}}},"write-protected":false,"read-protected":false},"order_transaction_capture_refund_position":{"entity":"order_transaction_capture_refund_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}},"refundId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"refundVersionId":{"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}},"orderLineItem":{"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":"orderLineItemId","referenceField":"id"},"orderTransactionCaptureRefund":{"type":"association","relation":"many_to_one","entity":"order_transaction_capture_refund","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":null,"referenceField":"id"},"externalReference":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"reason":{"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"]]}},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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}},"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"]]}}},"write-protected":false,"read-protected":false},"payment_method":{"entity":"payment_method","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"pluginId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"handlerIdentifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"distinguishableName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]],"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"afterOrderEnabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"availabilityRuleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"formattedHandlerIdentifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"synchronous":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"asynchronous":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"prepared":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"refundable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"recurring":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"translations":{"type":"association","relation":"one_to_many","entity":"payment_method_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"paymentMethodId","primary":"paymentMethodId"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"availabilityRule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"availabilityRuleId","referenceField":"id"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"paymentMethodId","primary":"id"},"plugin":{"type":"association","relation":"many_to_one","entity":"plugin","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"pluginId","referenceField":"id"},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"lastPaymentMethodId","primary":"id"},"orderTransactions":{"type":"association","relation":"one_to_many","entity":"order_transaction","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"paymentMethodId","primary":"id"},"salesChannels":{"type":"association","relation":"many_to_many","local":"paymentMethodId","reference":"salesChannelId","mapping":"sales_channel_payment_method","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"appPaymentMethod":{"type":"association","relation":"one_to_one","entity":"app_payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"paymentMethodId"},"shortName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"technicalName":{"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"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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,"no_constraint":true}},"productMediaVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":true}},"deliveryTimeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"featureSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true}},"canonicalProductId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"cmsPageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"cmsPageVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":true}},"price":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true,"required":true,"api_criteria_aware":true}},"productNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500,"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}},"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":[[]]}},"variantListingConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"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":[[]]}},"states":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"downloads":{"type":"association","relation":"one_to_many","entity":"product_download","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"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},"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true},"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"},"availableStock":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"stock":{"type":"int","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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"product_download":{"entity":"product_download","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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"isRunning":{"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"product_media":{"entity":"product_media","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"reversed_inherited":"media"},"localField":"productId","referenceField":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"coverProducts":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"coverId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"product_stream":{"entity":"product_stream","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"apiFilter":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"invalid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"product_stream_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"productStreamId","primary":"productStreamId"},"filters":{"type":"association","relation":"one_to_many","entity":"product_stream_filter","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productStreamId","primary":"id"},"productCrossSellings":{"type":"association","relation":"one_to_many","entity":"product_cross_selling","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"productExports":{"type":"association","relation":"one_to_many","entity":"product_export","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"categories":{"type":"association","relation":"one_to_many","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"promotion":{"entity":"promotion","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"validFrom":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"validUntil":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"maxRedemptionsGlobal":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"maxRedemptionsPerCustomer":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"exclusive":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"code":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"useCodes":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"useIndividualCodes":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"individualCodePattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"useSetGroups":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customerRestriction":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"preventCombination":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"orderCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"ordersPerCustomerCount":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"setgroups":{"type":"association","relation":"one_to_many","entity":"promotion_setgroup","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"promotion_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"discounts":{"type":"association","relation":"one_to_many","entity":"promotion_discount","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"individualCodes":{"type":"association","relation":"one_to_many","entity":"promotion_individual_code","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"personaRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_persona_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"personaCustomers":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"customerId","mapping":"promotion_persona_customer","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"orderRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_order_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"cartRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_cart_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"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":"promotionId","primary":"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"areas":{"type":"json_list","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,"rule_areas":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,"rule_areas":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,"rule_areas":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,"rule_areas":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,"rule_areas":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,"rule_areas":true},"localField":"id","referenceField":"id"},"flowSequences":{"type":"association","relation":"one_to_many","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true,"rule_areas":true},"localField":"id","referenceField":"ruleId","primary":"id"},"taxProviders":{"type":"association","relation":"one_to_many","entity":"tax_provider","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true,"since":"6.5.0.0"},"localField":"id","referenceField":"availabilityRuleId","primary":"id"},"tags":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"tagId","mapping":"rule_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"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,"rule_areas":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,"rule_areas":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,"rule_areas":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,"rule_areas":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"]]}}},"write-protected":false,"read-protected":false},"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"]],"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"scriptId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"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"},"appScriptCondition":{"type":"association","relation":"many_to_one","entity":"app_script_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"scriptId","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"]]}}},"write-protected":false,"read-protected":false},"rule_tag":{"entity":"rule_tag","properties":{"ruleId":{"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}},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}},"write-protected":false,"read-protected":false},"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"},"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}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]],"set_null_on_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"]],"set_null_on_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"]],"set_null_on_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"]],"set_null_on_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"]],"set_null_on_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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"defaultRunInterval":{"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"]]}}},"write-protected":false,"read-protected":false},"script":{"entity":"script","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"script":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"hook":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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"},"isValid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"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"]],"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"},"appShippingMethod":{"type":"association","relation":"one_to_one","entity":"app_shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"shippingMethodId"},"technicalName":{"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"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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}},"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"},"entityId":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"deprecated":{"deprecated_since":"v6.5.0","will_be_removed_in":"v6.6.0","replaced_by":"Use the dedicated properties 'referencedId' and 'referencedVersionId'"}}},"referencedId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"referencedVersionId":{"type":"uuid","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"]]}}},"write-protected":false,"read-protected":false},"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"},"orderTransactionCaptures":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"stateId","primary":"id"},"orderTransactionCaptureRefunds":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture_refund","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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"tag":{"entity":"tag","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}},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"rules":{"type":"association","relation":"many_to_many","local":"tagId","reference":"ruleId","mapping":"rule_tag","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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"tax_provider":{"entity":"tax_provider","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"identifier":{"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","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}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"processUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"availabilityRuleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"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}},"translations":{"type":"association","relation":"one_to_many","entity":"tax_provider_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"taxProviderId","primary":"taxProviderId"},"availabilityRule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"availabilityRuleId","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"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"tax_provider_translation":{"entity":"tax_provider_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"]]}},"taxProviderId":{"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}},"taxProvider":{"type":"association","relation":"many_to_one","entity":"tax_provider","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"taxProviderId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}},"write-protected":false,"read-protected":false},"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}},"activeFrom":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"themeJson":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"baseConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"configValues":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"translations":{"type":"association","relation":"one_to_many","entity":"theme_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"themeId","primary":"themeId"},"salesChannels":{"type":"association","relation":"many_to_many","local":"themeId","reference":"salesChannelId","mapping":"theme_sales_channel","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"media":{"type":"association","relation":"many_to_many","local":"themeId","reference":"mediaId","mapping":"theme_media","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"id"},"previewMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"previewMediaId","referenceField":"id"},"dependentThemes":{"type":"association","relation":"many_to_many","local":"parentId","reference":"childId","mapping":"theme_child","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\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}}},"write-protected":false,"read-protected":false},"theme_child":{"entity":"theme_child","properties":{"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"childId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"parentTheme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"childTheme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"childId","referenceField":"id"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"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"},"avatarId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"avatarMedia":{"type":"association","relation":"many_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"},"createdCustomers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"createdById","primary":"id"},"updatedCustomers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"updatedById","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdNotifications":{"type":"association","relation":"one_to_many","entity":"notification","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"createdByUserId","primary":"id"}},"write-protected":true,"read-protected":false},"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}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}},"onlyLiveVersion":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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}},"onlyLiveVersion":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"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"]]}}},"write-protected":false,"read-protected":false}} \ No newline at end of file +{"acl_role":{"entity":"acl_role","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"privileges":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"deletedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"users":{"type":"association","relation":"many_to_many","local":"aclRoleId","reference":"userId","mapping":"acl_user_role","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"app":{"type":"association","relation":"one_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"aclRoleId"},"integrations":{"type":"association","relation":"many_to_many","local":"aclRoleId","reference":"integrationId","mapping":"integration_role","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":true,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"allowDisable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"baseAppUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"allowedHosts":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"templateLoadPriority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"checkoutGatewayUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"inAppPurchasesGatewayUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"sourceType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"sourceConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"selfManaged":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"translations":{"type":"association","relation":"one_to_many","entity":"app_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appId","primary":"appId"},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"privacyPolicyExtensions":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"since":"6.4.1.0","translatable":true}},"integrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"integration":{"type":"association","relation":"one_to_one","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"integrationId","referenceField":"id"},"aclRoleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"aclRole":{"type":"association","relation":"one_to_one","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"aclRoleId","referenceField":"id"},"customFieldSets":{"type":"association","relation":"one_to_many","entity":"custom_field_set","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"actionButtons":{"type":"association","relation":"one_to_many","entity":"app_action_button","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"templates":{"type":"association","relation":"one_to_many","entity":"app_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"scripts":{"type":"association","relation":"one_to_many","entity":"script","flags":{"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"webhooks":{"type":"association","relation":"one_to_many","entity":"webhook","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"paymentMethods":{"type":"association","relation":"one_to_many","entity":"app_payment_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"taxProviders":{"type":"association","relation":"one_to_many","entity":"tax_provider","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"scriptConditions":{"type":"association","relation":"one_to_many","entity":"app_script_condition","flags":{"cascade_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"},"flowActions":{"type":"association","relation":"one_to_many","entity":"app_flow_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"flowEvents":{"type":"association","relation":"one_to_many","entity":"app_flow_event","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appId","primary":"id"},"appShippingMethods":{"type":"association","relation":"one_to_many","entity":"app_shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_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}}},"write-protected":false,"read-protected":false},"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}},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"app_administration_snippet":{"entity":"app_administration_snippet","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"value":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"allow_empty_string":true}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"localeId":{"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"app_flow_action":{"entity":"app_flow_action","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"appId":{"type":"uuid","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}},"badge":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"parameters":{"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"]]}},"headers":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"requirements":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"iconRaw":{"type":"blob","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"icon":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"swIcon":{"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}},"delayable":{"type":"boolean","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}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"translatable":true}},"headline":{"type":"string","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":"app_flow_action_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appFlowActionId","primary":"appFlowActionId"},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"flowSequences":{"type":"association","relation":"one_to_many","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appFlowActionId","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}}},"write-protected":false,"read-protected":false},"app_flow_action_translation":{"entity":"app_flow_action_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"]]}},"headline":{"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"]]}},"appFlowActionId":{"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}},"appFlowAction":{"type":"association","relation":"many_to_one","entity":"app_flow_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appFlowActionId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}},"write-protected":false,"read-protected":false},"app_flow_event":{"entity":"app_flow_event","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"appId":{"type":"uuid","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}},"aware":{"type":"json_list","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"]]}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"flows":{"type":"association","relation":"one_to_many","entity":"flow","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"appFlowEventId","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"]]}}},"write-protected":false,"read-protected":false},"app_payment_method":{"entity":"app_payment_method","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"appName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"identifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"payUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"finalizeUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"validateUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"captureUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"refundUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"recurringUrl":{"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"]]}}},"write-protected":false,"read-protected":false},"app_script_condition":{"entity":"app_script_condition","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"identifier":{"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"group":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"script":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"allow_html":true}},"constraints":{"type":"blob","flags":{"write_protected":[["system"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":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"},"ruleConditions":{"type":"association","relation":"one_to_many","entity":"rule_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"scriptId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"app_script_condition_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"appScriptConditionId","primary":"appScriptConditionId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\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}}},"write-protected":false,"read-protected":false},"app_script_condition_translation":{"entity":"app_script_condition_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"]]}},"appScriptConditionId":{"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}},"appScriptCondition":{"type":"association","relation":"many_to_one","entity":"app_script_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appScriptConditionId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}},"write-protected":false,"read-protected":false},"app_shipping_method":{"entity":"app_shipping_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}},"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"},"shippingMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"shippingMethod":{"type":"association","relation":"one_to_one","entity":"shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"shippingMethodId","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"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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,"allow_empty_string":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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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_list","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"]]}},"cmsPageIdSwitched":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"visibleChildCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":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}},"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"]],"translatable":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"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"},"customEntityTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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_list","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"]]}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"keywords":{"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"]]}},"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}}},"write-protected":false,"read-protected":false},"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"]]}},"visibility":{"type":"json_object","properties":{"mobile":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"desktop":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"tablet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"cssClass":{"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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}},"visibility":{"type":"json_object","properties":{"mobile":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"desktop":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"tablet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}}},"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"cms_slot":{"entity":"cms_slot","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}},"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"},"fieldConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"country":{"entity":"country","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"iso":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"shippingAvailable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"iso3":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":250}},"displayStateInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"forceStateInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"]]}},"postalCodeRequired":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"checkPostalCodePattern":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"checkAdvancedPostalCodePattern":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"advancedPostalCodePattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"addressFormat":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"translatable":true}},"defaultPostalCodePattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"isEu":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"addressFormat":{"type":"json_object","properties":[],"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"}},"write-protected":false,"read-protected":false},"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}},"taxFreeFrom":{"type":"float","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":"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"]],"required":true}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"roundForNet":{"type":"boolean","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"]],"required":true}},"totalRounding":{"type":"json_object","properties":{"decimals":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"roundForNet":{"type":"boolean","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"]],"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"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\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}}},"write-protected":false,"read-protected":false},"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"]],"required":true}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}},"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"]],"required":true}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"custom_entity":{"entity":"custom_entity","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}},"fields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"flags":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"pluginId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"cmsAware":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"runtime":true}},"storeApiAware":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"runtime":true}},"customFieldsAware":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"labelProperty":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"deletedAt":{"type":"date","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"]]}}},"write-protected":true,"read-protected":false},"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"]]}},"allowCustomerWrite":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"allowCartExpose":{"type":"boolean","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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}},"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,"no_constraint":true}},"defaultShippingAddressId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"no_constraint":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"]],"ignore_in_openapi_schema":true,"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"]],"ignore_in_openapi_schema":true}},"affiliateCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"campaignCode":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInRegistration":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInEmailSentDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"doubleOptInConfirmDate":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"hash":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"guest":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"firstLogin":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"lastLogin":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"newsletterSalesChannelIds":{"type":"json_object","properties":[],"flags":{"write_protected":[["system"]]}},"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"]]}},"reviewCount":{"type":"int","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"},"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"},"activeBillingAddress":{"type":"association","relation":"many_to_one","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true},"localField":null,"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"},"activeShippingAddress":{"type":"association","relation":"many_to_one","entity":"customer_address","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true},"localField":null,"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"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"]]}},"accountType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"ignore_in_openapi_schema":true}},"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"},"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"]]}},"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"},"defaultPaymentMethodId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"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"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"documentNumber":{"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"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"appFlowEventId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appFlowEvent":{"type":"association","relation":"many_to_one","entity":"app_flow_event","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appFlowEventId","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"]]}}},"write-protected":false,"read-protected":false},"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"]],"search_ranking":0.25}},"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"]]}},"appFlowActionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appFlowAction":{"type":"association","relation":"many_to_one","entity":"app_flow_action","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appFlowActionId","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"]]}}},"write-protected":false,"read-protected":false},"flow_template":{"entity":"flow_template","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"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"import_export_log":{"entity":"import_export_log","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"activity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"state":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"records":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"userId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"profileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"fileId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"invalidRecordsLogId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"username":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"profileName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"result":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"user":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"userId","referenceField":"id"},"profile":{"type":"association","relation":"many_to_one","entity":"import_export_profile","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"profileId","referenceField":"id"},"file":{"type":"association","relation":"one_to_one","entity":"import_export_file","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"fileId","referenceField":"id"},"invalidRecordsLog":{"type":"association","relation":"one_to_one","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"invalidRecordsLogId","referenceField":"id"},"failedImportLog":{"type":"association","relation":"one_to_one","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"invalidRecordsLogId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":true,"read-protected":false},"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}},"label":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"translatable":true}},"type":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"systemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"sourceEntity":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"fileType":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"delimiter":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"enclosure":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"mapping":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"updateBy":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"config":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"importExportLogs":{"type":"association","relation":"one_to_many","entity":"import_export_log","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"profileId","primary":"id"},"translations":{"type":"association","relation":"one_to_many","entity":"import_export_profile_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"importExportProfileId","primary":"importExportProfileId"},"technicalName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"name":{"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"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"lastUsageAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"admin":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"deletedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"one_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"integrationId"},"aclRoles":{"type":"association","relation":"many_to_many","local":"integrationId","reference":"aclRoleId","mapping":"integration_role","entity":"acl_role","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdNotifications":{"type":"association","relation":"one_to_many","entity":"notification","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"createdByIntegrationId","primary":"id"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]],"translatable":true}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"keywords":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"metaDescription":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"keywords":{"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"]]}},"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}}},"write-protected":false,"read-protected":false},"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"},"appScriptConditionTranslations":{"type":"association","relation":"one_to_many","entity":"app_script_condition_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"appScriptConditionId"},"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"},"appFlowActionTranslations":{"type":"association","relation":"one_to_many","entity":"app_flow_action_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"appFlowActionId"},"taxProviderTranslations":{"type":"association","relation":"one_to_many","entity":"tax_provider_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"languageId","primary":"taxProviderId"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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":"text","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"]]}}},"write-protected":false,"read-protected":false},"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"]],"allow_html":true,"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"]],"allow_html":true,"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}}},"write-protected":false,"read-protected":false},"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"]],"allow_html":true}},"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"]],"allow_html":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"]]}},"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"}},"write-protected":false,"read-protected":false},"mail_template":{"entity":"mail_template","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"mailTemplateTypeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"systemDefault":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"senderName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500,"translatable":true}},"subject":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true,"search_ranking":500,"translatable":true}},"contentHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"allow_html":true,"translatable":true}},"contentPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"allow_html":true,"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"mail_template_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"mailTemplateId","primary":"mailTemplateId"},"mailTemplateType":{"type":"association","relation":"many_to_one","entity":"mail_template_type","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":0.25},"localField":"mailTemplateTypeId","referenceField":"id"},"media":{"type":"association","relation":"one_to_many","entity":"mail_template_media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"mailTemplateId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"mail_template_translation":{"entity":"mail_template_translation","properties":{"senderName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"subject":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"contentHtml":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"contentPlain":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"mailTemplateId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"languageId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"mailTemplate":{"type":"association","relation":"many_to_one","entity":"mail_template","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"mailTemplateId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]],"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"]],"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}},"config":{"type":"json_object","properties":[],"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"]],"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}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"},"productDownloads":{"type":"association","relation":"one_to_many","entity":"product_download","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"orderLineItemDownloads":{"type":"association","relation":"one_to_many","entity":"order_line_item_download","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"mediaId","primary":"id"},"avatarUsers":{"type":"association","relation":"one_to_many","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"avatarId","primary":"id"},"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"},"appShippingMethods":{"type":"association","relation":"one_to_many","entity":"app_shipping_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}}},"write-protected":false,"read-protected":false},"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}},"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"]]}}},"write-protected":false,"read-protected":false},"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":[[]]}},"path":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"path":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"notification":{"entity":"notification","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"status":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"message":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"adminOnly":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"requiredPrivileges":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdByIntegrationId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdByUserId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"createdByIntegration":{"type":"association","relation":"many_to_one","entity":"integration","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"createdByIntegrationId","referenceField":"id"},"createdByUser":{"type":"association","relation":"many_to_one","entity":"user","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"createdByUserId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":true,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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,"no_constraint":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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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"]],"allow_empty_string":true}},"source":{"type":"string","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"]],"required":true}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}},"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"]],"required":true}},"interval":{"type":"float","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"roundForNet":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"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"]],"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"]],"cascade_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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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"]]}}},"write-protected":false,"read-protected":false},"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}},"promotionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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}},"states":{"type":"json_list","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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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"},"promotion":{"type":"association","relation":"many_to_one","entity":"promotion","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"promotionId","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"},"orderTransactionCaptureRefundPositions":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture_refund_position","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"orderLineItemId","primary":"id"},"downloads":{"type":"association","relation":"one_to_many","entity":"order_line_item_download","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"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"]]}}},"write-protected":false,"read-protected":false},"order_line_item_download":{"entity":"order_line_item_download","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}},"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}},"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"]],"required":true}},"accessGranted":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderLineItem":{"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":"orderLineItemId","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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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}},"validationData":{"type":"json_object","properties":[],"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","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"},"captures":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"orderTransactionId","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"]]}}},"write-protected":false,"read-protected":false},"order_transaction_capture":{"entity":"order_transaction_capture","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}},"orderTransactionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"orderTransactionVersionId":{"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"},"transaction":{"type":"association","relation":"many_to_one","entity":"order_transaction","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"orderTransactionId","referenceField":"id"},"refunds":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture_refund","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"captureId","primary":"id"},"externalReference":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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}},"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"]]}}},"write-protected":false,"read-protected":false},"order_transaction_capture_refund":{"entity":"order_transaction_capture_refund","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}},"captureId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"captureVersionId":{"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"},"transactionCapture":{"type":"association","relation":"many_to_one","entity":"order_transaction_capture","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"captureId","referenceField":"id"},"positions":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture_refund_position","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"refundId","primary":"id"},"externalReference":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"reason":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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}},"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"]]}}},"write-protected":false,"read-protected":false},"order_transaction_capture_refund_position":{"entity":"order_transaction_capture_refund_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}},"refundId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"refundVersionId":{"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}},"orderLineItem":{"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":"orderLineItemId","referenceField":"id"},"orderTransactionCaptureRefund":{"type":"association","relation":"many_to_one","entity":"order_transaction_capture_refund","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":null,"referenceField":"id"},"externalReference":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"reason":{"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"]]}},"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"]]}},"regulationPrice":{"type":"json_object","properties":{"price":{"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}},"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"]]}}},"write-protected":false,"read-protected":false},"payment_method":{"entity":"payment_method","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"pluginId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"handlerIdentifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"distinguishableName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[["system"]],"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"afterOrderEnabled":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"availabilityRuleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"formattedHandlerIdentifier":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]],"runtime":true}},"synchronous":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"asynchronous":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"prepared":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"refundable":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"recurring":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]],"runtime":true}},"translations":{"type":"association","relation":"one_to_many","entity":"payment_method_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"paymentMethodId","primary":"paymentMethodId"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"availabilityRule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"availabilityRuleId","referenceField":"id"},"salesChannelDefaultAssignments":{"type":"association","relation":"one_to_many","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"paymentMethodId","primary":"id"},"plugin":{"type":"association","relation":"many_to_one","entity":"plugin","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"pluginId","referenceField":"id"},"customers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"id","referenceField":"defaultPaymentMethodId","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"},"shortName":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"technicalName":{"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"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"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}}},"write-protected":false,"read-protected":false},"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"]]}},"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"}},"write-protected":false,"read-protected":false},"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,"no_constraint":true}},"productMediaVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":true}},"deliveryTimeId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"featureSetId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"inherited":true}},"canonicalProductId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true}},"canonicalProductVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"inherited":true,"required":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,"api_criteria_aware":true}},"productNumber":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"search_ranking":500,"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}},"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}},"availableStock":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"stock":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":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":[[]]}},"variantListingConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"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":[[]]}},"states":{"type":"json_list","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"write_protected":[[]]}},"downloads":{"type":"association","relation":"one_to_many","entity":"product_download","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productId","primary":"id"},"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},"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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"cascade_delete":true,"inherited":true},"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"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"product_download":{"entity":"product_download","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","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"isRunning":{"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"product_media":{"entity":"product_media","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"versionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"productId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"productVersionId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"mediaId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"position":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"product":{"type":"association","relation":"many_to_one","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"reversed_inherited":"media"},"localField":"productId","referenceField":"id"},"media":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"mediaId","referenceField":"id"},"coverProducts":{"type":"association","relation":"one_to_many","entity":"product","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"set_null_on_delete":true},"localField":"id","referenceField":"coverId","primary":"id"},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"product_stream":{"entity":"product_stream","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"apiFilter":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"invalid":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[[]]}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"description":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"customFields":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"translatable":true}},"translations":{"type":"association","relation":"one_to_many","entity":"product_stream_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"productStreamId","primary":"productStreamId"},"filters":{"type":"association","relation":"one_to_many","entity":"product_stream_filter","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"productStreamId","primary":"id"},"productCrossSellings":{"type":"association","relation":"one_to_many","entity":"product_cross_selling","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"productExports":{"type":"association","relation":"one_to_many","entity":"product_export","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"categories":{"type":"association","relation":"one_to_many","entity":"category","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"productStreamId","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"product_stream_translation":{"entity":"product_stream_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"]]}},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"promotion":{"entity":"promotion","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"search_ranking":500,"translatable":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"validFrom":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"validUntil":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"maxRedemptionsGlobal":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"maxRedemptionsPerCustomer":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"exclusive":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"code":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"useCodes":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"useIndividualCodes":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"individualCodePattern":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"useSetGroups":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"customerRestriction":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"preventCombination":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"orderCount":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"ordersPerCustomerCount":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"write_protected":[["system"]]}},"setgroups":{"type":"association","relation":"one_to_many","entity":"promotion_setgroup","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"salesChannels":{"type":"association","relation":"one_to_many","entity":"promotion_sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"discounts":{"type":"association","relation":"one_to_many","entity":"promotion_discount","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"individualCodes":{"type":"association","relation":"one_to_many","entity":"promotion_individual_code","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"promotionId","primary":"id"},"personaRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_persona_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"personaCustomers":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"customerId","mapping":"promotion_persona_customer","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"orderRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_order_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"cartRules":{"type":"association","relation":"many_to_many","local":"promotionId","reference":"ruleId","mapping":"promotion_cart_rule","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"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":"promotionId","primary":"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"areas":{"type":"json_list","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,"rule_areas":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,"rule_areas":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,"rule_areas":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,"rule_areas":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,"rule_areas":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,"rule_areas":true},"localField":"id","referenceField":"id"},"flowSequences":{"type":"association","relation":"one_to_many","entity":"flow_sequence","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true,"rule_areas":true},"localField":"id","referenceField":"ruleId","primary":"id"},"taxProviders":{"type":"association","relation":"one_to_many","entity":"tax_provider","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true,"since":"6.5.0.0"},"localField":"id","referenceField":"availabilityRuleId","primary":"id"},"tags":{"type":"association","relation":"many_to_many","local":"ruleId","reference":"tagId","mapping":"rule_tag","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"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,"rule_areas":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,"rule_areas":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,"rule_areas":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,"rule_areas":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"]]}}},"write-protected":false,"read-protected":false},"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"]],"required":true}},"ruleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"scriptId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"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"},"appScriptCondition":{"type":"association","relation":"many_to_one","entity":"app_script_condition","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"scriptId","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"]]}}},"write-protected":false,"read-protected":false},"rule_tag":{"entity":"rule_tag","properties":{"ruleId":{"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}},"rule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"ruleId","referenceField":"id"},"tag":{"type":"association","relation":"many_to_one","entity":"tag","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"tagId","referenceField":"id"}},"write-protected":false,"read-protected":false},"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"},"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}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]],"set_null_on_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"]],"set_null_on_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"]],"set_null_on_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"]],"set_null_on_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"]],"set_null_on_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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"defaultRunInterval":{"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}},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"script":{"entity":"script","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"script":{"type":"text","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true,"allow_html":true}},"hook":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"name":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"appId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"app":{"type":"association","relation":"many_to_one","entity":"app","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"appId","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"error":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"runtime":true}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}},"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"]],"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"]]}},"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"},"appShippingMethod":{"type":"association","relation":"one_to_one","entity":"app_shipping_method","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"shippingMethodId"},"technicalName":{"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"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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}},"referencedId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"required":true}},"referencedVersionId":{"type":"uuid","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"},"entityName":{"type":"string","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"]]}}},"write-protected":false,"read-protected":false},"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"},"orderTransactionCaptures":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"stateId","primary":"id"},"orderTransactionCaptureRefunds":{"type":"association","relation":"one_to_many","entity":"order_transaction_capture_refund","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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"tag":{"entity":"tag","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}},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"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"]],"cascade_delete":true},"localField":"id","referenceField":"id"},"rules":{"type":"association","relation":"many_to_many","local":"tagId","reference":"ruleId","mapping":"rule_tag","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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"tax_provider":{"entity":"tax_provider","properties":{"id":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"primary_key":true,"required":true}},"identifier":{"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","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}},"priority":{"type":"int","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"processUrl":{"type":"string","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"availabilityRuleId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"appId":{"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}},"translations":{"type":"association","relation":"one_to_many","entity":"tax_provider_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true},"localField":"id","referenceField":"taxProviderId","primary":"taxProviderId"},"availabilityRule":{"type":"association","relation":"many_to_one","entity":"rule","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"restrict_delete":true},"localField":"availabilityRuleId","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"]]}},"translated":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"computed":true,"runtime":true}}},"write-protected":false,"read-protected":false},"tax_provider_translation":{"entity":"tax_provider_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"]]}},"taxProviderId":{"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}},"taxProvider":{"type":"association","relation":"many_to_one","entity":"tax_provider","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"taxProviderId","referenceField":"id"},"language":{"type":"association","relation":"many_to_one","entity":"language","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"languageId","referenceField":"id"}},"write-protected":false,"read-protected":false},"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}},"activeFrom":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"]]}},"themeJson":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"baseConfig":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"configValues":{"type":"json_object","properties":[],"flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"active":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"translations":{"type":"association","relation":"one_to_many","entity":"theme_translation","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"cascade_delete":true,"required":true},"localField":"id","referenceField":"themeId","primary":"themeId"},"salesChannels":{"type":"association","relation":"many_to_many","local":"themeId","reference":"salesChannelId","mapping":"theme_sales_channel","entity":"sales_channel","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"media":{"type":"association","relation":"many_to_many","local":"themeId","reference":"mediaId","mapping":"theme_media","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]},"localField":"id","referenceField":"id"},"previewMedia":{"type":"association","relation":"many_to_one","entity":"media","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"previewMediaId","referenceField":"id"},"dependentThemes":{"type":"association","relation":"many_to_many","local":"parentId","reference":"childId","mapping":"theme_child","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\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}}},"write-protected":false,"read-protected":false},"theme_child":{"entity":"theme_child","properties":{"parentId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"childId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"primary_key":true,"required":true}},"parentTheme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"parentId","referenceField":"id"},"childTheme":{"type":"association","relation":"many_to_one","entity":"theme","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"childId","referenceField":"id"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}}},"write-protected":false,"read-protected":false},"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"}},"write-protected":false,"read-protected":false},"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}},"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"},"avatarId":{"type":"uuid","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"avatarMedia":{"type":"association","relation":"many_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"},"createdCustomers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"createdById","primary":"id"},"updatedCustomers":{"type":"association","relation":"one_to_many","entity":"customer","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]},"localField":"id","referenceField":"updatedById","primary":"id"},"createdAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]],"required":true}},"updatedAt":{"type":"date","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource","Shopware\\Core\\Framework\\Api\\Context\\SalesChannelApiSource"]]}},"createdNotifications":{"type":"association","relation":"one_to_many","entity":"notification","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]],"extension":true},"localField":"id","referenceField":"createdByUserId","primary":"id"}},"write-protected":true,"read-protected":false},"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}},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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"]]}}},"write-protected":false,"read-protected":false},"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}},"onlyLiveVersion":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"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"]]}}},"write-protected":false,"read-protected":false},"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}},"onlyLiveVersion":{"type":"boolean","flags":{"read_protected":[["Shopware\\Core\\Framework\\Api\\Context\\AdminApiSource"]]}},"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"]]}}},"write-protected":false,"read-protected":false}} \ No newline at end of file diff --git a/src/Service/DocumentService.php b/src/Service/DocumentService.php index 6dc4c87c..3ef14fd9 100644 --- a/src/Service/DocumentService.php +++ b/src/Service/DocumentService.php @@ -6,9 +6,7 @@ class DocumentService extends ApiService { private const DOCUMENT_DOWNLOAD_ENDPOINT = '/api/_action/document/%s/%s?download=1'; - private const INVOICE_DOCUMENT_CREATE_ENDPOINT = '/api/_action/document/invoice/create'; - - public function downloadDocumentPdfByIdAndDeepLink($documentId, $documentDeeplink) + public function downloadDocumentPdfByIdAndDeepLink(string $documentId, string $documentDeeplink): string { $path = sprintf(self::DOCUMENT_DOWNLOAD_ENDPOINT, $documentId, $documentDeeplink); diff --git a/src/Service/Struct/SyncOperator.php b/src/Service/Struct/SyncOperator.php index d945ab7a..92047650 100644 --- a/src/Service/Struct/SyncOperator.php +++ b/src/Service/Struct/SyncOperator.php @@ -2,6 +2,8 @@ namespace Vin\ShopwareSdk\Service\Struct; +use Vin\ShopwareSdk\Data\Criteria; +use Vin\ShopwareSdk\Data\Filter\Filter; use Vin\ShopwareSdk\Data\ParseAware; use Vin\ShopwareSdk\Data\Struct; @@ -11,21 +13,26 @@ class SyncOperator extends Struct implements ParseAware public const DELETE_OPERATOR = 'delete'; - protected string $entity; - - protected string $action; - - protected array $payload; - - public function __construct(string $entity, string $action, array $payload) + public function __construct( + protected string $entity, + protected string $action, + protected array $payload, + protected ?Criteria $criteria = null + ) { if ($action !== self::UPSERT_OPERATOR && $action !== self::DELETE_OPERATOR) { throw new \InvalidArgumentException('Action ' . $action . ' is not allowed, allowed types: upsert, delete'); } - $this->entity = $entity; - $this->action = $action; - $this->payload = $payload; + if ( !\in_array($this->action, $this->getSupportedActions(), true)) { + throw new \InvalidArgumentException( + 'Action ' . $this->action . ' is not allowed, allowed types: ' . implode(', ', $this->getSupportedActions()) + ); + } + + if (empty($this->payload) && empty($this->criteria)) { + throw new \InvalidArgumentException('Payload or criteria must be set'); + } } public function getEntity(): string @@ -48,12 +55,28 @@ public function setPayload(array $payload): void $this->payload = $payload; } + public function getCriteria(): ?Criteria + { + return $this->criteria; + } + public function parse(): array { return [ 'entity' => $this->entity, 'action' => $this->action, 'payload' => $this->payload, + 'criteria' => array_map(function (Filter $filter) { + return $filter->parse(); + }, $this->criteria?->getFilters() ?? []), ]; } + + /** + * @return string[] + */ + public function getSupportedActions(): array + { + return [self::UPSERT_OPERATOR, self::DELETE_OPERATOR]; + } } diff --git a/tests/CriteriaTest.php b/tests/CriteriaTest.php index 654933ed..c8f10032 100644 --- a/tests/CriteriaTest.php +++ b/tests/CriteriaTest.php @@ -85,188 +85,188 @@ public function testCriteriaParsed(): void $parsed = $criteria->parse(); $expectedParsed = [ - "page" => 5, - "limit" => 50, - "query" => [ + 'page' => 5, + 'limit' => 50, + 'query' => [ [ - "score" => 100, - "query" => [ - "type" => "equalsAny", - "field" => "score-field", - "value" => "value-1|value-2" + 'score' => 100, + 'query' => [ + 'type' => 'equalsAny', + 'field' => 'score-field', + 'value' => 'value-1|value-2' ], - "scoreField" => "score-field" + 'scoreField' => 'score-field' ] ], - "filter" => [ + 'filter' => [ [ - "type" => "equals", - "field" => "field-1", - "value" => "value-1" + 'type' => 'equals', + 'field' => 'field-1', + 'value' => 'value-1' ], [ - "type" => "equalsAny", - "field" => "field-1", - "value" => "value-1|value-2" + 'type' => 'equalsAny', + 'field' => 'field-1', + 'value' => 'value-1|value-2' ], [ - "type" => "contains", - "field" => "field-1", - "value" => "contain-field-1" + 'type' => 'contains', + 'field' => 'field-1', + 'value' => 'contain-field-1' ], [ - "type" => "multi", - "operator" => "and", - "queries" => [ + 'type' => 'multi', + 'operator' => 'and', + 'queries' => [ [ - "type" => "equals", - "field" => "description", - "value" => "description-value" + 'type' => 'equals', + 'field' => 'description', + 'value' => 'description-value' ], [ - "type" => "equals", - "field" => "title", - "value" => "title-value" + 'type' => 'equals', + 'field' => 'title', + 'value' => 'title-value' ] ] ], [ - "type" => "not", - "operator" => "or", - "queries" => [ + 'type' => 'not', + 'operator' => 'or', + 'queries' => [ [ - "type" => "equals", - "field" => "stock", - "value" => 0 + 'type' => 'equals', + 'field' => 'stock', + 'value' => 0 ] ] ], [ - "type" => "range", - "field" => "stock", - "parameters" => [ - "gt" => 0, - "lt" => 10 + 'type' => 'range', + 'field' => 'stock', + 'parameters' => [ + 'gt' => 0, + 'lt' => 10 ] ], [ - "type" => "prefix", - "field" => "title", - "value" => "awesome" + 'type' => 'prefix', + 'field' => 'title', + 'value' => 'awesome' ], [ - "type" => "suffix", - "field" => "description", - "value" => "bronze" + 'type' => 'suffix', + 'field' => 'description', + 'value' => 'bronze' ] ], - "post-filter" => [ + 'post-filter' => [ [ - "type" => "equals", - "field" => "field1", - "value" => "value1" + 'type' => 'equals', + 'field' => 'field1', + 'value' => 'value1' ] ], - "sort" => [ + 'sort' => [ [ - "field" => "field-sort-1", - "order" => "DESC", - "naturalSorting" => false + 'field' => 'field-sort-1', + 'order' => 'DESC', + 'naturalSorting' => false ], [ - "field" => "field-sort-2", - "order" => "ASC", - "naturalSorting" => false + 'field' => 'field-sort-2', + 'order' => 'ASC', + 'naturalSorting' => false ] ], - "aggregations" => [ + 'aggregations' => [ [ - "type" => "sum", - "name" => "sum-field-2", - "field" => "field-2" + 'type' => 'sum', + 'name' => 'sum-field-2', + 'field' => 'field-2' ], [ - "type" => "count", - "name" => "count-field-3", - "field" => "field-3" + 'type' => 'count', + 'name' => 'count-field-3', + 'field' => 'field-3' ], [ - "type" => "filter", - "name" => "filter-field-4", - "filter" => [ + 'type' => 'filter', + 'name' => 'filter-field-4', + 'filter' => [ [ - "type" => "equals", - "field" => "field-4", - "value" => "value-4" + 'type' => 'equals', + 'field' => 'field-4', + 'value' => 'value-4' ] ], - "aggregation" => [ - "type" => "sum", - "name" => "sum-field-2", - "field" => "field-2" + 'aggregation' => [ + 'type' => 'sum', + 'name' => 'sum-field-2', + 'field' => 'field-2' ] ], [ - "type" => "stats", - "name" => "field-stat", - "field" => "value-stat" + 'type' => 'stats', + 'name' => 'field-stat', + 'field' => 'value-stat' ], [ - "type" => "terms", - "name" => "field-term", - "field" => "value-term" + 'type' => 'terms', + 'name' => 'field-term', + 'field' => 'value-term' ], [ - "type" => "min", - "name" => "field-min", - "field" => "field-min" + 'type' => 'min', + 'name' => 'field-min', + 'field' => 'field-min' ], [ - "type" => "max", - "name" => "field-max", - "field" => "field-max" + 'type' => 'max', + 'name' => 'field-max', + 'field' => 'field-max' ], [ - "type" => "avg", - "name" => "field-avg", - "field" => "field-avg" + 'type' => 'avg', + 'name' => 'field-avg', + 'field' => 'field-avg' ], [ - "type" => "histogram", - "name" => "field-histogram", - "field" => "field-histogram", - "interval" => 'day' + 'type' => 'histogram', + 'name' => 'field-histogram', + 'field' => 'field-histogram', + 'interval' => 'day' ] ], - "grouping" => [ - "field-grouping" + 'grouping' => [ + 'field-grouping' ], - "associations" => [ - "assoc1" => [ - "page" => 1, - "limit" => 25, - "total-count-mode" => 1 + 'associations' => [ + 'assoc1' => [ + 'page' => 1, + 'limit' => null, + 'total-count-mode' => 1 ], - "assoc2" => [ - "page" => 1, - "limit" => 25, - "total-count-mode" => 1 + 'assoc2' => [ + 'page' => 1, + 'limit' => null, + 'total-count-mode' => 1 ], - "assoc3" => [ - "page" => 1, - "limit" => 25, - "total-count-mode" => 1 + 'assoc3' => [ + 'page' => 1, + 'limit' => null, + 'total-count-mode' => 1 ] ], - "includes" => [ - "product-alias" => [ - "name", - "description" + 'includes' => [ + 'product-alias' => [ + 'name', + 'description' ] ], - "total-count-mode" => 1 + 'total-count-mode' => 1 ]; - static::assertEquals($parsed, $expectedParsed); + static::assertEquals($expectedParsed, $parsed); } } diff --git a/tests/EntityHydratorTest.php b/tests/EntityHydratorTest.php index 2139a1bc..7c0e79ea 100644 --- a/tests/EntityHydratorTest.php +++ b/tests/EntityHydratorTest.php @@ -44,7 +44,7 @@ protected function setUp(): void public function testHydrateSearchResultWithEmptyResult(): void { - $result = $this->entityHydrator->hydrateSearchResult([], $this->context); + $result = $this->entityHydrator->hydrateSearchResult([], $this->context, 'product'); static::assertInstanceOf(EntityCollection::class, $result); diff --git a/tests/EntityRepositoryTest.php b/tests/EntityRepositoryTest.php index 8d60ad9a..67106863 100644 --- a/tests/EntityRepositoryTest.php +++ b/tests/EntityRepositoryTest.php @@ -4,17 +4,15 @@ namespace Vin\ShopwareSdkTest; -use GuzzleHttp\Exception\BadResponseException; use GuzzleHttp\Handler\MockHandler; use GuzzleHttp\HandlerStack; -use GuzzleHttp\Psr7\Request; use GuzzleHttp\Psr7\Response; use PHPUnit\Framework\TestCase; use Vin\ShopwareSdk\Data\AccessToken; use Vin\ShopwareSdk\Data\Context; use Vin\ShopwareSdk\Data\Criteria; -use Vin\ShopwareSdk\Data\Entity\Custom\CustomDefinition; -use Vin\ShopwareSdk\Data\Entity\Custom\CustomEntity; +use Vin\ShopwareSdk\Data\Custom\CustomDefinition; +use Vin\ShopwareSdk\Data\Custom\CustomEntity; use Vin\ShopwareSdk\Data\Entity\Product\ProductCollection; use Vin\ShopwareSdk\Data\Entity\Product\ProductDefinition; use Vin\ShopwareSdk\Data\Entity\Product\ProductEntity; @@ -58,7 +56,7 @@ public function testSearchBadResponse(): void static::expectExceptionMessage('Unauthenticated'); static::expectExceptionCode(401); - $this->mock->append(new BadResponseException('Unauthenticated', new Request('POST', 'test'), new Response(401, [], 'Unauthenticated'))); + $this->mock->append(new ShopwareResponseException('Unauthenticated', 401)); $this->productRepository->get('product-id', new Criteria(), $this->context); } @@ -145,7 +143,7 @@ public function testSearchShouldThrowShopwareHttpException(): void static::expectExceptionMessage('Unauthenticated'); static::expectExceptionCode(401); - $this->mock->append(new BadResponseException('Unauthenticated', new Request('POST', 'test'), new Response(401, [], 'Unauthenticated'))); + $this->mock->append(new ShopwareResponseException('Unauthenticated', 401)); $this->productRepository->searchIds(new Criteria(), $this->context); } diff --git a/tests/RepositoryFactoryTest.php b/tests/RepositoryFactoryTest.php index f25e753b..7283d7e8 100644 --- a/tests/RepositoryFactoryTest.php +++ b/tests/RepositoryFactoryTest.php @@ -5,9 +5,9 @@ namespace Vin\ShopwareSdkTest; use PHPUnit\Framework\TestCase; -use Vin\ShopwareSdk\Data\Entity\Custom\CustomCollection; -use Vin\ShopwareSdk\Data\Entity\Custom\CustomDefinition; -use Vin\ShopwareSdk\Data\Entity\Custom\CustomEntity; +use Vin\ShopwareSdk\Data\Custom\CustomCollection; +use Vin\ShopwareSdk\Data\Custom\CustomDefinition; +use Vin\ShopwareSdk\Data\Custom\CustomEntity; use Vin\ShopwareSdk\Data\Entity\Customer\CustomerCollection; use Vin\ShopwareSdk\Data\Entity\Customer\CustomerDefinition; use Vin\ShopwareSdk\Data\Entity\Customer\CustomerEntity;