Skip to main content

InvoiceCodingDimensionPrecisionDto

DTO representing the precision of invoice coding dimension proposals over a specified period.

fromstring<date-time>required

The start date of the precision period (inclusive).

tostring<date-time>required

The end date of the precision period (inclusive).

dimensionPrecisions object[]required

The list of dimension precisions within the specified period.

  • Array [
  • dimensionNamestringrequired

    The name of the dimension.

    confidenceLevelstringrequired

    The confidence level of the precision metric (e.g., High, Medium, Low).

    sampleSizeinteger<int32>

    The number of samples used to calculate the precision.

    precisionnumber<float>

    The precision percentage for the dimension and confidence level.

    A value between 0 and 100 representing the accuracy of coding proposals.

  • ]
  • InvoiceCodingDimensionPrecisionDto
    {
    "from": "2024-07-29T15:51:28.071Z",
    "to": "2024-07-29T15:51:28.071Z",
    "dimensionPrecisions": [
    {
    "dimensionName": "string",
    "confidenceLevel": "string",
    "sampleSize": 0,
    "precision": 0
    }
    ]
    }