Service - Expense Manager: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
(Created page with "= Overview = Manager service for different expense types. = Repository = .... = Object Schemas = ; Additional Information: Per Service Schemas == objType == === expense === <syntaxhighlight lang="JavaScript"> { objectType: "expense", canDelete: false, belongTo: { serviceTag: "Business", objectType: "business" }, addOnDataStructure: [], storageResources: { myGraph: { storageType: "graph", graphServerTag: "GraphHandler" } }, fieldNam...")
 
No edit summary
 
Line 45: Line 45:
</syntaxhighlight>
</syntaxhighlight>


== Object Relationships ==
== RelationshipSchemas ==


= flowSchemas =
= flowSchemas =

Latest revision as of 13:52, 19 January 2026

Overview

Manager service for different expense types.

Repository

....

Object Schemas

Additional Information
Per Service Schemas

objType

expense

{
	objectType: "expense",
	canDelete: false,
	belongTo: { 
		serviceTag: "Business",
		objectType: "business"
	},
	addOnDataStructure: [],
	storageResources: {
		myGraph: {
			storageType: "graph",
			graphServerTag: "GraphHandler"
		}
    },
    fieldNames: {
		expenseId: {
			type: "string",
			randomOnCreate: true,
			storageResourceTags: ['myGraph']
		},
    },
    identifiers: [
		{
			type: "identifier",
			fieldName: "expenseId"
		}
    ]
}

RelationshipSchemas

flowSchemas

Working documents

Expense Manager