AI-generated Key Takeaways
- 
          ReconciliationReportValidationIssue represents an issue found when validating a reconciliation report. 
- 
          The JSON representation includes fields for the line number, field name, and a description of the issue. 
- 
          lineNumindicates the line where the issue occurred, or 0 if it applies to the whole file.
- 
          fieldNamespecifies the name of the invalid field, or is empty if the issue affects the entire line or file.
- 
          descriptionprovides a text explanation of the issue, including the problem and reason for invalidity.
Represents an issue encountered when validating a reconciliation report.
| JSON representation | 
|---|
| { "lineNum": integer, "fieldName": string, "description": string } | 
| Fields | |
|---|---|
| lineNum | 
 The line number on which the issue was detected. If this field is 0, the issue applies to the whole file. | 
| fieldName | 
 Name of the invalid field. If no field name is given, this issue applies to the whole line (or file). | 
| description | 
 Text description of the issue, typically including what was seen and why it was invalid. |