diff --git a/api_reference/trestle.oscal.common/index.html b/api_reference/trestle.oscal.common/index.html index b4dfa30a4..0ceae806b 100644 --- a/api_reference/trestle.oscal.common/index.html +++ b/api_reference/trestle.oscal.common/index.html @@ -45380,9 +45380,9 @@

class Config: extra = Extra.forbid - period: PositiveIntegerDatatype = Field( - ..., description='The task must occur after the specified period has elapsed.', title='Period' - ) + period: conint( + ge=1, multiple_of=1 + ) = Field(..., description='The task must occur after the specified period has elapsed.', title='Period') unit: TimeUnitValidValues = Field(..., description='The unit of time for the period.', title='Time Unit') @@ -45674,7 +45674,7 @@

-period: PositiveIntegerDatatype +period: ConstrainedIntValue pydantic-field @@ -70075,10 +70075,10 @@

class Config: extra = Extra.forbid - start: Optional[NonNegativeIntegerDatatype] = Field( + start: Optional[conint(ge=0, multiple_of=1)] = Field( None, description='Indicates the starting port number in a port range', title='Start' ) - end: Optional[NonNegativeIntegerDatatype] = Field( + end: Optional[conint(ge=0, multiple_of=1)] = Field( None, description='Indicates the ending port number in a port range', title='End' ) transport: Optional[PortRangeValidValues] = Field( @@ -70374,7 +70374,7 @@

-end: NonNegativeIntegerDatatype +end: ConstrainedIntValue pydantic-field @@ -70396,7 +70396,7 @@
-start: NonNegativeIntegerDatatype +start: ConstrainedIntValue pydantic-field diff --git a/api_reference/trestle.tasks.csv_to_oscal_cd/index.html b/api_reference/trestle.tasks.csv_to_oscal_cd/index.html index 0800c2737..c10d710a9 100644 --- a/api_reference/trestle.tasks.csv_to_oscal_cd/index.html +++ b/api_reference/trestle.tasks.csv_to_oscal_cd/index.html @@ -3953,6 +3953,13 @@