feat: add associations for PackagingUnit, Length, and Weight types

This commit is contained in:
Daniel Hutzel
2025-05-14 14:13:24 +02:00
parent 169fda660b
commit ccb61c9b69

View File

@@ -13,3 +13,7 @@ entity Weights : CodeList {
entity Lengths : CodeList {
key code : String(3); // e.g. m for Meter(s)
}
type PackagingUnit : Association to PackagingUnits;
type Length : Association to Lengths;
type Weight : Association to Weights;