Add support for Maryland (24), Indiana (25), Kentucky (26), Rhode Island (27)#103
Open
chuff wants to merge 11 commits into
Open
Add support for Maryland (24), Indiana (25), Kentucky (26), Rhode Island (27)#103chuff wants to merge 11 commits into
chuff wants to merge 11 commits into
Conversation
added 11 commits
June 5, 2026 15:29
Implements the Maryland Online Data Privacy Act section per the GPP spec, following the existing UsMn pattern. Core + GPC segments, 9 core fields (MspaVersion, MspaCoveredTransaction, MspaMode, ProcessingNotice, SaleOptOutNotice, TargetedAdvertisingOptOutNotice, SaleOptOut, TargetedAdvertisingOptOut, AdditionalDataProcessingConsent), no SensitiveDataProcessing / KnownChildSensitiveDataConsents per spec.
Implements the Indiana Consumer Data Protection Act section per the GPP spec, following the UsMn pattern. Core + GPC segments, 11 core fields including SensitiveDataProcessing (8-element N-Bitfield) and KnownChildSensitiveDataConsents.
# Conflicts: # iabgpp-encoder/src/main/java/com/iab/gpp/encoder/GppModel.java # iabgpp-encoder/src/main/java/com/iab/gpp/encoder/section/Sections.java # iabgpp-encoder/src/test/java/com/iab/gpp/encoder/GppModelTest.java
# Conflicts: # iabgpp-encoder/src/main/java/com/iab/gpp/encoder/GppModel.java # iabgpp-encoder/src/main/java/com/iab/gpp/encoder/section/Sections.java # iabgpp-encoder/src/test/java/com/iab/gpp/encoder/GppModelTest.java
# Conflicts: # iabgpp-encoder/src/main/java/com/iab/gpp/encoder/GppModel.java # iabgpp-encoder/src/main/java/com/iab/gpp/encoder/section/Sections.java # iabgpp-encoder/src/test/java/com/iab/gpp/encoder/GppModelTest.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements four new MSPA state sections per the latest GPP MSPA spec:
Each section follows the same pattern as the existing US-MN section: a Core + GPC segment pair, registered in `Sections.java` and dispatched from `GppModel` for encode/decode, with per-state fields, segments, and a section class.
Test plan