DimensionProposalDto
DTO representing dimension value proposals for a specific dimension.
externalDimensionIdstringrequired
The unique identifier of the dimension in your ERP system.
Example:
Assurance-155externalDimensionNamestringnullable
Name of the dimension
Example:
AssurancedimensionValueProposals object[]
Array of coding proposals. Ordered by certainty with the first entry being the proposal with the highest certainty.
Array [
externalDimensionValueIdstringnullable
Identifier of the dimension value in your ERP system. Is expected to be unique within the company.
Example:
Assurance01externalDimensionValueNamestringnullable
Name of the dimension value in your ERP system.
Example:
Assurance-155confidencestring
Enumeration representing confidence levels.
Possible values: [Low, Medium, High]
proposalPriorityinteger<int32>
Priority index indicating the priority of the proposal. The lowest number indicates the highest priority.
Example:
1]
DimensionProposalDto
{
"externalDimensionId": "Assurance-155",
"externalDimensionName": "Assurance",
"dimensionValueProposals": [
{
"externalDimensionValueId": "Assurance01",
"externalDimensionValueName": "Assurance-155",
"confidence": "Low",
"proposalPriority": 1
}
]
}