Service - Currency: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
Jammy (talk | contribs)
Jammy (talk | contribs)
Undo revision 4419 by Jammy (talk)
Tag: Undo
 
Line 20: Line 20:
"addOnDataStructure": [],
"addOnDataStructure": [],
storageResources: {
storageResources: {
// dynamoDB
graph: {
storageType: "graph",
graphServerTag: "GraphHandler",
}
     },
     },
     fieldNames: {
     fieldNames: {
Line 26: Line 29:
type: "string",
type: "string",
randomOnCreate: true,
randomOnCreate: true,
storageResourceTags: ['dynamoDB']
storageResourceTags: ['graph']
},
},
currencyName: {
currencyName: {
type: "string",
type: "string",
requiredOnCreate: true,
requiredOnCreate: true,
storageResourceTags: ['dynamoDB']
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"
		}
    ]
}

Working documents

Currency