Service - Inventory Goods: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= Overview = Handler service for standard goods inventory type. = Repository = ... = Schemas = ==ObjectSchemas== === inventoryGoods === <syntaxhighlight lang="JavaScript"> { "objectType": "inventoryGoods", "extendObjType": { "serviceTag": "InventoryManager", "objectType": "inventory" }, "storageResources": { "graph": { "storageType": "graph", "graphServerTag": "GraphHandler" } "dynamo": { "storageType": "dynamoDB",...") |
No edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 38: | Line 38: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== inventoryUnitGoods === | |||
<syntaxhighlight lang="JavaScript"> | |||
{ | |||
"objectType": "inventoryUnitGoods", | |||
"extendObjType": { | |||
"serviceTag": "InventoryManager", | |||
"objectType": "inventoryUnit" | |||
}, | |||
"storageResources": { | |||
"graph": { | |||
"storageType": "graph", | |||
"graphServerTag": "GraphHandler" | |||
} | |||
"dynamo": { // ? if has flows attached on a unit level | |||
"storageType": "dynamoDB", | |||
"tableName": "inventoryUnitGoods", | |||
} | |||
}, | |||
"addOnDataStructure": [], | |||
"fieldNames": { | |||
// from inventory objType | |||
}, | |||
"generatedBy": "userGenerated" | |||
} | |||
</syntaxhighlight> | |||
== RelationshipSchemas == | == RelationshipSchemas == | ||
... | ... | ||
= Working documents = | = Working documents = | ||
[[:Category:Working_documents - Inventory Goods|Inventory Goods]] | [[:Category:Working_documents - Inventory Goods| Inventory Goods]] | ||
[[Category:Backend services| Inventory Goods]] | [[Category:Backend services| Inventory Goods]] | ||
Latest revision as of 10:33, 2 January 2026
Overview
Handler service for standard goods inventory type.
Repository
...
Schemas
ObjectSchemas
inventoryGoods
{
"objectType": "inventoryGoods",
"extendObjType": {
"serviceTag": "InventoryManager",
"objectType": "inventory"
},
"storageResources": {
"graph": {
"storageType": "graph",
"graphServerTag": "GraphHandler"
}
"dynamo": {
"storageType": "dynamoDB",
"tableName": "inventoryGoods",
}
},
"addOnDataStructure": [],
"fieldNames": {
// from inventory objType
},
"generatedBy": "userGenerated"
}
inventoryUnitGoods
{
"objectType": "inventoryUnitGoods",
"extendObjType": {
"serviceTag": "InventoryManager",
"objectType": "inventoryUnit"
},
"storageResources": {
"graph": {
"storageType": "graph",
"graphServerTag": "GraphHandler"
}
"dynamo": { // ? if has flows attached on a unit level
"storageType": "dynamoDB",
"tableName": "inventoryUnitGoods",
}
},
"addOnDataStructure": [],
"fieldNames": {
// from inventory objType
},
"generatedBy": "userGenerated"
}
RelationshipSchemas
...