summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanglewood <85772166+deeleeramone@users.noreply.github.com>2024-01-12 03:39:37 -0800
committerGitHub <noreply@github.com>2024-01-12 11:39:37 +0000
commitc0f044576210f1cac6b2385144bde11c3dabb133 (patch)
tree83af9b7431091d5bd258ba0d9836c66f77274af7
parentcdce90447acc104ecc759636cf2092cd42d6618d (diff)
docs/data-models-url: Fix URLs on Development Page (#5944)
* fix url to the standard models * github links
-rw-r--r--website/content/platform/development/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/content/platform/development/index.md b/website/content/platform/development/index.md
index 719ab24b2e3..0a2dc0f2812 100644
--- a/website/content/platform/development/index.md
+++ b/website/content/platform/development/index.md
@@ -83,7 +83,7 @@ Before moving forward, please take a look at the high-level view of the OpenBB P
The Standardization Framework is a set of tools and guidelines that enable the user to query and obtain data in a consistent way across multiple providers.
-Each data model should inherit from a [standard data](platform/core/provider/standard_models) model that is already defined inside the OpenBB Platform. All standard models are created and maintained by the OpenBB team.
+Each data model should inherit from a [standard data](/platform/data_models) model that is already defined inside the OpenBB Platform. All standard models are created and maintained by the OpenBB team.
Usage of these models will unlock a set of perks that are only available to standardized data, namely:
@@ -95,7 +95,7 @@ Usage of these models will unlock a set of perks that are only available to stan
The standard models are defined under the `/OpenBBTerminal/openbb_platform/platform/core/provider/standard_models/` directory.
-Each standard model defines a [`QueryParams`](https://github.com/OpenBB-finance/OpenBBTerminal/blob/develop/openbb_platform/platform/provider/openbb_provider/abstract/query_params.py) and [`Data`](https://github.com/OpenBB-finance/OpenBBTerminal/blob/develop/openbb_platform/platform/provider/openbb_provider/abstract/data.py) model, which are used to query and output data. Under the hood, these are just pydantic models, meaning you can leverage all the built-in pydantic features such as validators.
+Each standard model defines a [`QueryParams`](https://github.com/OpenBB-finance/OpenBBTerminal/tree/develop/openbb_platform/core/openbb_core/provider/abstract/query_params.py) and [`Data`](https://github.com/OpenBB-finance/OpenBBTerminal/tree/develop/openbb_platform/core/openbb_core/provider/abstract/data.py) model, which are used to query and output data. Under the hood, these are just pydantic models, meaning you can leverage all the built-in pydantic features such as validators.
#### Standardization Caveats