Service - Currency

From Izara Wiki
Revision as of 07:17, 25 May 2026 by Jammy (talk | contribs) (currency)
Jump to navigation Jump to search

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: {
		// dynamoDB
    },
    fieldNames: {
		currencyId: {
			type: "string",
			randomOnCreate: true,
			storageResourceTags: ['dynamoDB']
		},
		currencyName: {
			type: "string",
			requiredOnCreate: true,
			storageResourceTags: ['dynamoDB']
		},
    },
    identifiers: [
		{
			type: "identifier",
			fieldName: "currencyId"
		}
    ]
}

Working documents

Currency