Service - Inventory Goods: Difference between revisions

From Izara Wiki
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 ==


...
...
= Media =
* links to Media


= 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

...

Working documents

Inventory Goods