Service - Currency

From Izara Wiki
Revision as of 00:55, 20 May 2026 by Sven the Barbarian (talk | contribs) (Created page with "= Overview = All currencies are user defined, simple structure that cannot be changed once created. = Repository = .... = Object Schemas = ; Additional Information: Per Service Schemas == objType == === currency === <syntaxhighlight lang="JavaScript"> { objectType: "currency", canDelete: false, "addOnDataStructure": [], storageResources: { graph: { storageType: "graph", graphServerTag: "GraphHandler", } }, fieldNames: { currencyId: {...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

All currencies are user defined, simple structure that cannot be changed once created.

Repository

....

Object Schemas

Additional Information
Per Service Schemas

objType

currency

{
	objectType: "currency",
	canDelete: false,
	"addOnDataStructure": [],
	storageResources: {
		graph: {
			storageType: "graph",
			graphServerTag: "GraphHandler",
		}
    },
    fieldNames: {
		currencyId: {
			type: "string",
			randomOnCreate: true,
			storageResourceTags: ['graph']
		},
		currencyName: {
			type: "string",
			requiredOnCreate: true,
			storageResourceTags: ['graph']
		},
    },
    identifiers: [
		{
			type: "identifier",
			fieldName: "currencyId"
		}
    ]
}

Working documents

Currency