Skip to content

Commit

Permalink
adding integer values allowed for alphanumeric filters
Browse files Browse the repository at this point in the history
  • Loading branch information
costero-e committed Oct 22, 2024
1 parent 28583ed commit 2681b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon/request/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class OntologyFilter(CamelModel):

class AlphanumericFilter(CamelModel):
id: str
value: Union[str, List[int]]
value: Union[str, int, List[int]]
scope: Optional[str] =None
operator: Operator = Operator.EQUAL

Expand Down

0 comments on commit 2681b66

Please sign in to comment.