Service - Currency: Difference between revisions
Jump to navigation
Jump to search
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: {..." |
No edit summary |
||
| Line 5: | Line 5: | ||
= Repository = | = Repository = | ||
.. | http://git.izara.io/IzaraCurrency-Currencies/IzaraCurrency-Currencies-Currency | ||
= Object Schemas = | = Object Schemas = | ||
Revision as of 01:19, 20 May 2026
Overview
All currencies are user defined, simple structure that cannot be changed once created.
Repository
http://git.izara.io/IzaraCurrency-Currencies/IzaraCurrency-Currencies-Currency
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"
}
]
}