Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Allow a score of 0
A risk score of zero is desirable for informational intermediate findings, or where risk score is set within the SPL.
  • Loading branch information
0xC0FFEEEE authored Jun 12, 2025
commit a09fc0c353a10f3d2929b5f99c185995cd65ae5a
2 changes: 1 addition & 1 deletion contentctl/objects/rba.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from pydantic import BaseModel, Field, model_serializer

RiskScoreValue_Type = Annotated[int, Field(ge=1, le=100)]
RiskScoreValue_Type = Annotated[int, Field(ge=0, le=100)]


class RiskObjectType(str, Enum):
Expand Down
Loading