Service - Currency: Difference between revisions
Jump to navigation
Jump to search
Tag: Undo |
|||
| Line 20: | Line 20: | ||
"addOnDataStructure": [], | "addOnDataStructure": [], | ||
storageResources: { | storageResources: { | ||
graph: { | |||
storageType: "graph", | |||
graphServerTag: "GraphHandler", | |||
} | |||
}, | }, | ||
fieldNames: { | fieldNames: { | ||
| Line 26: | Line 29: | ||
type: "string", | type: "string", | ||
randomOnCreate: true, | randomOnCreate: true, | ||
storageResourceTags: [' | storageResourceTags: ['graph'] | ||
}, | }, | ||
currencyName: { | currencyName: { | ||
type: "string", | type: "string", | ||
requiredOnCreate: true, | requiredOnCreate: true, | ||
storageResourceTags: [' | storageResourceTags: ['graph'] | ||
}, | }, | ||
}, | }, | ||
Latest revision as of 07:18, 25 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"
}
]
}