Service - CommerceAccounting Services
Revision as of 22:37, 15 April 2026 by Sven the Barbarian (talk | contribs) (Created page with "= Overview = Links Services objects to Accounting structures. = Repository = ... = Object Schemas = ; Additional Information: Per Service Schemas == comAccServicesLink == <syntaxhighlight lang="JavaScript"> { objectType: "comAccServicesLink", canDelete: false, belongTo: { serviceTag: "ComAccLink", objectType: "comAccLinkByBusiness" }, addOnDataStructure: [], storageResources: { "dynamo": { "storageType": "dynamoDB", "tableName": "comAccService...")
Overview
Links Services objects to Accounting structures.
Repository
...
Object Schemas
- Additional Information
- Per Service Schemas
comAccServicesLink
{
objectType: "comAccServicesLink",
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccServicesLink",
}
},
fieldNames: {
// businessId
// servicesId
// accountlinkTag // type of link: servicesExpense|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId","servicesId"],
},
{
type: "sortKey",
fieldName: "accountlinkTag"
},
]
}
comAccServicesTemplateLink
{
objectType: "comAccServicesTemplateLink",
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccServicesTemplateLink",
}
"graph": {}
},
fieldNames: {
// businessId
// servicesTemplateId
// accountlinkTag // type of link: servicesExpense|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "servicesTemplateId"],
},
{
type: "sortKey",
fieldName: "accountlinkTag"
},
]
}
comAccServicesTypeLink
{
objectType: "comAccServicesTypeLink",
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccServicesTypeLink",
}
"graph": {}
},
fieldNames: {
// businessId
// servicesType // pointInTime|overTime
// accountlinkTag // type of link: servicesExpense|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "servicesType"],
},
{
type: "sortKey",
fieldName: "accountlinkTag"
},
]
}
Relationships
...
flowSchemas
...