summaryrefslogtreecommitdiffstats
path: root/openbb_platform/core/openbb_core/provider/standard_models/share_price_index.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/core/openbb_core/provider/standard_models/share_price_index.py')
-rw-r--r--openbb_platform/core/openbb_core/provider/standard_models/share_price_index.py49
1 files changed, 49 insertions, 0 deletions
diff --git a/openbb_platform/core/openbb_core/provider/standard_models/share_price_index.py b/openbb_platform/core/openbb_core/provider/standard_models/share_price_index.py
new file mode 100644
index 00000000000..ff2d0681675
--- /dev/null
+++ b/openbb_platform/core/openbb_core/provider/standard_models/share_price_index.py
@@ -0,0 +1,49 @@
+"""Share Price Index Standard Model."""
+
+from datetime import date as dateType
+from typing import Literal, Optional
+
+from pydantic import Field
+
+from openbb_core.provider.abstract.data import Data
+from openbb_core.provider.abstract.query_params import QueryParams
+from openbb_core.provider.utils.descriptions import (
+ DATA_DESCRIPTIONS,
+ QUERY_DESCRIPTIONS,
+)
+
+
+class SharePriceIndexQueryParams(QueryParams):
+ """Share Price Index Query."""
+
+ country: str = Field(
+ description=QUERY_DESCRIPTIONS.get("country", ""),
+ default="united_states",
+ )
+ frequency: Literal["monthly", "quarter", "annual"] = Field(
+ description=QUERY_DESCRIPTIONS.get("frequency", ""),
+ default="monthly",
+ json_schema_extra={"choices": ["monthly", "quarter", "annual"]},
+ )
+ start_date: Optional[dateType] = Field(
+ default=None, description=QUERY_DESCRIPTIONS.get("start_date")
+ )
+ end_date: Optional[dateType] = Field(
+ default=None, description=QUERY_DESCRIPTIONS.get("end_date")
+ )
+
+
+class SharePriceIndexData(Data):
+ """Share Price Index Data."""
+
+ date: Optional[dateType] = Field(
+ default=None, description=DATA_DESCRIPTIONS.get("date")
+ )
+ country: Optional[str] = Field(
+ default=None,
+ description=DATA_DESCRIPTIONS.get("country", ""),
+ )
+ value: Optional[float] = Field(
+ default=None,
+ description="Share price index value.",
+ )