Properties
| Name | Type | Description |
|---|---|---|
| productCode | string | |
| productName | string | |
| productCategory | string | |
| unitOfMeasure | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExciseProduct",
"title": "ExciseProduct",
"type": "object",
"properties": {
"productCode": {
"type": "string"
},
"productName": {
"type": "string"
},
"productCategory": {
"type": "string",
"enum": [
"MotorFuel",
"Diesel",
"Aviation",
"Alcohol",
"Tobacco",
"NaturalGas",
"Other"
]
},
"unitOfMeasure": {
"type": "string"
}
}
}