BookkeepingHealthDto
Everything the bookkeeping-health provider reports about a client's books — quality and
activity, every time bucket the provider returned. The bucket selector in the UI switches
between buckets client-side; nothing here is windowed.
Properties
| Name | Type | Description |
|---|---|---|
| organisationName | string | The linked organisation's name. |
The linked organisation's name. | ||
| retrievedAt | string | When the figures were fetched from the provider. Server-side caching means this can be up to |
When the figures were fetched from the provider. Server-side caching means this can be up to | ||
| quality | array of BookkeepingQualityPeriodDto | Quality scoring per time bucket, in the provider's order. |
Quality scoring per time bucket, in the provider's order. | ||
| activity | array of BookkeepingActivityPeriodDto | Activity figures per time bucket, in the provider's order. Not the same bucket set as |
Activity figures per time bucket, in the provider's order. Not the same bucket set as | ||
JSON Example
{
"organisationName": "string",
"retrievedAt": "2024-01-01T00:00:00Z",
"quality": [
{
"duration": "...",
"healthIndicator": "...",
"totalIssues": "...",
"potentialErrors": "..."
}
],
"activity": [
{
"duration": "...",
"turnover": "...",
"transactionCount": "...",
"invoices": "...",
"bills": "..."
}
]
}