Product Categories Endpoints¶
Product Categories API endpoints.
Overview¶
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/product-categories/external-category-mappings |
List External Category Mappings |
| POST | /api/v1/product-categories/external-category-mappings |
Create External Category Mapping |
| POST | /api/v1/product-categories/external-category-mappings/bulk |
Bulk Upsert External Category Mappings |
| POST | /api/v1/product-categories/external-category-mappings/preview |
Preview Mapping |
| DELETE | /api/v1/product-categories/external-category-mappings/{mapping_id} |
Delete External Category Mapping |
| GET | /api/v1/product-categories/product-families |
List Product Families |
| POST | /api/v1/product-categories/product-families |
Create Product Family |
| PATCH | /api/v1/product-categories/product-families/{family_id} |
Update Product Family |
| GET | /api/v1/product-categories/product-type-records |
List Product Types |
| POST | /api/v1/product-categories/product-type-records |
Create Product Type |
| PATCH | /api/v1/product-categories/product-type-records/{type_id} |
Update Product Type |
| GET | /api/v1/product-categories/unmapped-external-values |
List Unmapped External Values |
| GET | /api/v1/product-categories/unmapped-external-values/{unmapped_value_id}/products |
List Products For Unmapped Value |
API Reference¶
Sartiq Backend Server - Product Categories 0.1.0¶
product-categories¶
GET /api/v1/product-categories/product-families¶
List Product Families
Description
List all product families.
Responses
POST /api/v1/product-categories/product-families¶
Create Product Family
Description
Create a new product family (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No |
Request body
Responses
PATCH /api/v1/product-categories/product-families/{family_id}¶
Update Product Family
Description
Update a product family (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No | |
family_id |
path | string | No |
Request body
Responses
GET /api/v1/product-categories/product-type-records¶
List Product Types
Description
List all product types, optionally filtered by family slug.
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
family_slug |
query | No |
Responses
{
"data": [
{
"id": "10a2f8e7-c717-4a16-9210-dbeec38a3973",
"slug": "string",
"name": "string",
"family": {
"id": "fe0aead5-ea44-4bab-aad5-bde7fb4dbf0c",
"slug": "string",
"name": "string"
},
"placement": null,
"layer_order": null,
"zone": "head"
}
],
"count": 0
}
POST /api/v1/product-categories/product-type-records¶
Create Product Type
Description
Create a new product type (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No |
Request body
{
"slug": "string",
"name": "string",
"family_id": "650f8518-0691-452f-b8bf-057c1ef2e1b1",
"placement": null,
"layer_order": null,
"zone": "head"
}
Schema of the request body
{
"properties": {
"slug": {
"type": "string",
"maxLength": 50,
"title": "Slug"
},
"name": {
"type": "string",
"maxLength": 100,
"title": "Name"
},
"family_id": {
"type": "string",
"format": "uuid",
"title": "Family Id"
},
"placement": {
"anyOf": [
{
"$ref": "#/components/schemas/ProductPlacement",
"maxLength": 20
},
{
"type": "null"
}
]
},
"layer_order": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Layer Order"
},
"zone": {
"$ref": "#/components/schemas/ProductZone",
"default": "upperbody"
}
},
"type": "object",
"required": [
"slug",
"name",
"family_id"
],
"title": "ProductTypeCreate"
}
Responses
{
"id": "4192b117-5329-424f-ad37-017118cec01c",
"slug": "string",
"name": "string",
"family": {
"id": "db36f70e-927b-4128-a30b-8ca59e09edd8",
"slug": "string",
"name": "string"
},
"placement": null,
"layer_order": null,
"zone": "head"
}
Schema of the response body
{
"properties": {
"id": {
"type": "string",
"format": "uuid",
"title": "Id"
},
"slug": {
"type": "string",
"title": "Slug"
},
"name": {
"type": "string",
"title": "Name"
},
"family": {
"$ref": "#/components/schemas/ProductFamilyPublic"
},
"placement": {
"anyOf": [
{
"$ref": "#/components/schemas/ProductPlacement"
},
{
"type": "null"
}
]
},
"layer_order": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Layer Order"
},
"zone": {
"$ref": "#/components/schemas/ProductZone"
}
},
"type": "object",
"required": [
"id",
"slug",
"name",
"family",
"zone"
],
"title": "ProductTypePublic"
}
PATCH /api/v1/product-categories/product-type-records/{type_id}¶
Update Product Type
Description
Update a product type (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No | |
type_id |
path | string | No |
Request body
Schema of the request body
{
"properties": {
"name": {
"anyOf": [
{
"type": "string",
"maxLength": 100
},
{
"type": "null"
}
],
"title": "Name"
},
"family_id": {
"anyOf": [
{
"type": "string",
"format": "uuid"
},
{
"type": "null"
}
],
"title": "Family Id"
},
"placement": {
"anyOf": [
{
"$ref": "#/components/schemas/ProductPlacement",
"maxLength": 20
},
{
"type": "null"
}
]
},
"layer_order": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Layer Order"
},
"zone": {
"anyOf": [
{
"$ref": "#/components/schemas/ProductZone"
},
{
"type": "null"
}
]
}
},
"type": "object",
"title": "ProductTypeUpdate"
}
Responses
{
"id": "c4eadb34-8dd2-4d81-a203-f5f213fb3358",
"slug": "string",
"name": "string",
"family": {
"id": "8a10529b-f887-4c59-aaf4-3f92deda75c3",
"slug": "string",
"name": "string"
},
"placement": null,
"layer_order": null,
"zone": "head"
}
Schema of the response body
{
"properties": {
"id": {
"type": "string",
"format": "uuid",
"title": "Id"
},
"slug": {
"type": "string",
"title": "Slug"
},
"name": {
"type": "string",
"title": "Name"
},
"family": {
"$ref": "#/components/schemas/ProductFamilyPublic"
},
"placement": {
"anyOf": [
{
"$ref": "#/components/schemas/ProductPlacement"
},
{
"type": "null"
}
]
},
"layer_order": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Layer Order"
},
"zone": {
"$ref": "#/components/schemas/ProductZone"
}
},
"type": "object",
"required": [
"id",
"slug",
"name",
"family",
"zone"
],
"title": "ProductTypePublic"
}
GET /api/v1/product-categories/external-category-mappings¶
List External Category Mappings
Description
List external category mappings, optionally filtered by brand and/or mapping type (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No | |
brand |
query | No | |||
mapping_type |
query | No |
Responses
{
"data": [
{
"id": "dd45ddf4-f01d-44d3-bb46-77713a03ae6c",
"brand": "string",
"mapping_type": "construction_type",
"external_value": "string",
"product_type_id": null,
"gender": null,
"age_class": null
}
],
"count": 0
}
Schema of the response body
POST /api/v1/product-categories/external-category-mappings¶
Create External Category Mapping
Description
Create a new external category mapping (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No |
Request body
{
"brand": "string",
"mapping_type": "construction_type",
"external_value": "string",
"product_type_id": null,
"gender": null,
"age_class": null
}
Schema of the request body
{
"properties": {
"brand": {
"type": "string",
"maxLength": 50,
"title": "Brand"
},
"mapping_type": {
"$ref": "#/components/schemas/MappingType"
},
"external_value": {
"type": "string",
"maxLength": 255,
"title": "External Value"
},
"product_type_id": {
"anyOf": [
{
"type": "string",
"format": "uuid"
},
{
"type": "null"
}
],
"title": "Product Type Id"
},
"gender": {
"anyOf": [
{
"type": "string",
"enum": [
"MALE",
"FEMALE",
"UNISEX"
]
},
{
"type": "null"
}
],
"title": "Gender"
},
"age_class": {
"anyOf": [
{
"type": "string",
"enum": [
"newborn_0_3y",
"child_3_7y",
"teen_8_14y",
"adult"
]
},
{
"type": "null"
}
],
"title": "Age Class"
}
},
"type": "object",
"required": [
"brand",
"mapping_type",
"external_value"
],
"title": "ExternalCategoryMappingCreate"
}
Responses
{
"id": "a23785f9-702a-45d9-8ab1-13828eda897c",
"brand": "string",
"mapping_type": "construction_type",
"external_value": "string",
"product_type_id": null,
"gender": null,
"age_class": null
}
Schema of the response body
{
"properties": {
"id": {
"type": "string",
"format": "uuid",
"title": "Id"
},
"brand": {
"type": "string",
"title": "Brand"
},
"mapping_type": {
"$ref": "#/components/schemas/MappingType"
},
"external_value": {
"type": "string",
"title": "External Value"
},
"product_type_id": {
"anyOf": [
{
"type": "string",
"format": "uuid"
},
{
"type": "null"
}
],
"title": "Product Type Id"
},
"gender": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Gender"
},
"age_class": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Age Class"
}
},
"type": "object",
"required": [
"id",
"brand",
"mapping_type",
"external_value"
],
"title": "ExternalCategoryMappingPublic"
}
POST /api/v1/product-categories/external-category-mappings/bulk¶
Bulk Upsert External Category Mappings
Description
Bulk upsert external category mappings (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No |
Request body
Responses
{
"data": [
{
"id": "8109b530-fd0b-4b41-adfd-2c5258542b3a",
"brand": "string",
"mapping_type": "construction_type",
"external_value": "string",
"product_type_id": null,
"gender": null,
"age_class": null
}
],
"count": 0
}
Schema of the response body
DELETE /api/v1/product-categories/external-category-mappings/{mapping_id}¶
Delete External Category Mapping
Description
Delete an external category mapping (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No | |
mapping_id |
path | string | No |
Responses
GET /api/v1/product-categories/unmapped-external-values¶
List Unmapped External Values
Description
List unmapped external values with product counts (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No | |
brand |
query | No | |||
field_name |
query | No |
Responses
{
"data": [
{
"id": "ce48b1e9-179a-447a-a8c7-ea427e9b50be",
"brand": "string",
"mapping_type": "construction_type",
"external_value": "string",
"field_name": "string",
"occurrence_count": 0,
"product_count": 0,
"created_at": "2022-04-13T15:42:05.901Z"
}
],
"count": 0
}
Schema of the response body
GET /api/v1/product-categories/unmapped-external-values/{unmapped_value_id}/products¶
List Products For Unmapped Value
Description
List products linked to a specific unmapped external value (admin only).
Returns lightweight product summaries including brand_metadata (raw OVS data) so the UI can display the source fields that caused the unmapped hit.
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No | |
unmapped_value_id |
path | string | No |
Responses
{
"data": [
{
"id": "cb4cca2b-8a80-4536-b8d1-99a26119efd4",
"sku": null,
"name": "string",
"brand": null,
"cover_image_url": null,
"product_family": null,
"product_type": null,
"gender": null,
"age_class": null,
"brand_metadata": null
}
],
"count": 0
}
GET /api/v1/product-categories/unmapped-products¶
List Unmapped Products
Description
List products that have unmapped external values, ordered by count descending (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No | |
brand |
query | No | |||
limit |
query | integer | 50 | No | |
skip |
query | integer | 0 | No |
Responses
{
"data": [
{
"id": "6e09654c-e300-440a-8da8-92e190ee11f7",
"sku": null,
"name": "string",
"brand": null,
"cover_image_url": null,
"product_family": null,
"product_type": null,
"gender": null,
"age_class": null,
"unmapped_value_count": 0
}
],
"count": 0
}
Schema of the response body
GET /api/v1/product-categories/unmapped-products/{product_id}¶
Get Unmapped Product Detail
Description
Get a product with all its unmapped external values (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No | |
product_id |
path | string | No |
Responses
{
"product": {
"id": "2eadc70e-7e5d-4225-995b-87d1cefcdd82",
"sku": null,
"name": "string",
"brand": null,
"cover_image_url": null,
"product_family": null,
"product_type": null,
"gender": null,
"age_class": null,
"brand_metadata": null
},
"unmapped_values": [
{
"id": "c123fdef-7732-47d3-ba27-56ac67017337",
"brand": "string",
"mapping_type": "construction_type",
"external_value": "string",
"field_name": "string",
"occurrence_count": 0,
"created_at": "2022-04-13T15:42:05.901Z"
}
]
}
Schema of the response body
{
"properties": {
"product": {
"$ref": "#/components/schemas/UnmappedProductSummary"
},
"unmapped_values": {
"items": {
"$ref": "#/components/schemas/UnmappedValueForProduct"
},
"type": "array",
"title": "Unmapped Values"
}
},
"type": "object",
"required": [
"product",
"unmapped_values"
],
"title": "UnmappedProductDetailPublic",
"description": "Product detail with all its unmapped values."
}
POST /api/v1/product-categories/unmapped-products/reimport-all¶
Reimport All Unmapped Products
Description
Re-import all products that have unmapped values from OVS (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No |
Responses
{
"total": 0,
"succeeded": 0,
"failed": 0,
"results": [
{
"product_id": "acffe89a-623c-425c-aaae-5810233c09dd",
"sku": null,
"status": "string",
"message": "string"
}
]
}
Schema of the response body
{
"properties": {
"total": {
"type": "integer",
"title": "Total"
},
"succeeded": {
"type": "integer",
"title": "Succeeded"
},
"failed": {
"type": "integer",
"title": "Failed"
},
"results": {
"items": {
"$ref": "#/components/schemas/ReimportResultPublic"
},
"type": "array",
"title": "Results"
}
},
"type": "object",
"required": [
"total",
"succeeded",
"failed",
"results"
],
"title": "BulkReimportResultPublic"
}
POST /api/v1/product-categories/unmapped-products/{product_id}/reimport¶
Reimport Product
Description
Re-import a single product from OVS, clearing old unmapped entries (admin only).
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No | |
product_id |
path | string | No |
Responses
{
"product_id": "a135b0ad-541c-4555-a922-4c7d84e22f40",
"sku": null,
"status": "string",
"message": "string"
}
Schema of the response body
{
"properties": {
"product_id": {
"type": "string",
"format": "uuid",
"title": "Product Id"
},
"sku": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Sku"
},
"status": {
"type": "string",
"title": "Status"
},
"message": {
"type": "string",
"title": "Message"
}
},
"type": "object",
"required": [
"product_id",
"status",
"message"
],
"title": "ReimportResultPublic"
}
POST /api/v1/product-categories/external-category-mappings/preview¶
Preview Mapping
Description
Dry-run a candidate mapping against a product without saving anything.
Shows what the product's classification fields would become if this mapping were created. Useful for the admin UI to let operators verify before committing.
Input parameters
| Parameter | In | Type | Default | Nullable | Description |
|---|---|---|---|---|---|
OAuth2PasswordBearer |
header | string | N/A | No |
Request body
{
"brand": "string",
"mapping_type": "construction_type",
"external_value": "string",
"product_type_id": null,
"gender": null,
"age_class": null,
"product_id": "9dd047ab-8c60-4f78-bacf-c6aeb8968860"
}
Schema of the request body
{
"properties": {
"brand": {
"type": "string",
"maxLength": 50,
"title": "Brand"
},
"mapping_type": {
"$ref": "#/components/schemas/MappingType"
},
"external_value": {
"type": "string",
"maxLength": 255,
"title": "External Value"
},
"product_type_id": {
"anyOf": [
{
"type": "string",
"format": "uuid"
},
{
"type": "null"
}
],
"title": "Product Type Id"
},
"gender": {
"anyOf": [
{
"type": "string",
"enum": [
"MALE",
"FEMALE",
"UNISEX"
]
},
{
"type": "null"
}
],
"title": "Gender"
},
"age_class": {
"anyOf": [
{
"type": "string",
"enum": [
"newborn_0_3y",
"child_3_7y",
"teen_8_14y",
"adult"
]
},
{
"type": "null"
}
],
"title": "Age Class"
},
"product_id": {
"type": "string",
"format": "uuid",
"title": "Product Id"
}
},
"type": "object",
"required": [
"brand",
"mapping_type",
"external_value",
"product_id"
],
"title": "MappingPreviewRequest",
"description": "Dry-run a candidate mapping against a specific product."
}
Responses
{
"product_id": "34659697-11e1-45ee-adda-f5bd22678820",
"before_product_type": null,
"before_product_family": null,
"before_gender": null,
"before_age_class": null,
"after_product_type": null,
"after_product_family": null,
"after_gender": null,
"after_age_class": null,
"changes": [
"string"
]
}
Schema of the response body
{
"properties": {
"product_id": {
"type": "string",
"format": "uuid",
"title": "Product Id"
},
"before_product_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Before Product Type"
},
"before_product_family": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Before Product Family"
},
"before_gender": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Before Gender"
},
"before_age_class": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Before Age Class"
},
"after_product_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "After Product Type"
},
"after_product_family": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "After Product Family"
},
"after_gender": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "After Gender"
},
"after_age_class": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "After Age Class"
},
"changes": {
"items": {
"type": "string"
},
"type": "array",
"title": "Changes"
}
},
"type": "object",
"required": [
"product_id",
"changes"
],
"title": "MappingPreviewResult",
"description": "What the product would look like after applying the mapping."
}
Schemas¶
BulkReimportResultPublic¶
| Name | Type | Description |
|---|---|---|
failed |
integer | |
results |
Array<ReimportResultPublic> | |
succeeded |
integer | |
total |
integer |
ExternalCategoryMappingCreate¶
| Name | Type | Description |
|---|---|---|
age_class |
||
brand |
string | |
external_value |
string | |
gender |
||
mapping_type |
MappingType | |
product_type_id |
ExternalCategoryMappingPublic¶
| Name | Type | Description |
|---|---|---|
age_class |
||
brand |
string | |
external_value |
string | |
gender |
||
id |
string(uuid) | |
mapping_type |
MappingType | |
product_type_id |
ExternalCategoryMappingsPublic¶
| Name | Type | Description |
|---|---|---|
count |
integer | |
data |
Array<ExternalCategoryMappingPublic> |
HTTPValidationError¶
| Name | Type | Description |
|---|---|---|
detail |
Array<ValidationError> |
MappingPreviewRequest¶
| Name | Type | Description |
|---|---|---|
age_class |
||
brand |
string | |
external_value |
string | |
gender |
||
mapping_type |
MappingType | |
product_id |
string(uuid) | |
product_type_id |
MappingPreviewResult¶
| Name | Type | Description |
|---|---|---|
after_age_class |
||
after_gender |
||
after_product_family |
||
after_product_type |
||
before_age_class |
||
before_gender |
||
before_product_family |
||
before_product_type |
||
changes |
Array<string> | |
product_id |
string(uuid) |
MappingType¶
Type: string
ProductFamiliesPublic¶
| Name | Type | Description |
|---|---|---|
count |
integer | |
data |
Array<ProductFamilyPublic> |
ProductFamilyCreate¶
| Name | Type | Description |
|---|---|---|
name |
string | |
slug |
string |
ProductFamilyPublic¶
| Name | Type | Description |
|---|---|---|
id |
string(uuid) | |
name |
string | |
slug |
string |
ProductFamilyUpdate¶
| Name | Type | Description |
|---|---|---|
name |
ProductPlacement¶
Type: string
ProductTypeCreate¶
| Name | Type | Description |
|---|---|---|
family_id |
string(uuid) | |
layer_order |
||
name |
string | |
placement |
||
slug |
string | |
zone |
ProductZone |
ProductTypePublic¶
| Name | Type | Description |
|---|---|---|
family |
ProductFamilyPublic | |
id |
string(uuid) | |
layer_order |
||
name |
string | |
placement |
||
slug |
string | |
zone |
ProductZone |
ProductTypesPublic¶
| Name | Type | Description |
|---|---|---|
count |
integer | |
data |
Array<ProductTypePublic> |
ProductTypeUpdate¶
| Name | Type | Description |
|---|---|---|
family_id |
||
layer_order |
||
name |
||
placement |
||
zone |
ProductZone¶
Type: string
ReimportResultPublic¶
| Name | Type | Description |
|---|---|---|
message |
string | |
product_id |
string(uuid) | |
sku |
||
status |
string |
UnmappedExternalValuePublic¶
| Name | Type | Description |
|---|---|---|
brand |
string | |
created_at |
string(date-time) | |
external_value |
string | |
field_name |
string | |
id |
string(uuid) | |
mapping_type |
MappingType | |
occurrence_count |
integer | |
product_count |
integer |
UnmappedExternalValuesPublic¶
| Name | Type | Description |
|---|---|---|
count |
integer | |
data |
Array<UnmappedExternalValuePublic> |
UnmappedProductDetailPublic¶
| Name | Type | Description |
|---|---|---|
product |
UnmappedProductSummary | |
unmapped_values |
Array<UnmappedValueForProduct> |
UnmappedProductListItem¶
| Name | Type | Description |
|---|---|---|
age_class |
||
brand |
||
cover_image_url |
||
gender |
||
id |
string(uuid) | |
name |
string | |
product_family |
||
product_type |
||
sku |
||
unmapped_value_count |
integer |
UnmappedProductListPublic¶
| Name | Type | Description |
|---|---|---|
count |
integer | |
data |
Array<UnmappedProductListItem> |
UnmappedProductsPublic¶
| Name | Type | Description |
|---|---|---|
count |
integer | |
data |
Array<UnmappedProductSummary> |
UnmappedProductSummary¶
| Name | Type | Description |
|---|---|---|
age_class |
||
brand |
||
brand_metadata |
||
cover_image_url |
||
gender |
||
id |
string(uuid) | |
name |
string | |
product_family |
||
product_type |
||
sku |
UnmappedValueForProduct¶
| Name | Type | Description |
|---|---|---|
brand |
string | |
created_at |
string(date-time) | |
external_value |
string | |
field_name |
string | |
id |
string(uuid) | |
mapping_type |
MappingType | |
occurrence_count |
integer |
ValidationError¶
| Name | Type | Description |
|---|---|---|
ctx |
||
input |
||
loc |
Array<> | |
msg |
string | |
type |
string |
Security schemes¶
| Name | Type | Scheme | Description |
|---|---|---|---|
| OAuth2PasswordBearer | oauth2 |