-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parser Accepts Blanks or 0s as Blank Values #4124
Comments
List of enums this applies to:
which ones should accept blank as is, and which should convert blank to 0 as is the current logic, or throw an exception if it's blank |
clarifications: |
problem scope is only limited to enums relating to AUS, Denial Reason, Race, and Ethnicity |
In fields that are either blank or integers, such as AUS System, the parser first converts the the blank value into a
0
and then maps the integer value0
to the blank enumerate object. The conversation happens in this method. The mapping into the enumerated object can be seen in AUS System. As such, the parser will accept and convert either ablank
or a0
as theblank object
.The text was updated successfully, but these errors were encountered: