calculate_profit_margin
Calculate profit margin for art supplies using cost and selling price to determine product profitability and inform pricing decisions.
Instructions
Calculate profit margin for a product or category based on cost and selling price.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
costPrice | Yes | Cost price per unit | |
sku | Yes | Product SKU |
Input Schema (JSON Schema)
{
"properties": {
"costPrice": {
"description": "Cost price per unit",
"type": "number"
},
"sku": {
"description": "Product SKU",
"type": "string"
}
},
"required": [
"sku",
"costPrice"
],
"type": "object"
}