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