<?php //resource_metadata_591f3c905011fadb4efe013bb0c058ac

return [PHP_INT_MAX, static function () { return \Symfony\Component\VarExporter\Internal\Hydrator::hydrate(
    $o = [
        clone (\Symfony\Component\VarExporter\Internal\Registry::$prototypes['ApiPlatform\\Core\\Metadata\\Resource\\ResourceMetadata'] ?? \Symfony\Component\VarExporter\Internal\Registry::p('ApiPlatform\\Core\\Metadata\\Resource\\ResourceMetadata')),
    ],
    null,
    [
        'ApiPlatform\\Core\\Metadata\\Resource\\ResourceMetadata' => [
            'shortName' => [
                'Menu',
            ],
            'description' => [
                '',
            ],
            'itemOperations' => [
                [
                    'GET' => [
                        'method' => 'GET',
                        'path' => '/menus/{id}',
                        'controller' => 'App\\Controller\\Api\\Shop\\Menu\\GetMenuController',
                        'requirements' => [
                            'id' => 'current|\\d+',
                        ],
                        'read' => false,
                        'openapi_context' => [
                            'summary' => 'Retrieve a menu by its ID',
                            'description' => 'Returns a menu including its categories and products based on the shop context of the user or the provided shop token. if the ID is equal to "current", return the actif one',
                            'parameters' => [
                                [
                                    'name' => 'id',
                                    'in' => 'path',
                                    'required' => true,
                                    'schema' => [
                                        'type' => 'string',
                                        'pattern' => '^(current|\\d+)$',
                                        'example' => 1,
                                    ],
                                    'description' => 'The ID of the menu to retrieve',
                                ],
                            ],
                            'responses' => [
                                200 => [
                                    'description' => 'A menu object with its categories and products',
                                    'content' => [
                                        'application/json' => [
                                            'schema' => [
                                                'type' => 'object',
                                                'properties' => [
                                                    'id' => [
                                                        'type' => 'integer',
                                                        'example' => 196,
                                                    ],
                                                    'name' => [
                                                        'type' => 'string',
                                                        'example' => 'Prog demo v1',
                                                    ],
                                                    'description' => [
                                                        'type' => 'string',
                                                        'nullable' => true,
                                                        'example' => null,
                                                    ],
                                                    'note' => [
                                                        'type' => 'string',
                                                        'nullable' => true,
                                                        'example' => null,
                                                    ],
                                                    'categories' => [
                                                        'type' => 'array',
                                                        'items' => [
                                                            'type' => 'object',
                                                            'properties' => [
                                                                'id' => [
                                                                    'type' => 'integer',
                                                                    'example' => 1249,
                                                                ],
                                                                'parentId' => [
                                                                    'type' => 'integer',
                                                                    'nullable' => true,
                                                                    'example' => null,
                                                                ],
                                                                'position' => [
                                                                    'type' => 'integer',
                                                                    'example' => 1,
                                                                ],
                                                                'visible' => [
                                                                    'type' => 'boolean',
                                                                    'example' => true,
                                                                ],
                                                                'enabled' => [
                                                                    'type' => 'boolean',
                                                                    'example' => true,
                                                                ],
                                                                'externalId' => [
                                                                    'type' => 'string',
                                                                    'nullable' => true,
                                                                    'example' => null,
                                                                ],
                                                                'imageUrl' => [
                                                                    'type' => 'string',
                                                                    'example' => 'uploads/images/categories/be98a5d1.png',
                                                                ],
                                                                'products' => [
                                                                    'type' => 'array',
                                                                    'items' => [
                                                                        'type' => 'object',
                                                                        'properties' => [
                                                                            'id' => [
                                                                                'type' => 'integer',
                                                                                'example' => 8862,
                                                                            ],
                                                                            'calory' => [
                                                                                'type' => 'integer',
                                                                                'nullable' => true,
                                                                                'example' => null,
                                                                            ],
                                                                            'withAlcool' => [
                                                                                'type' => 'boolean',
                                                                                'example' => false,
                                                                            ],
                                                                            'new' => [
                                                                                'type' => 'boolean',
                                                                                'example' => false,
                                                                            ],
                                                                            'blockedBySlot' => [
                                                                                'type' => 'boolean',
                                                                                'example' => false,
                                                                            ],
                                                                            'restricted' => [
                                                                                'type' => 'boolean',
                                                                                'example' => false,
                                                                            ],
                                                                            'multiQuantity' => [
                                                                                'type' => 'boolean',
                                                                                'example' => false,
                                                                            ],
                                                                            'options' => [
                                                                                'type' => 'array',
                                                                                'items' => [
                                                                                    'type' => 'object',
                                                                                    'properties' => [
                                                                                        'id' => [
                                                                                            'type' => 'integer',
                                                                                            'example' => 810,
                                                                                        ],
                                                                                        'type' => [
                                                                                            'type' => 'string',
                                                                                            'example' => 'single',
                                                                                        ],
                                                                                        'optionVariants' => [
                                                                                            'type' => 'array',
                                                                                            'items' => [
                                                                                                'type' => 'object',
                                                                                                'properties' => [
                                                                                                    'id' => [
                                                                                                        'type' => 'integer',
                                                                                                        'example' => 3888,
                                                                                                    ],
                                                                                                    'price' => [
                                                                                                        'type' => 'integer',
                                                                                                        'example' => 0,
                                                                                                    ],
                                                                                                    'outOfStock' => [
                                                                                                        'type' => 'boolean',
                                                                                                        'example' => false,
                                                                                                    ],
                                                                                                    'imageUrl' => [
                                                                                                        'type' => 'string',
                                                                                                        'nullable' => true,
                                                                                                        'example' => null,
                                                                                                    ],
                                                                                                    'enabled' => [
                                                                                                        'type' => 'boolean',
                                                                                                        'example' => true,
                                                                                                    ],
                                                                                                    'translations' => [
                                                                                                        'type' => 'array',
                                                                                                        'items' => [
                                                                                                            'type' => 'object',
                                                                                                            'properties' => [
                                                                                                                'name' => [
                                                                                                                    'type' => 'string',
                                                                                                                    'example' => '27 cm',
                                                                                                                ],
                                                                                                                'locale' => [
                                                                                                                    'type' => 'string',
                                                                                                                    'example' => 'fr_FR',
                                                                                                                ],
                                                                                                            ],
                                                                                                        ],
                                                                                                    ],
                                                                                                ],
                                                                                            ],
                                                                                        ],
                                                                                        'translations' => [
                                                                                            'type' => 'array',
                                                                                            'items' => [
                                                                                                'type' => 'object',
                                                                                                'properties' => [
                                                                                                    'name' => [
                                                                                                        'type' => 'string',
                                                                                                        'example' => 'Quelle taille pour votre pizza',
                                                                                                    ],
                                                                                                    'locale' => [
                                                                                                        'type' => 'string',
                                                                                                        'example' => 'fr_FR',
                                                                                                    ],
                                                                                                ],
                                                                                            ],
                                                                                        ],
                                                                                    ],
                                                                                ],
                                                                            ],
                                                                            'aliments' => [
                                                                                'type' => 'array',
                                                                                'items' => [
                                                                                    'type' => 'object',
                                                                                    'properties' => [
                                                                                        'id' => [
                                                                                            'type' => 'integer',
                                                                                            'example' => 1,
                                                                                        ],
                                                                                        'code' => [
                                                                                            'type' => 'string',
                                                                                            'example' => 'SOY',
                                                                                        ],
                                                                                        'logoUrl' => [
                                                                                            'type' => 'string',
                                                                                            'example' => 'uploads/images/aliments/plan-de-travail-1-copie-2-640b338c04c3f499541518.png',
                                                                                        ],
                                                                                        'translations' => [
                                                                                            'type' => 'array',
                                                                                            'items' => [
                                                                                                'type' => 'object',
                                                                                                'properties' => [
                                                                                                    'name' => [
                                                                                                        'type' => 'string',
                                                                                                        'example' => 'Soja',
                                                                                                    ],
                                                                                                    'locale' => [
                                                                                                        'type' => 'string',
                                                                                                        'example' => 'fr_FR',
                                                                                                    ],
                                                                                                ],
                                                                                            ],
                                                                                        ],
                                                                                    ],
                                                                                ],
                                                                            ],
                                                                            'upSellingProducts' => [
                                                                                'type' => 'array',
                                                                                'items' => [
                                                                                    'type' => 'object',
                                                                                ],
                                                                            ],
                                                                            'crossSellingProducts' => [
                                                                                'type' => 'array',
                                                                                'items' => [
                                                                                    'type' => 'object',
                                                                                ],
                                                                            ],
                                                                            'outOfStock' => [
                                                                                'type' => 'boolean',
                                                                                'example' => false,
                                                                            ],
                                                                            'preparationTime' => [
                                                                                'type' => 'integer',
                                                                                'example' => 0,
                                                                            ],
                                                                            'sku' => [
                                                                                'type' => 'string',
                                                                                'example' => 'FOX_670FD3F56BC45',
                                                                            ],
                                                                            'enabled' => [
                                                                                'type' => 'boolean',
                                                                                'example' => true,
                                                                            ],
                                                                            'imageUrl' => [
                                                                                'type' => 'string',
                                                                                'example' => 'uploads/images/products/1a91dcf7.jpeg',
                                                                            ],
                                                                            'modes' => [
                                                                                'type' => 'array',
                                                                                'items' => [
                                                                                    'type' => 'object',
                                                                                    'properties' => [
                                                                                        'code' => [
                                                                                            'type' => 'string',
                                                                                            'example' => 'delivery',
                                                                                        ],
                                                                                        'price' => [
                                                                                            'type' => 'integer',
                                                                                            'example' => 390,
                                                                                        ],
                                                                                        'tax' => [
                                                                                            'type' => 'object',
                                                                                            'properties' => [
                                                                                                'rate' => [
                                                                                                    'type' => 'number',
                                                                                                    'example' => 0.1,
                                                                                                ],
                                                                                            ],
                                                                                        ],
                                                                                        'enabled' => [
                                                                                            'type' => 'boolean',
                                                                                            'example' => true,
                                                                                        ],
                                                                                    ],
                                                                                ],
                                                                            ],
                                                                            'translations' => [
                                                                                'type' => 'array',
                                                                                'items' => [
                                                                                    'type' => 'object',
                                                                                    'properties' => [
                                                                                        'name' => [
                                                                                            'type' => 'string',
                                                                                            'example' => 'Salade de fruit',
                                                                                        ],
                                                                                        'description' => [
                                                                                            'type' => 'string',
                                                                                            'example' => 'Notre salade de fruits exotiques vous apporte une touche de fraicheur avec ses beaux morceaux de mangue fraîche, grenade et d\'ananas. 🥭',
                                                                                        ],
                                                                                        'locale' => [
                                                                                            'type' => 'string',
                                                                                            'example' => 'fr_FR',
                                                                                        ],
                                                                                    ],
                                                                                ],
                                                                            ],
                                                                        ],
                                                                    ],
                                                                ],
                                                                'translations' => [
                                                                    'type' => 'array',
                                                                    'items' => [
                                                                        'type' => 'object',
                                                                        'properties' => [
                                                                            'name' => [
                                                                                'type' => 'string',
                                                                                'example' => 'DESSERTS 🍪',
                                                                            ],
                                                                            'locale' => [
                                                                                'type' => 'string',
                                                                                'example' => 'fr_FR',
                                                                            ],
                                                                        ],
                                                                    ],
                                                                ],
                                                            ],
                                                        ],
                                                    ],
                                                    'enabled' => [
                                                        'type' => 'boolean',
                                                        'example' => true,
                                                    ],
                                                ],
                                            ],
                                        ],
                                    ],
                                ],
                            ],
                        ],
                        'input' => null,
                        'output' => null,
                        'stateless' => null,
                        'input_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                        'output_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                    ],
                    'delete' => [
                        'security' => 'is_granted("ROLE_EXACT_SHOP_MANAGER")',
                        'input' => null,
                        'output' => null,
                        'method' => 'DELETE',
                        'stateless' => null,
                        'input_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                        'output_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                    ],
                    'put' => [
                        'security' => 'is_granted("ROLE_EXACT_SHOP_MANAGER")',
                        'input' => null,
                        'output' => null,
                        'method' => 'PUT',
                        'stateless' => null,
                        'input_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                        'output_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                    ],
                    'enable' => [
                        'security' => 'is_granted("ROLE_EXACT_SHOP_MANAGER")',
                        'normalization_context' => [
                            'groups' => [
                                'get:menu',
                            ],
                        ],
                        'method' => 'PATCH',
                        'path' => '/menus/{id}/enable',
                        'controller' => 'App\\Controller\\Api\\Shop\\Menu\\EnableMenuController',
                        'openapi_context' => [
                            'summary' => 'Enable menu',
                            'parameters' => [
                                [
                                    'in' => 'path',
                                    'name' => 'id',
                                    'schema' => [
                                        'type' => 'integer',
                                    ],
                                    'required' => true,
                                    'description' => 'menu\'s id',
                                ],
                            ],
                            'requestBody' => [
                                'content' => [
                                    'application/json' => [
                                        'schema' => [
                                            'type' => 'object',
                                            'properties' => [],
                                        ],
                                    ],
                                ],
                            ],
                            'description' => 'Enable menu',
                            'responses' => [
                                404 => [
                                    'description' => 'Menu not found',
                                ],
                            ],
                        ],
                        'input' => null,
                        'output' => null,
                        'stateless' => null,
                        'input_formats' => [
                            'json' => [
                                'application/merge-patch+json',
                            ],
                        ],
                        'output_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                    ],
                    'menu_cross_selling' => [
                        'normalization_context' => [
                            'groups' => [
                                'read:menu:cross-selling',
                            ],
                        ],
                        'method' => 'GET',
                        'path' => '/menus/{id}/cross-selling-products',
                        'controller' => 'App\\Controller\\Api\\Shop\\Menu\\GetMenuCrossSellingController',
                        'requirements' => [
                            'id' => 'current|\\d+',
                        ],
                        'read' => false,
                        'openapi_context' => [
                            'summary' => 'Cross selling products',
                            'description' => 'Get menu cross selling products based on the shop context of the user or the provided shop token. if the ID is equal to "current", return the actif one',
                            'parameters' => [
                                [
                                    'name' => 'id',
                                    'in' => 'path',
                                    'required' => true,
                                    'schema' => [
                                        'type' => 'string',
                                        'pattern' => '^(current|\\d+)$',
                                        'example' => 1,
                                    ],
                                    'description' => 'The ID of the menu to retrieve',
                                ],
                            ],
                        ],
                        'input' => null,
                        'output' => null,
                        'stateless' => null,
                        'input_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                        'output_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                    ],
                    'promotional_offers' => [
                        'security' => 'is_granted("ROLE_EXACT_API") or is_granted("ROLE_EXACT_SHOP_MANAGER") or is_granted("ROLE_EXACT_MANAGER")',
                        'normalization_context' => [
                            'groups' => [
                                'get:offer',
                                'get:offer:menu',
                            ],
                        ],
                        'method' => 'GET',
                        'status' => 200,
                        'path' => '/menus/{id}/promotional-offers',
                        'controller' => 'App\\Controller\\Api\\Shop\\Menu\\GetPromotionalOfferController',
                        'requirements' => [
                            'id' => 'current|\\d+',
                        ],
                        'read' => false,
                        'openapi_context' => [
                            'summary' => 'Promotional offers list',
                            'description' => 'Get promotional offers based on the shop context of the user or the provided shop token. if the ID is equal to "current", return the actif one',
                            'parameters' => [
                                [
                                    'in' => 'path',
                                    'name' => 'id',
                                    'required' => true,
                                    'schema' => [
                                        'type' => 'string',
                                        'pattern' => '^(current|\\d+)$',
                                        'example' => 1,
                                    ],
                                    'description' => 'The ID of the menu to retrieve',
                                ],
                            ],
                            'responses' => [
                                401 => [
                                    'description' => 'Unauthorized',
                                ],
                            ],
                        ],
                        'input' => null,
                        'output' => null,
                        'stateless' => null,
                        'input_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                        'output_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                    ],
                ],
            ],
            'collectionOperations' => [
                [
                    'get' => [
                        'normalization_context' => [
                            'groups' => [
                                'get:menus',
                            ],
                        ],
                        'input' => null,
                        'output' => null,
                        'method' => 'GET',
                        'stateless' => null,
                        'input_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                        'output_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                    ],
                    'post' => [
                        'security' => 'is_granted("ROLE_EXACT_SHOP_MANAGER")',
                        'input' => null,
                        'output' => null,
                        'method' => 'POST',
                        'stateless' => null,
                        'input_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                        'output_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                    ],
                    'menu_update' => [
                        'security' => 'is_granted("ROLE_EXACT_SHOP_MANAGER")',
                        'method' => 'POST',
                        'path' => '/menus/{id}/update',
                        'pagination_enabled' => false,
                        'status' => 200,
                        'controller' => 'App\\Controller\\Api\\Shop\\Menu\\UpdateMenuController',
                        'securityMessage' => 'Only shop manager can access this resource.',
                        'openapi_context' => [
                            'summary' => 'Update a menu',
                            'description' => 'Update a menu',
                            'parameters' => [
                                [
                                    'in' => 'path',
                                    'name' => 'id',
                                    'schema' => [
                                        'type' => 'integer',
                                    ],
                                ],
                            ],
                            'requestBody' => [
                                'content' => [
                                    'application/json' => [
                                        'schema' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'categories' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'id' => [
                                                            'type' => 'string',
                                                        ],
                                                        'name' => [
                                                            'type' => 'string',
                                                        ],
                                                        'imageUrl' => [
                                                            'type' => 'string',
                                                        ],
                                                        'position' => [
                                                            'type' => 'number',
                                                        ],
                                                    ],
                                                    'example' => [
                                                        [
                                                            'id' => 'acbc91d8-b711-4d79-a174-11e306e5ab66',
                                                            'name' => 'plats riz',
                                                            'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/snacking/category/lxnwjlmzruywm7dnpxcv4g.png',
                                                            'position' => 0,
                                                        ],
                                                        [
                                                            'id' => 'acbc91d8-b711-4d79-a174-11e306e5ab67',
                                                            'name' => 'plats poulet',
                                                            'imageUrl' => null,
                                                            'position' => 0,
                                                        ],
                                                    ],
                                                ],
                                                'map-categories' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'id' => [
                                                            'type' => 'string',
                                                        ],
                                                        'parent' => [
                                                            'type' => 'string',
                                                        ],
                                                    ],
                                                    'example' => [
                                                        [
                                                            'id' => 'acbc91d8-b711-4d79-a174-11e306e5ab67',
                                                            'parent' => 'acbc91d8-b711-4d79-a174-11e306e5ab66',
                                                        ],
                                                    ],
                                                ],
                                                'options' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'id' => [
                                                            'type' => 'string',
                                                        ],
                                                        'name' => [
                                                            'type' => 'string',
                                                        ],
                                                        'type' => [
                                                            'type' => 'string',
                                                        ],
                                                        'imageUrl' => [
                                                            'type' => 'string',
                                                        ],
                                                        'position' => [
                                                            'type' => 'number',
                                                        ],
                                                        'min' => [
                                                            'type' => 'number',
                                                        ],
                                                        'max' => [
                                                            'type' => 'number',
                                                        ],
                                                        'maxQuantity' => [
                                                            'type' => 'number',
                                                        ],
                                                        'required' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'optionVariants' => [
                                                            'type' => 'object',
                                                            'properties' => [
                                                                'id' => [
                                                                    'type' => 'string',
                                                                ],
                                                                'name' => [
                                                                    'type' => 'string',
                                                                ],
                                                                'price' => [
                                                                    'type' => 'number',
                                                                ],
                                                                'outOfStock' => [
                                                                    'type' => 'boolean',
                                                                ],
                                                                'imageUrl' => [
                                                                    'type' => 'string',
                                                                ],
                                                            ],
                                                        ],
                                                    ],
                                                    'example' => [
                                                        [
                                                            'id' => '1057120205',
                                                            'name' => 'souhaitez vous du chou ?',
                                                            'type' => 'single',
                                                            'imageUrl' => null,
                                                            'position' => 1,
                                                            'min' => 1,
                                                            'max' => 2,
                                                            'maxQuantity' => 1,
                                                            'required' => true,
                                                            'optionVariants' => [
                                                                [
                                                                    'id' => 'fox_343693_59',
                                                                    'name' => 'chou',
                                                                    'price' => 0,
                                                                    'outOfStock' => false,
                                                                    'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/catalog/p/bomptethz0gl9djehz0ciq.png',
                                                                ],
                                                            ],
                                                        ],
                                                        [
                                                            'id' => '642729388',
                                                            'name' => 'choisissez vous du supplement?',
                                                            'type' => 'multiple',
                                                            'imageUrl' => null,
                                                            'position' => 12,
                                                            'min' => 0,
                                                            'max' => 5,
                                                            'maxQuantity' => 2,
                                                            'required' => false,
                                                            'optionVariants' => [
                                                                [
                                                                    'id' => 'fox_343693_61',
                                                                    'name' => 'eby fry',
                                                                    'price' => 0,
                                                                    'outOfStock' => false,
                                                                    'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/catalog/p/dbf2_9xn1e2ancfx0r1cga.png',
                                                                ],
                                                            ],
                                                        ],
                                                    ],
                                                ],
                                                'products' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'id' => [
                                                            'type' => 'string',
                                                        ],
                                                        'name' => [
                                                            'type' => 'string',
                                                        ],
                                                        'description' => [
                                                            'type' => 'string',
                                                        ],
                                                        'calorie' => [
                                                            'type' => 'number',
                                                        ],
                                                        'imageUrl' => [
                                                            'type' => 'string',
                                                        ],
                                                        'withAlcohol' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'new' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'restricted' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'multiQuantity' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'outOfStock' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'preparationTime' => [
                                                            'type' => 'number',
                                                        ],
                                                        'modes' => [
                                                            'type' => 'object',
                                                            'properties' => [
                                                                'mode' => [
                                                                    'type' => 'string',
                                                                ],
                                                                'price' => [
                                                                    'type' => 'number',
                                                                ],
                                                                'tax' => [
                                                                    'type' => 'number',
                                                                ],
                                                                'enabled' => [
                                                                    'type' => 'boolean',
                                                                ],
                                                            ],
                                                        ],
                                                        'components' => [
                                                            'type' => 'object',
                                                        ],
                                                    ],
                                                    'example' => [
                                                        [
                                                            'id' => 'fox_343693_134',
                                                            'name' => 'jap curry',
                                                            'description' => 'jap curry',
                                                            'calorie' => 0,
                                                            'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/catalog/p/u6tfqehsweikrd55xky3cg.png',
                                                            'withAlcohol' => false,
                                                            'new' => false,
                                                            'restricted' => false,
                                                            'multiQuantity' => false,
                                                            'outOfStock' => false,
                                                            'preparationTime' => 0,
                                                            'modes' => [
                                                                [
                                                                    'mode' => 'on-site',
                                                                    'price' => 1250,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'delivery',
                                                                    'price' => 1250,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'take-out',
                                                                    'price' => 1250,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                            ],
                                                            'components' => [
                                                                'VEGAN',
                                                                'GLUTEN',
                                                            ],
                                                        ],
                                                        [
                                                            'id' => 'fox_343693_132',
                                                            'name' => 'namban tori',
                                                            'description' => 'namban tori',
                                                            'calorie' => 2,
                                                            'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/catalog/p/a2zk_42u6ugznkob0qzwiq.png',
                                                            'withAlcohol' => false,
                                                            'new' => false,
                                                            'restricted' => false,
                                                            'multiQuantity' => false,
                                                            'outOfStock' => false,
                                                            'preparationTime' => 0,
                                                            'modes' => [
                                                                [
                                                                    'mode' => 'on-site',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'delivery',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'take-out',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                            ],
                                                            'components' => [
                                                                'VEGAN',
                                                                'GLUTEN',
                                                            ],
                                                        ],
                                                        [
                                                            'id' => 'fox_343693_133',
                                                            'name' => 'chicken katsu',
                                                            'description' => 'chicken katsu',
                                                            'calorie' => 0,
                                                            'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/catalog/p/jmdqwiyi60kmfbhbqwo-7a.png',
                                                            'withAlcohol' => false,
                                                            'new' => false,
                                                            'restricted' => false,
                                                            'multiQuantity' => false,
                                                            'outOfStock' => false,
                                                            'preparationTime' => 0,
                                                            'modes' => [
                                                                [
                                                                    'mode' => 'on-site',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'delivery',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'take-out',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                            ],
                                                            'components' => [
                                                                'VEGAN',
                                                                'GLUTEN',
                                                            ],
                                                        ],
                                                    ],
                                                ],
                                                'map-products' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'id' => [
                                                            'type' => 'string',
                                                        ],
                                                        'cross-selling' => [
                                                            'type' => 'object',
                                                        ],
                                                        'up-selling' => [
                                                            'type' => 'object',
                                                        ],
                                                    ],
                                                    'example' => [
                                                        [
                                                            'id' => 'fox_343693_132',
                                                            'cross-selling' => [
                                                                'fox_343693_133',
                                                                'fox_343693_134',
                                                            ],
                                                            'up-selling' => [
                                                                'fox_343693_134',
                                                            ],
                                                        ],
                                                    ],
                                                ],
                                                'menu' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'name' => [
                                                            'type' => 'string',
                                                        ],
                                                        'description' => [
                                                            'type' => 'string',
                                                        ],
                                                        'note' => [
                                                            'type' => 'string',
                                                        ],
                                                        'products' => [
                                                            'type' => 'object',
                                                            'properties' => [
                                                                'id' => [
                                                                    'type' => 'string',
                                                                ],
                                                                'categories' => [
                                                                    'type' => 'object',
                                                                ],
                                                                'options' => [
                                                                    'type' => 'object',
                                                                ],
                                                            ],
                                                        ],
                                                    ],
                                                    'example' => [
                                                        'name' => 'Menu hiver',
                                                        'description' => 'Menu hiver',
                                                        'note' => null,
                                                        'products' => [
                                                            [
                                                                'id' => 'fox_343693_132',
                                                                'categories' => [
                                                                    'acbc91d8-b711-4d79-a174-11e306e5ab66',
                                                                ],
                                                                'options' => [
                                                                    '1057120205',
                                                                    '642729388',
                                                                ],
                                                            ],
                                                            [
                                                                'id' => 'fox_343693_133',
                                                                'categories' => [
                                                                    'acbc91d8-b711-4d79-a174-11e306e5ab66',
                                                                ],
                                                                'options' => [
                                                                    '1057120205',
                                                                    '642729388',
                                                                ],
                                                            ],
                                                            [
                                                                'id' => 'fox_343693_134',
                                                                'categories' => [
                                                                    'acbc91d8-b711-4d79-a174-11e306e5ab66',
                                                                ],
                                                                'options' => [
                                                                    '1057120205',
                                                                    '642729388',
                                                                ],
                                                            ],
                                                        ],
                                                    ],
                                                ],
                                            ],
                                        ],
                                    ],
                                ],
                            ],
                            'responses' => [
                                403 => [
                                    'description' => 'Not allowed',
                                ],
                                [
                                    'description' => 'Menu not found',
                                ],
                                400 => [
                                    'description' => 'Invalid json<br>Invalid menu json<br>Missing category fields<br>Category fields are empty<br>Category already exist<br>Products mismatch between menu and provided product list<br>Missing product fields<br>Categories mismatch between categories and provided categories inside products<br>Product fields are empty<br>Product already exist<br>Invalid product component<br>Missing option fields<br>Option fields are empty<br>Invalid option type<br>Option\'s image invalid<br>Option variant fields are empty<br>Option already exist<br>Invalid map products fields id<br>Invalid map product field cross selling<br>Invalid map product field up selling<br>Missing categories in products',
                                ],
                            ],
                        ],
                        'input' => null,
                        'output' => null,
                        'stateless' => null,
                        'input_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                        'output_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                    ],
                    'menu_create' => [
                        'security' => 'is_granted("ROLE_EXACT_SHOP_MANAGER")',
                        'method' => 'POST',
                        'path' => '/menus/create',
                        'pagination_enabled' => false,
                        'status' => 200,
                        'controller' => 'App\\Controller\\Api\\Shop\\Menu\\CreateMenuController',
                        'openapi_context' => [
                            'summary' => 'Create a menu',
                            'description' => 'Create a menu',
                            'requestBody' => [
                                'content' => [
                                    'application/json' => [
                                        'schema' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'categories' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'id' => [
                                                            'type' => 'string',
                                                        ],
                                                        'name' => [
                                                            'type' => 'string',
                                                        ],
                                                        'imageUrl' => [
                                                            'type' => 'string',
                                                        ],
                                                        'position' => [
                                                            'type' => 'number',
                                                        ],
                                                    ],
                                                    'example' => [
                                                        [
                                                            'id' => 'acbc91d8-b711-4d79-a174-11e306e5ab66',
                                                            'name' => 'plats riz',
                                                            'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/snacking/category/lxnwjlmzruywm7dnpxcv4g.png',
                                                            'position' => 0,
                                                        ],
                                                        [
                                                            'id' => 'acbc91d8-b711-4d79-a174-11e306e5ab67',
                                                            'name' => 'plats poulet',
                                                            'imageUrl' => null,
                                                            'position' => 0,
                                                        ],
                                                    ],
                                                ],
                                                'map-categories' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'id' => [
                                                            'type' => 'string',
                                                        ],
                                                        'parent' => [
                                                            'type' => 'string',
                                                        ],
                                                    ],
                                                    'example' => [
                                                        [
                                                            'id' => 'acbc91d8-b711-4d79-a174-11e306e5ab67',
                                                            'parent' => 'acbc91d8-b711-4d79-a174-11e306e5ab66',
                                                        ],
                                                    ],
                                                ],
                                                'options' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'id' => [
                                                            'type' => 'string',
                                                        ],
                                                        'name' => [
                                                            'type' => 'string',
                                                        ],
                                                        'type' => [
                                                            'type' => 'string',
                                                        ],
                                                        'imageUrl' => [
                                                            'type' => 'string',
                                                        ],
                                                        'position' => [
                                                            'type' => 'number',
                                                        ],
                                                        'min' => [
                                                            'type' => 'number',
                                                        ],
                                                        'max' => [
                                                            'type' => 'number',
                                                        ],
                                                        'maxQuantity' => [
                                                            'type' => 'number',
                                                        ],
                                                        'required' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'optionVariants' => [
                                                            'type' => 'object',
                                                            'properties' => [
                                                                'id' => [
                                                                    'type' => 'string',
                                                                ],
                                                                'name' => [
                                                                    'type' => 'string',
                                                                ],
                                                                'price' => [
                                                                    'type' => 'number',
                                                                ],
                                                                'outOfStock' => [
                                                                    'type' => 'boolean',
                                                                ],
                                                                'imageUrl' => [
                                                                    'type' => 'string',
                                                                ],
                                                            ],
                                                        ],
                                                    ],
                                                    'example' => [
                                                        [
                                                            'id' => '1057120205',
                                                            'name' => 'souhaitez vous du chou ?',
                                                            'type' => 'single',
                                                            'imageUrl' => null,
                                                            'position' => 1,
                                                            'min' => 1,
                                                            'max' => 2,
                                                            'maxQuantity' => 1,
                                                            'required' => true,
                                                            'optionVariants' => [
                                                                [
                                                                    'id' => 'fox_343693_59',
                                                                    'name' => 'chou',
                                                                    'price' => 0,
                                                                    'outOfStock' => false,
                                                                    'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/catalog/p/bomptethz0gl9djehz0ciq.png',
                                                                ],
                                                            ],
                                                        ],
                                                        [
                                                            'id' => '642729388',
                                                            'name' => 'choisissez vous du supplement?',
                                                            'type' => 'multiple',
                                                            'imageUrl' => null,
                                                            'position' => 12,
                                                            'min' => 0,
                                                            'max' => 5,
                                                            'maxQuantity' => 2,
                                                            'required' => false,
                                                            'optionVariants' => [
                                                                [
                                                                    'id' => 'fox_343693_61',
                                                                    'name' => 'eby fry',
                                                                    'price' => 0,
                                                                    'outOfStock' => false,
                                                                    'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/catalog/p/dbf2_9xn1e2ancfx0r1cga.png',
                                                                ],
                                                            ],
                                                        ],
                                                    ],
                                                ],
                                                'products' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'id' => [
                                                            'type' => 'string',
                                                        ],
                                                        'name' => [
                                                            'type' => 'string',
                                                        ],
                                                        'description' => [
                                                            'type' => 'string',
                                                        ],
                                                        'calorie' => [
                                                            'type' => 'number',
                                                        ],
                                                        'imageUrl' => [
                                                            'type' => 'string',
                                                        ],
                                                        'withAlcohol' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'new' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'restricted' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'multiQuantity' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'outOfStock' => [
                                                            'type' => 'boolean',
                                                        ],
                                                        'preparationTime' => [
                                                            'type' => 'number',
                                                        ],
                                                        'modes' => [
                                                            'type' => 'object',
                                                            'properties' => [
                                                                'mode' => [
                                                                    'type' => 'string',
                                                                ],
                                                                'price' => [
                                                                    'type' => 'number',
                                                                ],
                                                                'tax' => [
                                                                    'type' => 'number',
                                                                ],
                                                                'enabled' => [
                                                                    'type' => 'boolean',
                                                                ],
                                                            ],
                                                        ],
                                                        'components' => [
                                                            'type' => 'object',
                                                        ],
                                                    ],
                                                    'example' => [
                                                        [
                                                            'id' => 'fox_343693_134',
                                                            'name' => 'jap curry',
                                                            'description' => 'jap curry',
                                                            'calorie' => 0,
                                                            'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/catalog/p/u6tfqehsweikrd55xky3cg.png',
                                                            'withAlcohol' => false,
                                                            'new' => false,
                                                            'restricted' => false,
                                                            'multiQuantity' => false,
                                                            'outOfStock' => false,
                                                            'preparationTime' => 0,
                                                            'modes' => [
                                                                [
                                                                    'mode' => 'on-site',
                                                                    'price' => 1250,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'delivery',
                                                                    'price' => 1250,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'take-out',
                                                                    'price' => 1250,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                            ],
                                                            'components' => [
                                                                'VEGAN',
                                                                'GLUTEN',
                                                            ],
                                                        ],
                                                        [
                                                            'id' => 'fox_343693_132',
                                                            'name' => 'namban tori',
                                                            'description' => 'namban tori',
                                                            'calorie' => 2,
                                                            'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/catalog/p/a2zk_42u6ugznkob0qzwiq.png',
                                                            'withAlcohol' => false,
                                                            'new' => false,
                                                            'restricted' => false,
                                                            'multiQuantity' => false,
                                                            'outOfStock' => false,
                                                            'preparationTime' => 0,
                                                            'modes' => [
                                                                [
                                                                    'mode' => 'on-site',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'delivery',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'take-out',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                            ],
                                                            'components' => [
                                                                'VEGAN',
                                                                'GLUTEN',
                                                            ],
                                                        ],
                                                        [
                                                            'id' => 'fox_343693_133',
                                                            'name' => 'chicken katsu',
                                                            'description' => 'chicken katsu',
                                                            'calorie' => 0,
                                                            'imageUrl' => 'https://file.dev.keziacloud.fr/images/bancdetest/catalog/p/jmdqwiyi60kmfbhbqwo-7a.png',
                                                            'withAlcohol' => false,
                                                            'new' => false,
                                                            'restricted' => false,
                                                            'multiQuantity' => false,
                                                            'outOfStock' => false,
                                                            'preparationTime' => 0,
                                                            'modes' => [
                                                                [
                                                                    'mode' => 'on-site',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'delivery',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                                [
                                                                    'mode' => 'take-out',
                                                                    'price' => 1040,
                                                                    'tax' => 0.1,
                                                                    'enabled' => true,
                                                                ],
                                                            ],
                                                            'components' => [
                                                                'VEGAN',
                                                                'GLUTEN',
                                                            ],
                                                        ],
                                                    ],
                                                ],
                                                'map-products' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'id' => [
                                                            'type' => 'string',
                                                        ],
                                                        'cross-selling' => [
                                                            'type' => 'object',
                                                        ],
                                                        'up-selling' => [
                                                            'type' => 'object',
                                                        ],
                                                    ],
                                                    'example' => [
                                                        [
                                                            'id' => 'fox_343693_132',
                                                            'cross-selling' => [
                                                                'fox_343693_133',
                                                                'fox_343693_134',
                                                            ],
                                                            'up-selling' => [
                                                                'fox_343693_134',
                                                            ],
                                                        ],
                                                    ],
                                                ],
                                                'menu' => [
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'name' => [
                                                            'type' => 'string',
                                                        ],
                                                        'description' => [
                                                            'type' => 'string',
                                                        ],
                                                        'note' => [
                                                            'type' => 'string',
                                                        ],
                                                        'products' => [
                                                            'type' => 'object',
                                                            'properties' => [
                                                                'id' => [
                                                                    'type' => 'string',
                                                                ],
                                                                'categories' => [
                                                                    'type' => 'object',
                                                                ],
                                                                'options' => [
                                                                    'type' => 'object',
                                                                ],
                                                            ],
                                                        ],
                                                    ],
                                                    'example' => [
                                                        'name' => 'Menu hiver',
                                                        'description' => 'Menu hiver',
                                                        'note' => null,
                                                        'products' => [
                                                            [
                                                                'id' => 'fox_343693_132',
                                                                'categories' => [
                                                                    'acbc91d8-b711-4d79-a174-11e306e5ab66',
                                                                ],
                                                                'options' => [
                                                                    '1057120205',
                                                                    '642729388',
                                                                ],
                                                            ],
                                                            [
                                                                'id' => 'fox_343693_133',
                                                                'categories' => [
                                                                    'acbc91d8-b711-4d79-a174-11e306e5ab66',
                                                                ],
                                                                'options' => [
                                                                    '1057120205',
                                                                    '642729388',
                                                                ],
                                                            ],
                                                            [
                                                                'id' => 'fox_343693_134',
                                                                'categories' => [
                                                                    'acbc91d8-b711-4d79-a174-11e306e5ab66',
                                                                ],
                                                                'options' => [
                                                                    '1057120205',
                                                                    '642729388',
                                                                ],
                                                            ],
                                                        ],
                                                    ],
                                                ],
                                            ],
                                        ],
                                    ],
                                ],
                            ],
                            'responses' => [
                                400 => [
                                    'description' => 'Invalid json<br>Invalid menu json<br>Missing category fields<br>Category fields are empty<br>Category\'s image invalid<br>Category already exist<br>Products mismatch between menu and provided product list<br>Categories mismatch between categories and provided categories inside products<br>Missing product fields<br>Product fields are empty<br>Product\'s image invalid<br>Product already exist<br>Invalid product component<br>Missing option fields<br>Option fields are empty<br>Invalid option type<br>Option\'s image invalid<br>Missing option variant fields<br>Option variant fields are empty<br>Option variant\'s image invalid<br>Option already exist<br>Invalid map products fields id<br>Invalid map product field cross selling<br>Invalid map product field up selling<br>Missing categories in products',
                                ],
                            ],
                        ],
                        'input' => null,
                        'output' => null,
                        'stateless' => null,
                        'input_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                        'output_formats' => [
                            'json' => [
                                'application/json',
                            ],
                            'jsonld' => [
                                'application/ld+js',
                            ],
                            'html' => [
                                'text/html',
                            ],
                        ],
                    ],
                ],
            ],
            'graphql' => [
                [
                    'item_query' => [],
                    'collection_query' => [],
                    'delete' => [],
                    'update' => [],
                    'create' => [],
                ],
            ],
            'attributes' => [
                [
                    'security' => 'is_granted("ROLE_EXACT_API") or is_granted("ROLE_EXACT_SHOP_MANAGER")',
                    'cache_headers' => null,
                    'denormalization_context' => [
                        'disable_type_enforcement' => true,
                        'groups' => [
                            'post:menu',
                        ],
                    ],
                    'deprecation_reason' => null,
                    'elasticsearch' => null,
                    'fetch_partial' => null,
                    'force_eager' => null,
                    'formats' => null,
                    'filters' => [
                        'annotated_app_entity_shop_menu_api_platform_core_bridge_doctrine_orm_filter_boolean_filter',
                    ],
                    'hydra_context' => null,
                    'input' => null,
                    'mercure' => null,
                    'messenger' => null,
                    'normalization_context' => [
                        'groups' => [
                            'get:menu',
                        ],
                    ],
                    'openapi_context' => null,
                    'order' => null,
                    'output' => null,
                    'pagination_client_enabled' => null,
                    'pagination_client_items_per_page' => null,
                    'pagination_client_partial' => null,
                    'pagination_via_cursor' => null,
                    'pagination_enabled' => null,
                    'pagination_fetch_join_collection' => null,
                    'pagination_items_per_page' => 10,
                    'pagination_maximum_items_per_page' => 30,
                    'pagination_partial' => null,
                    'route_prefix' => 'v2',
                    'security_message' => null,
                    'security_post_denormalize' => null,
                    'security_post_denormalize_message' => null,
                    'security_post_validation' => null,
                    'security_post_validation_message' => null,
                    'stateless' => null,
                    'sunset' => null,
                    'swagger_context' => null,
                    'validation_groups' => null,
                    'url_generation_strategy' => null,
                    'composite_identifier' => null,
                    'exception_to_status' => null,
                    'query_parameter_validation_enabled' => null,
                ],
            ],
        ],
    ],
    $o[0],
    []
); }];
