Service - Purchase Line Item Services: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= Overview = Handler service for service purchase line items. = Repository = ... = Schemas = ==ObjectSchemas== === purchaseLineItemServices === <syntaxhighlight lang="JavaScript"> { "objectType": "purchaseLineItemServices", "extendObjType": { "serviceTag": "PurchaseLineItemManager", "objectType": "purchaseLineItem" }, "storageResources": { "graph": { "storageType": "graph", "graphServerTag": "GraphHandler" } "dynamo": {...") |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 40: | Line 40: | ||
== RelationshipSchemas == | == RelationshipSchemas == | ||
=== isService === | |||
<syntaxhighlight lang="JavaScript"> | |||
{ | |||
isService: { | |||
storageResources: { | |||
myGraph: { | |||
storageType: "graph", | |||
graphServerTag: "GraphHandler" | |||
} | |||
}, | |||
links: [ | |||
{ | |||
storageResourceTags: ["myGraph"], | |||
from: { | |||
objType: { | |||
serviceTag: "PurchaseLineItemisServices", | |||
objectType: "purchaseLineItemisServices" | |||
}, | |||
linkType: "many", | |||
}, | |||
to: { | |||
objType: { | |||
serviceTag: "ServicesManager", | |||
objectType: "services" | |||
}, | |||
linkType: "one" | |||
} | |||
} | |||
] | |||
} | |||
} | |||
</syntaxhighlight> | |||
= Working documents = | = Working documents = | ||
Latest revision as of 13:46, 19 January 2026
Overview
Handler service for service purchase line items.
Repository
...
Schemas
ObjectSchemas
purchaseLineItemServices
{
"objectType": "purchaseLineItemServices",
"extendObjType": {
"serviceTag": "PurchaseLineItemManager",
"objectType": "purchaseLineItem"
},
"storageResources": {
"graph": {
"storageType": "graph",
"graphServerTag": "GraphHandler"
}
"dynamo": {
"storageType": "dynamoDB",
"tableName": "purchaseLineItemServices",
}
},
"addOnDataStructure": [],
"fieldNames": {
// from purchaseLineItem objType
},
"generatedBy": "userGenerated"
}
RelationshipSchemas
isService
{
isService: {
storageResources: {
myGraph: {
storageType: "graph",
graphServerTag: "GraphHandler"
}
},
links: [
{
storageResourceTags: ["myGraph"],
from: {
objType: {
serviceTag: "PurchaseLineItemisServices",
objectType: "purchaseLineItemisServices"
},
linkType: "many",
},
to: {
objType: {
serviceTag: "ServicesManager",
objectType: "services"
},
linkType: "one"
}
}
]
}
}