Description

An Item Specification is a blueprint for a type of item or material managed within inventory. It defines the characteristics and metadata for items that can be stocked, consumed, or moved. Item Specifications can optionally support fractional quantities for materials such as powders or liquids that can be measured in non-integer amounts.

Properties

Property NameProperty TypeNullableDescription
idGuidfalseThe unique identifier of the Item Specification.
createdAtDateTimefalseThe date and time the Item Specification was created.
updatedAtDateTimefalseThe date and time the Item Specification was last updated.
createdByIdGuidfalseThe unique identifier of the user who created the Item Specification.
updatedByIdGuidfalseThe unique identifier of the user who last updated the Item Specification.
versionTagstringfalseA version tag for the Item Specification, used to distinguish revisions.
isReleasedboolfalseWhether the Item Specification has been released and is available for use.
namestringfalseThe human-readable name of the Item Specification.
descriptionstringtrueAn optional description of the Item Specification.
unitsstringtrueThe unit of measure for the item (e.g. kg, litres, each).
isFractionalboolfalseWhether the item can be divided into fractional quantities. Used for materials like powders or liquids.
pricedouble?trueThe price of the item per unit.
attributesJsonDocumenttrueA flexible JSON object for storing additional user-defined attributes of the Item Specification.