fix RawFtmEntry validation error
This commit is contained in:
parent
3a257694f9
commit
e5e52a1035
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ class RangeResultItem(BaseModel):
|
||||||
class RawFTMEntry(BaseModel):
|
class RawFTMEntry(BaseModel):
|
||||||
dlog_token: Annotated[PositiveInt, Lt(255)]
|
dlog_token: Annotated[PositiveInt, Lt(255)]
|
||||||
rssi: Annotated[NegativeInt, Gt(-100)]
|
rssi: Annotated[NegativeInt, Gt(-100)]
|
||||||
rtt: Annotated[PositiveInt, Lt(2**32)]
|
rtt: Annotated[NonNegativeInt, Lt(2**32)]
|
||||||
t1: Annotated[PositiveInt, Lt(2**64)]
|
t1: Annotated[PositiveInt, Lt(2**64)]
|
||||||
t2: Annotated[PositiveInt, Lt(2**64)]
|
t2: Annotated[PositiveInt, Lt(2**64)]
|
||||||
t3: Annotated[PositiveInt, Lt(2**64)]
|
t3: Annotated[PositiveInt, Lt(2**64)]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue