Skip to content

Commit

Permalink
update flexible_legal_basis boolean field to be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
adamsachs committed Oct 11, 2023
1 parent b76c3c0 commit 5b75cef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/fideslang/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -991,9 +991,8 @@ class PrivacyDeclaration(BaseModel):
features: List[str] = Field(
default_factory=list, description="The features of processing personal data."
)
flexible_legal_basis_for_processing: bool = Field(
flexible_legal_basis_for_processing: Optional[bool] = Field(
description="Whether the legal basis for processing is 'flexible' (i.e. can be overridden in a privacy notice) for this declaration.",
default=False,
)
legal_basis_for_processing: Optional[LegalBasisForProcessingEnum] = Field(
description="The legal basis under which personal data is processed for this purpose."
Expand Down

0 comments on commit 5b75cef

Please sign in to comment.