Properties
| Name | Type | Description |
|---|---|---|
| reportId | string | |
| templateId | string | |
| templateName | string | |
| status | string | |
| generatedAt | string | |
| parameters | object | |
| columns | array | |
| rows | array | |
| totalRows | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ReportResult",
"type": "object",
"properties": {
"reportId": {
"type": "string"
},
"templateId": {
"type": "string"
},
"templateName": {
"type": "string"
},
"status": {
"type": "string"
},
"generatedAt": {
"type": "string"
},
"parameters": {
"type": "object"
},
"columns": {
"type": "array"
},
"rows": {
"type": "array"
},
"totalRows": {
"type": "integer"
}
}
}