LotBatchWiseInventory
Type: schema
TypeScript Definition
typescript
LotBatchWiseInventory: {components["schemas"]["ItemWiseInventory"] & {
lot_batch?: string
}Component References
| Reference | Resolves To |
|---|---|
components["schemas"]["ItemWiseInventory"] | ItemWiseInventory |
OpenAPI Schema
json
{
"allOf": [
{
"$ref": "#/components/schemas/ItemWiseInventory"
},
{
"type": "object",
"properties": {
"lot_batch": {
"type": "string"
},
"mfg_date": {
"type": "string",
"format": "date"
},
"exp_date": {
"type": "string",
"format": "date"
},
"manufacturer": {
"type": "string"
}
}
}
],
"title": "LotBatchWiseInventory",
"x-tags": [
"Catalog"
]
}Auto-generated from OpenAPI spec and TypeScript definitions