Service - Currency Table Manager: Difference between revisions
Jump to navigation
Jump to search
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..." |
No edit summary |
||
| Line 18: | Line 18: | ||
objectType: "currencyTable", | objectType: "currencyTable", | ||
canDelete: false, | canDelete: false, | ||
addOnDataStructure: [], | "addOnDataStructure": [ | ||
{ | |||
"type": "translation" // name of the currencyTable | |||
}, | |||
], | |||
storageResources: { | storageResources: { | ||
dynamoDB: { | dynamoDB: { | ||
Revision as of 00:31, 20 May 2026
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": [
{
"type": "translation" // name of the currencyTable
},
],
storageResources: {
dynamoDB: {
storageType: "dynamoDB",
tableName: "currencyTable",
}
},
fieldNames: {
currencyTableId: {
type: "string",
randomOnCreate: true,
storageResourceTags: ['dynamoDB']
},
},
identifiers: [
{
type: "identifier",
fieldName: "currencyTableId"
}
]
}