CODEDIT output tabular format column specifications
Below are the headers of the CSV format for the tabular report. Each row corresponds to a CODEDIT check that was applied.
The following headers are currently used in the CSV output:
ReportMessage; Condition; ConditionRecommendation; OtherChoices; RefGuide
IMPORTANT: the structure of this table might change in the future.
| Name | Structure | Description |
|---|---|---|
| ReportMessage | string |
Contains a serialized report message generated by the system for the current validation or recommendation step. |
| Condition | List<string> |
Specifies the condition(s) or diagnosis(es) involved in the current evaluation step. |
| ConditionRecommendation | string |
Indicates the recommendation, suggested modification, or proposed coding decision generated by the system. |
| OtherChoices | List<string> |
Specifies additional fields, metadata, or contextual information considered during the recommendation process. |
| RefGuide | string |
Reference guide, rule, or documentation section associated with the recommendation or validation. |
Structure Definitions
Condition Separator = ','
OtherChoices Separator = '|'
<ReportMessage>
<ReportMessage> is a serialized structure using ',' as separator between its elements.
Serialized format:
Code,Message,Id
Where:
| Field | Type | Description |
|---|---|---|
| Code | int |
Severity or category code associated with the message. The following predefined values are currently used: 0 - Checks, 1 - Important Checks, 2 - High Priority Checks. |
| Message | string |
Textual description of the check message generated by the system. |
| Id | string |
Identifier associated with the message, rule, or recommendation. The complete list of available identifiers and their meanings can be found in the reference documentation available at: (see the full id list specification). |
Example:
0,The check message,BER-CE-1