Service - Currency Table Manager

From Izara Wiki
Revision as of 00:27, 20 May 2026 by Sven the Barbarian (talk | contribs) (Created page with "= Overview = Tables receive to/from currencyId and return the rate between them. = Repository = .... = Object Schemas = ; Additional Information: Per Service Schemas == objType == === currencyTable === <syntaxhighlight lang="JavaScript"> { objectType: "currencyTable", canDelete: false, addOnDataStructure: [], storageResources: { dynamoDB: { storageType: "dynamoDB", tableName: "currencyTable", } }, fieldNames: { currencyTableId: { typ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

Tables receive to/from currencyId and return the rate between them.

Repository

....

Object Schemas

Additional Information
Per Service Schemas

objType

currencyTable

{
	objectType: "currencyTable",
	canDelete: false,
	addOnDataStructure: [],
	storageResources: {
		dynamoDB: {
			storageType: "dynamoDB",
			tableName: "currencyTable",
		}
    },
    fieldNames: {
		currencyTableId: {
			type: "string",
			randomOnCreate: true,
			storageResourceTags: ['dynamoDB']
		},
    },
    identifiers: [
		{
			type: "identifier",
			fieldName: "currencyTableId"
		}
    ]
}

Working documents

Currency Table Manager