Properties
| Name | Type | Description |
|---|---|---|
| productCommissionPercentage | number | Percentage of the comission applied to the product in decimals. |
| freightCommissionPercentage | number | Percentage of the comission applied to the freight in decimals. |
| categoriesCommissionConfiguration | array | Array with percentage of the comission applied to categories in decimals. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SellerCommissionConfiguration",
"title": "Seller Commission Configuration",
"required": [
"productCommissionPercentage",
"freightCommissionPercentage",
"categoriesCommissionConfiguration"
],
"type": "object",
"properties": {
"productCommissionPercentage": {
"type": "number",
"description": "Percentage of the comission applied to the product in decimals.",
"default": 9.85
},
"freightCommissionPercentage": {
"type": "number",
"description": "Percentage of the comission applied to the freight in decimals.",
"default": 2.43
},
"categoriesCommissionConfiguration": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array with percentage of the comission applied to categories in decimals.",
"default": []
}
},
"example": {
"productCommissionPercentage": 3,
"freightCommissionPercentage": 4,
"categoriesCommissionConfiguration": []
}
}