Properties
| Name | Type | Description |
|---|---|---|
| Food | boolean | Product is classified as food. |
| Beverage | boolean | Product is classified as beverage. |
| Wellness | boolean | Product is classified as wellness. |
| CityTax | boolean | Product is classified as city tax. |
| Fee | boolean | Product is classified as fee. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProductClassifications",
"title": "Product classifications",
"type": "object",
"properties": {
"Food": {
"type": "boolean",
"description": "Product is classified as food."
},
"Beverage": {
"type": "boolean",
"description": "Product is classified as beverage."
},
"Wellness": {
"type": "boolean",
"description": "Product is classified as wellness."
},
"CityTax": {
"type": "boolean",
"description": "Product is classified as city tax."
},
"Fee": {
"type": "boolean",
"description": "Product is classified as fee."
}
},
"additionalProperties": false,
"description": "",
"x-schema-id": "ProductClassifications"
}