-
Notifications
You must be signed in to change notification settings - Fork 18
Minnesota #85
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
Minnesota #85
Conversation
|
@yuzawa-san would you mind giving this a review. We'll include it in Monday's release. |
yuzawa-san
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems like delaware is leaking in
iabgpp-encoder/src/main/java/com/iab/gpp/encoder/section/UsMn.java
Outdated
Show resolved
Hide resolved
iabgpp-encoder/src/main/java/com/iab/gpp/encoder/section/UsMn.java
Outdated
Show resolved
Hide resolved
yuzawa-san
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some types appear to be inconsistent with https://github.com/InteractiveAdvertisingBureau/Global-Privacy-Platform/blob/main/Sections/US-States/MN/Minnesota%20Privacy%20Technical%20Specification.md
| fields.put(UsMnField.TARGETED_ADVERTISING_OPT_OUT, | ||
| new EncodableFixedInteger(2, 0).withValidator(nullableBooleanAsTwoBitIntegerValidator)); | ||
| fields.put(UsMnField.SENSITIVE_DATA_PROCESSING, | ||
| new EncodableFixedIntegerList(2, Arrays.asList(0, 0, 0, 0, 0, 0, 0, 0, 0)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is N-Bitfield(2,8) so one of these 0's needs to be removed
| new EncodableFixedIntegerList(2, Arrays.asList(0, 0, 0, 0, 0, 0, 0, 0, 0)) | ||
| .withValidator(nullableBooleanAsTwoBitIntegerListValidator)); | ||
| fields.put(UsMnField.KNOWN_CHILD_SENSITIVE_DATA_CONSENTS, | ||
| new EncodableFixedIntegerList(2, Arrays.asList(0, 0, 0, 0, 0)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is Int(2) so i think it needs to be new EncodableFixedInteger(2, 0).withValidator(nullableBooleanAsTwoBitIntegerValidator)
No description provided.