diff --git a/airbyte-integrations/connectors/source-appfigures/README.md b/airbyte-integrations/connectors/source-appfigures/README.md
new file mode 100644
index 000000000000..fafd0dd88676
--- /dev/null
+++ b/airbyte-integrations/connectors/source-appfigures/README.md
@@ -0,0 +1,38 @@
+# Appfigures
+This directory contains the manifest-only connector for `source-appfigures`.
+
+## Documentation reference:
+Visit `https://docs.appfigures.com/api/reference/v2/` for API documentation
+
+## Authentication setup
+Appfigures uses personal access token as API Key Authorization, Please visit `https://appfigures.com/account/apis` for getting your API tokens
+Refer `https://docs.appfigures.com/api/reference/v2/authentication` for more details.
+
+## Usage
+There are multiple ways to use this connector:
+- You can use this connector as any other connector in Airbyte Marketplace.
+- You can load this connector in `pyairbyte` using `get_source`!
+- You can open this connector in Connector Builder, edit it, and publish to your workspaces.
+
+Please refer to the manifest-only connector documentation for more details.
+
+## Local Development
+We recommend you use the Connector Builder to edit this connector.
+
+But, if you want to develop this connector locally, you can use the following steps.
+
+### Environment Setup
+You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci).
+
+### Build
+This will create a dev image (`source-appfigures:dev`) that you can use to test the connector locally.
+```bash
+airbyte-ci connectors --name=source-appfigures build
+```
+
+### Test
+This will run the acceptance tests for the connector.
+```bash
+airbyte-ci connectors --name=source-appfigures test
+```
+
diff --git a/airbyte-integrations/connectors/source-appfigures/acceptance-test-config.yml b/airbyte-integrations/connectors/source-appfigures/acceptance-test-config.yml
new file mode 100644
index 000000000000..02d614f383d3
--- /dev/null
+++ b/airbyte-integrations/connectors/source-appfigures/acceptance-test-config.yml
@@ -0,0 +1,17 @@
+# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference)
+# for more information about how to configure these tests
+connector_image: airbyte/source-appfigures:dev
+acceptance_tests:
+ spec:
+ tests:
+ - spec_path: "manifest.yaml"
+ connection:
+ bypass_reason: "This is a builder contribution, and we do not have secrets at this time"
+ discovery:
+ bypass_reason: "This is a builder contribution, and we do not have secrets at this time"
+ basic_read:
+ bypass_reason: "This is a builder contribution, and we do not have secrets at this time"
+ incremental:
+ bypass_reason: "This is a builder contribution, and we do not have secrets at this time"
+ full_refresh:
+ bypass_reason: "This is a builder contribution, and we do not have secrets at this time"
diff --git a/airbyte-integrations/connectors/source-appfigures/icon.svg b/airbyte-integrations/connectors/source-appfigures/icon.svg
new file mode 100644
index 000000000000..eb43cf246d46
--- /dev/null
+++ b/airbyte-integrations/connectors/source-appfigures/icon.svg
@@ -0,0 +1,6 @@
+
+
diff --git a/airbyte-integrations/connectors/source-appfigures/manifest.yaml b/airbyte-integrations/connectors/source-appfigures/manifest.yaml
new file mode 100644
index 000000000000..ef250358571a
--- /dev/null
+++ b/airbyte-integrations/connectors/source-appfigures/manifest.yaml
@@ -0,0 +1,56466 @@
+version: 4.6.2
+
+type: DeclarativeSource
+
+description: >-
+ Website: https://appfigures.com/
+
+ API Docs: https://docs.appfigures.com/api/reference/v2/
+
+ Authentication Docs:
+ https://docs.appfigures.com/api/reference/v2/authentication
+
+check:
+ type: CheckStream
+ stream_names:
+ - status
+
+definitions:
+ streams:
+ status:
+ type: DeclarativeStream
+ name: status
+ primary_key:
+ - id
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: /
+ http_method: GET
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path:
+ - user
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/status"
+ reports_sales:
+ type: DeclarativeStream
+ name: reports_sales
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: reports/sales
+ http_method: GET
+ request_parameters:
+ store: "{{ config['search_store'] }}"
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path: []
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/reports_sales"
+ data_categories:
+ type: DeclarativeStream
+ name: data_categories
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: data/categories
+ http_method: GET
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path: []
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/data_categories"
+ users:
+ type: DeclarativeStream
+ name: users
+ primary_key:
+ - id
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: users
+ http_method: GET
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path:
+ - results
+ paginator:
+ type: DefaultPaginator
+ page_token_option:
+ type: RequestOption
+ inject_into: request_parameter
+ field_name: page
+ page_size_option:
+ type: RequestOption
+ inject_into: request_parameter
+ field_name: count
+ pagination_strategy:
+ type: PageIncrement
+ start_from_page: 1
+ page_size: 10
+ inject_on_first_request: true
+ incremental_sync:
+ type: DatetimeBasedCursor
+ cursor_field: last_login
+ cursor_datetime_formats:
+ - "%Y-%m-%dT%H:%M:%S"
+ datetime_format: "%Y-%m-%dT%H:%M:%S"
+ start_datetime:
+ type: MinMaxDatetime
+ datetime: '{{ config["start_date"] }}'
+ datetime_format: "%Y-%m-%dT%H:%M:%SZ"
+ end_datetime:
+ type: MinMaxDatetime
+ datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}"
+ datetime_format: "%Y-%m-%dT%H:%M:%SZ"
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/users"
+ usage:
+ type: DeclarativeStream
+ name: usage
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: usage
+ http_method: GET
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path: []
+ paginator:
+ type: DefaultPaginator
+ page_token_option:
+ type: RequestOption
+ inject_into: request_parameter
+ field_name: page
+ page_size_option:
+ type: RequestOption
+ inject_into: request_parameter
+ field_name: count
+ pagination_strategy:
+ type: PageIncrement
+ start_from_page: 1
+ page_size: 10
+ inject_on_first_request: true
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/usage"
+ products_mine_search:
+ type: DeclarativeStream
+ name: products_mine_search
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: products/mine
+ http_method: GET
+ request_parameters:
+ store: "{{ config.search_store }}"
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path: []
+ paginator:
+ type: DefaultPaginator
+ page_token_option:
+ type: RequestOption
+ inject_into: request_parameter
+ field_name: page
+ page_size_option:
+ type: RequestOption
+ inject_into: request_parameter
+ field_name: count
+ pagination_strategy:
+ type: PageIncrement
+ start_from_page: 1
+ page_size: 10
+ inject_on_first_request: true
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/products_mine_search"
+ reports_revenue:
+ type: DeclarativeStream
+ name: reports_revenue
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: reports/revenue
+ http_method: GET
+ request_parameters:
+ store: "{{ config['search_store'] }}"
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path: []
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/reports_revenue"
+ reports_subscriptions:
+ type: DeclarativeStream
+ name: reports_subscriptions
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: reports/subscriptions
+ http_method: GET
+ request_parameters:
+ store: "{{ config['search_store'] }}"
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path: []
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/reports_subscriptions"
+ reports_ads:
+ type: DeclarativeStream
+ name: reports_ads
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: reports/ads
+ http_method: GET
+ request_parameters:
+ store: "{{ config['search_store'] }}"
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path: []
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/reports_ads"
+ reports_adspend:
+ type: DeclarativeStream
+ name: reports_adspend
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: reports/adspend
+ http_method: GET
+ request_parameters:
+ store: "{{ config['search_store'] }}"
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path: []
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/reports_adspend"
+ reports_ratings:
+ type: DeclarativeStream
+ name: reports_ratings
+ retriever:
+ type: SimpleRetriever
+ requester:
+ $ref: "#/definitions/base_requester"
+ path: reports/ratings
+ http_method: GET
+ request_parameters:
+ store: "{{ config['search_store'] }}"
+ error_handler:
+ type: CompositeErrorHandler
+ error_handlers:
+ - type: DefaultErrorHandler
+ max_retries: 3
+ backoff_strategies:
+ - type: ExponentialBackoffStrategy
+ factor: 2
+ response_filters:
+ - type: HttpResponseFilter
+ action: RATE_LIMITED
+ http_codes:
+ - 429
+ error_message: Rate limit hit
+ record_selector:
+ type: RecordSelector
+ extractor:
+ type: DpathExtractor
+ field_path: []
+ schema_loader:
+ type: InlineSchemaLoader
+ schema:
+ $ref: "#/schemas/reports_ratings"
+ base_requester:
+ type: HttpRequester
+ url_base: https://api.appfigures.com/v2/
+ authenticator:
+ type: BearerAuthenticator
+ api_token: '{{ config["api_key"] }}'
+
+streams:
+ - $ref: "#/definitions/streams/status"
+ - $ref: "#/definitions/streams/reports_sales"
+ - $ref: "#/definitions/streams/data_categories"
+ - $ref: "#/definitions/streams/users"
+ - $ref: "#/definitions/streams/usage"
+ - $ref: "#/definitions/streams/products_mine_search"
+ - $ref: "#/definitions/streams/reports_revenue"
+ - $ref: "#/definitions/streams/reports_subscriptions"
+ - $ref: "#/definitions/streams/reports_ads"
+ - $ref: "#/definitions/streams/reports_adspend"
+ - $ref: "#/definitions/streams/reports_ratings"
+
+spec:
+ type: Spec
+ connection_specification:
+ type: object
+ $schema: http://json-schema.org/draft-07/schema#
+ required:
+ - api_key
+ - start_date
+ properties:
+ api_key:
+ type: string
+ title: API Key
+ airbyte_secret: true
+ order: 0
+ search_store:
+ type: string
+ description: The store which needs to be searched in streams
+ title: Search Store
+ default: apple
+ order: 1
+ start_date:
+ type: string
+ title: Start date
+ format: date-time
+ pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$
+ order: 2
+ group_by:
+ type: string
+ description: Category term for grouping the search results
+ title: Group by
+ default: product
+ enum:
+ - network
+ - product
+ - country
+ - date
+ order: 3
+ additionalProperties: true
+
+metadata:
+ autoImportSchema:
+ status: true
+ reports_sales: true
+ data_categories: true
+ users: true
+ usage: true
+ products_mine_search: true
+ reports_revenue: true
+ reports_subscriptions: true
+ reports_ads: true
+ reports_adspend: true
+ reports_ratings: true
+ testedStreams:
+ status:
+ streamHash: 603a31f1e215f68081435c21e5f09b05b77bead5
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ reports_sales:
+ streamHash: 065368458d431a9f884bbad33cad2bc170b56890
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ data_categories:
+ streamHash: 9563e091dd77c73c279afe4b9f48794a8c8cb784
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ users:
+ streamHash: 8df71cf32790ae981c75d746d63bd590b8e3e8d8
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ usage:
+ streamHash: 57fe2e269122916db08395d36722dc0aebf66d3e
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ products_mine_search:
+ streamHash: 1f1b8b9ebe2b3bf0e56ea48d5b11398ab5e2c81a
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ reports_revenue:
+ streamHash: 5bdd386e923767bcf0031858897a82489041759e
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ reports_subscriptions:
+ streamHash: b4054aaf80d264929f513b7456e0a592cfa0171c
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ reports_ads:
+ streamHash: 513cebbfbc7eff79792f81615eca480d99aa5a8d
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ reports_adspend:
+ streamHash: 032f9044fb45f560d0d186253df15bbfa8839adc
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ reports_ratings:
+ streamHash: 33633cc6dcbf660af904f480ff0bf3b5d0005ffd
+ hasResponse: true
+ responsesAreSuccessful: true
+ hasRecords: true
+ primaryKeysArePresent: true
+ primaryKeysAreUnique: true
+ assist: {}
+
+schemas:
+ status:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ avatar_url:
+ type:
+ - string
+ - "null"
+ email:
+ type:
+ - string
+ - "null"
+ id:
+ type: number
+ name:
+ type:
+ - string
+ - "null"
+ required:
+ - id
+ reports_sales:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ app_downloads:
+ type:
+ - number
+ - "null"
+ app_returns:
+ type:
+ - number
+ - "null"
+ app_returns_amount:
+ type:
+ - string
+ - "null"
+ app_revenue:
+ type:
+ - string
+ - "null"
+ business_downloads:
+ type:
+ - number
+ - "null"
+ business_revenue:
+ type:
+ - string
+ - "null"
+ downloads:
+ type:
+ - number
+ - "null"
+ edu_downloads:
+ type:
+ - number
+ - "null"
+ edu_revenue:
+ type:
+ - string
+ - "null"
+ gift_redemptions:
+ type:
+ - number
+ - "null"
+ gifts:
+ type:
+ - number
+ - "null"
+ gross_app_returns_amount:
+ type:
+ - string
+ - "null"
+ gross_app_revenue:
+ type:
+ - string
+ - "null"
+ gross_business_revenue:
+ type:
+ - string
+ - "null"
+ gross_edu_revenue:
+ type:
+ - string
+ - "null"
+ gross_iap_returns_amount:
+ type:
+ - string
+ - "null"
+ gross_iap_revenue:
+ type:
+ - string
+ - "null"
+ gross_returns_amount:
+ type:
+ - string
+ - "null"
+ gross_revenue:
+ type:
+ - string
+ - "null"
+ gross_standard_revenue:
+ type:
+ - string
+ - "null"
+ gross_subscription_returns_amount:
+ type:
+ - string
+ - "null"
+ gross_subscription_revenue:
+ type:
+ - string
+ - "null"
+ iap_amount:
+ type:
+ - number
+ - "null"
+ iap_returns:
+ type:
+ - number
+ - "null"
+ iap_returns_amount:
+ type:
+ - string
+ - "null"
+ iap_revenue:
+ type:
+ - string
+ - "null"
+ net_downloads:
+ type:
+ - number
+ - "null"
+ pre_orders:
+ type:
+ - number
+ - "null"
+ promos:
+ type:
+ - number
+ - "null"
+ re_downloads:
+ type:
+ - number
+ - "null"
+ returns:
+ type:
+ - number
+ - "null"
+ returns_amount:
+ type:
+ - string
+ - "null"
+ revenue:
+ type:
+ - string
+ - "null"
+ standard_downloads:
+ type:
+ - number
+ - "null"
+ standard_revenue:
+ type:
+ - string
+ - "null"
+ subscription_purchases:
+ type:
+ - number
+ - "null"
+ subscription_returns:
+ type:
+ - number
+ - "null"
+ subscription_returns_amount:
+ type:
+ - string
+ - "null"
+ subscription_revenue:
+ type:
+ - string
+ - "null"
+ uninstalls:
+ type:
+ - number
+ - "null"
+ updates:
+ type:
+ - number
+ - "null"
+ data_categories:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ "12":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "42":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "43":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "44":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "45":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "46":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "47":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "49":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "50":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "51":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "52":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "53":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "54":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "55":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "56":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "57":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "58":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "59":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "60":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "61":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "62":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "63":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "64":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "65":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "66":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "67":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "68":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "69":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "70":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "71":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "72":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "73":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "74":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "75":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "100":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "101":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "102":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "103":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "104":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "105":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "106":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "107":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "108":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "109":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "110":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "111":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "112":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "114":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "115":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "117":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "118":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "119":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "120":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "121":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "122":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "123":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "124":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "125":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "126":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "127":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "128":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "129":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "130":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "142":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "143":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "144":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "145":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "146":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "147":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "148":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "149":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "150":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "151":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "152":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "153":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "154":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "155":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "156":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "157":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "158":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "159":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "160":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "161":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "162":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "163":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "164":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "165":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "166":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "167":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "168":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "169":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "170":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "171":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "172":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "173":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "174":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "175":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "200":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "201":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "202":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "203":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "204":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "205":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "206":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "207":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "208":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "209":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "210":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "211":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "212":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "213":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "214":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1020":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1022":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1023":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1024":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1025":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1026":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1027":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1028":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1029":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1030":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1031":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1032":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1033":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1034":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1035":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1036":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1037":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1038":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1039":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1040":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1041":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1042":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1043":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1045":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1046":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1047":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1048":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1049":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1050":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1051":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1053":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1054":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1055":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1056":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1057":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1058":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1059":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1060":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1061":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1062":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1063":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1064":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1065":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1066":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1067":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1068":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1069":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1070":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1071":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1072":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1073":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1074":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1075":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1076":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1077":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1078":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1079":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1080":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1081":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1082":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1083":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1084":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1085":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1086":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1087":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1088":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1089":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1090":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1091":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1092":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1093":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1094":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1095":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1096":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1097":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1098":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1099":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1100":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1101":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1102":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1103":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1104":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1105":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1106":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1107":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1108":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1109":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1110":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1111":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1112":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1113":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1114":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1115":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1117":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1118":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1119":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1120":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1121":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1122":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1123":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1124":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1125":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1126":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1127":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1128":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1129":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1130":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1131":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1132":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1133":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1134":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1135":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1136":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1137":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1138":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1139":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1140":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1141":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1142":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1143":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1144":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1145":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1146":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1148":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1149":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1150":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1151":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1152":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1153":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1154":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1155":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1156":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1157":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1158":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1159":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1160":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1161":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1162":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1163":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1164":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1165":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1166":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1167":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1168":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1169":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1170":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1171":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1172":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1173":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1174":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1175":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1176":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1177":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1178":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1179":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1180":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1181":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1182":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1183":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1184":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1185":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1186":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1187":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1188":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1189":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1190":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1191":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1192":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1193":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1194":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1195":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1196":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1197":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1198":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1199":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6020":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6022":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6023":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6024":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6025":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6026":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "6027":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7103":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7105":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7107":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7108":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7112":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7114":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7121":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7123":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7124":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7125":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7126":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "7127":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12020":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12022":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12023":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12201":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12202":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12203":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12204":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12205":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12206":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12207":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12208":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12209":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12210":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12211":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12212":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12213":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12214":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12215":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12216":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12217":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12218":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "12219":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13020":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13023":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13024":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13025":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13026":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13027":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13028":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13029":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "13030":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16020":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16022":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16023":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16024":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16025":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16026":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "16027":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "17019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "25204":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "35203":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "35204":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37020":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37022":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37023":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37024":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37025":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37026":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37027":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37028":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37029":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37030":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37031":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37032":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37033":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37034":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "37035":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "46000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "46001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "46002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "46003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "46004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "46005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48020":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48022":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48023":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48024":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48025":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48026":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48027":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48028":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48029":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48030":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48031":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48032":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48033":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "48034":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "50004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "50005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "50006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "50007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "50008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "50009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "51002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "51003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "51004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "51005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "51006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80100":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80200":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80300":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80400":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80401":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80402":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80403":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80404":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80405":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80406":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80407":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80500":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80600":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80601":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80602":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80700":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80701":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80702":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80703":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80704":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80705":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80706":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80707":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80708":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80800":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80801":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80802":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80803":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "80900":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81100":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81200":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81300":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81400":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81401":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81402":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81403":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81404":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81500":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81600":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81601":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81602":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81603":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "81604":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "85000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "85100":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "85200":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "85300":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "85400":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "85500":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "85600":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "85700":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "85800":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "85900":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86100":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86200":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86300":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "86400":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "87019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90020":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90022":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90023":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90024":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "90025":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91000":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "91016":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113001":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113002":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113004":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113011":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113012":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113013":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113018":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113020":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113023":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113024":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113025":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113026":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113027":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113028":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113029":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "113030":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116025":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "116026":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "252041":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "252042":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "262041":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116003":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116005":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116006":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116007":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116008":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116009":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116010":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116014":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116015":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116017":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116019":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116021":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116025":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "1116026":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "2520411":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99999900":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99999902":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99999903":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99999904":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99999910":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99999912":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99999913":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99999914":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ parent:
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ parent_id:
+ type:
+ - number
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99999915":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ "99999916":
+ type:
+ - object
+ - "null"
+ properties:
+ active:
+ type:
+ - boolean
+ - "null"
+ device:
+ type:
+ - string
+ - "null"
+ hidden:
+ type:
+ - boolean
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ store:
+ type:
+ - string
+ - "null"
+ storefront:
+ type:
+ - string
+ - "null"
+ subcategories:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ users:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ account:
+ type:
+ - object
+ - "null"
+ properties:
+ auto_import:
+ type:
+ - boolean
+ - "null"
+ company:
+ type:
+ - string
+ - "null"
+ id:
+ type:
+ - number
+ - "null"
+ is_premium:
+ type:
+ - boolean
+ - "null"
+ last_import:
+ type:
+ - string
+ - "null"
+ name:
+ type:
+ - string
+ - "null"
+ plan:
+ type:
+ - string
+ - "null"
+ plan_id:
+ type:
+ - number
+ - "null"
+ active:
+ type:
+ - boolean
+ - "null"
+ avatar_url:
+ type:
+ - string
+ - "null"
+ currency:
+ type:
+ - string
+ - "null"
+ date_format:
+ type:
+ - string
+ - "null"
+ email:
+ type:
+ - string
+ - "null"
+ entitlements:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - string
+ - "null"
+ id:
+ type: number
+ is_owner:
+ type:
+ - boolean
+ - "null"
+ last_login:
+ type: string
+ name:
+ type:
+ - string
+ - "null"
+ region:
+ type:
+ - string
+ - "null"
+ role:
+ type:
+ - string
+ - "null"
+ share_of_profit:
+ type:
+ - string
+ - "null"
+ timezone:
+ type:
+ - string
+ - "null"
+ required:
+ - id
+ - last_login
+ usage:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ api_requests:
+ type:
+ - object
+ - "null"
+ properties:
+ history:
+ type:
+ - object
+ - "null"
+ properties:
+ history:
+ type:
+ - object
+ - "null"
+ properties:
+ "2024-08-08T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-09T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-10T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-11T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-12T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-13T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-14T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-15T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-16T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-17T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-18T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-19T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-20T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-21T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-22T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-23T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-24T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-25T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-26T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-27T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-28T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-29T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-30T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-08-31T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-09-01T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-09-02T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-09-03T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-09-04T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-09-05T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-09-06T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-09-07T00:00:00Z":
+ type:
+ - number
+ - "null"
+ "2024-09-08T00:00:00Z":
+ type:
+ - number
+ - "null"
+ today:
+ type:
+ - number
+ - "null"
+ total:
+ type:
+ - number
+ - "null"
+ remaining:
+ type:
+ - number
+ - "null"
+ total:
+ type:
+ - number
+ - "null"
+ used:
+ type:
+ - number
+ - "null"
+ products_mine_search:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ metadata:
+ type:
+ - object
+ - "null"
+ properties:
+ resultset:
+ type:
+ - object
+ - "null"
+ properties:
+ count:
+ type:
+ - number
+ - "null"
+ page:
+ type:
+ - number
+ - "null"
+ total_count:
+ type:
+ - number
+ - "null"
+ total_pages:
+ type:
+ - number
+ - "null"
+ results:
+ type:
+ - array
+ - "null"
+ reports_revenue:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ ads:
+ type:
+ - string
+ - "null"
+ business:
+ type:
+ - string
+ - "null"
+ edu:
+ type:
+ - string
+ - "null"
+ gross_business:
+ type:
+ - string
+ - "null"
+ gross_edu:
+ type:
+ - string
+ - "null"
+ gross_iap:
+ type:
+ - string
+ - "null"
+ gross_returns:
+ type:
+ - string
+ - "null"
+ gross_sales:
+ type:
+ - string
+ - "null"
+ gross_subscriptions:
+ type:
+ - string
+ - "null"
+ gross_total:
+ type:
+ - string
+ - "null"
+ iap:
+ type:
+ - string
+ - "null"
+ returns:
+ type:
+ - string
+ - "null"
+ sales:
+ type:
+ - string
+ - "null"
+ subscriptions:
+ type:
+ - string
+ - "null"
+ total:
+ type:
+ - string
+ - "null"
+ reports_subscriptions:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ activations:
+ type:
+ - number
+ - "null"
+ active_discounted_subscriptions:
+ type:
+ - number
+ - "null"
+ active_free_trials:
+ type:
+ - number
+ - "null"
+ active_grace:
+ type:
+ - number
+ - "null"
+ active_subscriptions:
+ type:
+ - number
+ - "null"
+ active_trials:
+ type:
+ - number
+ - "null"
+ actual_revenue:
+ type:
+ - string
+ - "null"
+ all_active_subscriptions:
+ type:
+ - number
+ - "null"
+ all_subscribers:
+ type:
+ - number
+ - "null"
+ cancellations:
+ type:
+ - number
+ - "null"
+ cancelled_subscriptions:
+ type:
+ - number
+ - "null"
+ churn:
+ type:
+ - string
+ - "null"
+ first_year_subscribers:
+ type:
+ - number
+ - "null"
+ grace_drop_off:
+ type:
+ - number
+ - "null"
+ grace_recovery:
+ type:
+ - number
+ - "null"
+ gross_mrr:
+ type:
+ - string
+ - "null"
+ gross_revenue:
+ type:
+ - string
+ - "null"
+ mrr:
+ type:
+ - string
+ - "null"
+ new_grace:
+ type:
+ - number
+ - "null"
+ new_subscriptions:
+ type:
+ - number
+ - "null"
+ new_trial_grace:
+ type:
+ - number
+ - "null"
+ new_trials:
+ type:
+ - number
+ - "null"
+ non_first_year_subscribers:
+ type:
+ - number
+ - "null"
+ paying_subscriptions:
+ type:
+ - number
+ - "null"
+ reactivations:
+ type:
+ - number
+ - "null"
+ renewals:
+ type:
+ - number
+ - "null"
+ transitions_in:
+ type:
+ - number
+ - "null"
+ transitions_out:
+ type:
+ - number
+ - "null"
+ trial_cancellations:
+ type:
+ - number
+ - "null"
+ trial_conversion_rate:
+ type:
+ - string
+ - "null"
+ trial_conversions:
+ type:
+ - number
+ - "null"
+ trial_grace_drop_off:
+ type:
+ - number
+ - "null"
+ trial_grace_recovery:
+ type:
+ - number
+ - "null"
+ reports_ads:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ clicks:
+ type:
+ - number
+ - "null"
+ ctr:
+ type:
+ - string
+ - "null"
+ ecpm:
+ type:
+ - string
+ - "null"
+ fillrate:
+ type:
+ - string
+ - "null"
+ impressions:
+ type:
+ - number
+ - "null"
+ requests:
+ type:
+ - number
+ - "null"
+ requests_filled:
+ type:
+ - number
+ - "null"
+ revenue:
+ type:
+ - string
+ - "null"
+ reports_adspend:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ clicks:
+ type:
+ - number
+ - "null"
+ cost:
+ type:
+ - string
+ - "null"
+ cpa:
+ type:
+ - string
+ - "null"
+ cpc:
+ type:
+ - string
+ - "null"
+ ctr:
+ type:
+ - string
+ - "null"
+ impressions:
+ type:
+ - number
+ - "null"
+ installs:
+ type:
+ - number
+ - "null"
+ reports_ratings:
+ type: object
+ $schema: http://json-schema.org/schema#
+ additionalProperties: true
+ properties:
+ average:
+ type:
+ - string
+ - "null"
+ breakdown:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - number
+ - "null"
+ five_star_percent:
+ type:
+ - string
+ - "null"
+ four_star_percent:
+ type:
+ - string
+ - "null"
+ negative:
+ type:
+ - number
+ - "null"
+ neutral:
+ type:
+ - number
+ - "null"
+ new:
+ type:
+ - array
+ - "null"
+ items:
+ type:
+ - number
+ - "null"
+ new_average:
+ type:
+ - string
+ - "null"
+ new_negative:
+ type:
+ - number
+ - "null"
+ new_neutral:
+ type:
+ - number
+ - "null"
+ new_positive:
+ type:
+ - number
+ - "null"
+ new_total:
+ type:
+ - number
+ - "null"
+ one_star_percent:
+ type:
+ - string
+ - "null"
+ positive:
+ type:
+ - number
+ - "null"
+ three_star_percent:
+ type:
+ - string
+ - "null"
+ total:
+ type:
+ - number
+ - "null"
+ two_star_percent:
+ type:
+ - string
+ - "null"
diff --git a/airbyte-integrations/connectors/source-appfigures/metadata.yaml b/airbyte-integrations/connectors/source-appfigures/metadata.yaml
new file mode 100644
index 000000000000..710ceb4cc159
--- /dev/null
+++ b/airbyte-integrations/connectors/source-appfigures/metadata.yaml
@@ -0,0 +1,35 @@
+metadataSpecVersion: "1.0"
+data:
+ allowedHosts:
+ hosts:
+ - "api.appfigures.com"
+ registryOverrides:
+ oss:
+ enabled: true
+ cloud:
+ enabled: true
+ remoteRegistries:
+ pypi:
+ enabled: false
+ packageName: airbyte-source-appfigures
+ connectorBuildOptions:
+ baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98
+ connectorSubtype: api
+ connectorType: source
+ definitionId: e2fcf0a0-3f99-4938-ba34-3a6dd51fd4a4
+ dockerImageTag: 0.0.1
+ dockerRepository: airbyte/source-appfigures
+ githubIssueLabel: source-appfigures
+ icon: icon.svg
+ license: MIT
+ name: Appfigures
+ releaseDate: 2024-09-08
+ releaseStage: alpha
+ supportLevel: community
+ documentationUrl: https://docs.airbyte.com/integrations/sources/appfigures
+ tags:
+ - language:manifest-only
+ - cdk:low-code
+ ab_internal:
+ ql: 100
+ sl: 100
diff --git a/docs/integrations/sources/appfigures.md b/docs/integrations/sources/appfigures.md
new file mode 100644
index 000000000000..804fffe79ab7
--- /dev/null
+++ b/docs/integrations/sources/appfigures.md
@@ -0,0 +1,44 @@
+# Appfigures
+This page contains the setup guide and reference information for the [Appfigures](https://appfigures.com/) source connector.
+
+## Documentation reference:
+Visit `https://docs.appfigures.com/api/reference/v2/` for API documentation
+
+## Authentication setup
+Appfigures uses personal access token as API Key Authorization, Please visit `https://appfigures.com/account/apis` for getting your API tokens
+Refer `https://docs.appfigures.com/api/reference/v2/authentication` for more details.
+
+## Configuration
+
+| Input | Type | Description | Default Value |
+|-------|------|-------------|---------------|
+| `api_key` | `string` | API Key. | |
+| `search_store` | `string` | Search Store. The store which needs to be searched in streams | apple |
+| `start_date` | `string` | Start date. | |
+| `group_by` | `string` | Group by. Category term for grouping the search results | product |
+
+## Streams
+| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental |
+|-------------|-------------|------------|---------------------|----------------------|
+| status | id | No pagination | ✅ | ❌ |
+| reports_sales | | No pagination | ✅ | ❌ |
+| data_categories | | No pagination | ✅ | ❌ |
+| users | id | DefaultPaginator | ✅ | ✅ |
+| usage | | DefaultPaginator | ✅ | ❌ |
+| products_mine_search | | DefaultPaginator | ✅ | ❌ |
+| reports_revenue | | No pagination | ✅ | ❌ |
+| reports_subscriptions | | No pagination | ✅ | ❌ |
+| reports_ads | | No pagination | ✅ | ❌ |
+| reports_adspend | | No pagination | ✅ | ❌ |
+| reports_ratings | | No pagination | ✅ | ❌ |
+
+## Changelog
+
+
+ Expand to review
+
+| Version | Date |PR| Subject |
+|------------------|------------|--|----------------|
+| 0.0.1 | 2024-09-08 |[45332](https://github.com/airbytehq/airbyte/pull/45332)| Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder|
+
+
\ No newline at end of file