diff --git a/src/ga4gh/core/models.py b/src/ga4gh/core/models.py index aabfb45c..89e9ab94 100644 --- a/src/ga4gh/core/models.py +++ b/src/ga4gh/core/models.py @@ -197,7 +197,7 @@ class Extension(Element, BaseModelForbidExtra): ..., description="A name for the Extension. Should be indicative of its meaning and/or the type of information it value represents.", ) - value: float | str | bool | dict[str, Any] | list[Any] | None = Field( + value: int | float | str | bool | dict[str, Any] | list[Any] | None = Field( ..., description="The value of the Extension - can be any primitive or structured object", )