diff --git a/docs/common-workflows/administration/monitors/project-administration.md b/docs/common-workflows/administration/monitors/project-administration.md
index fa6bcc666..ddf41d5f1 100644
--- a/docs/common-workflows/administration/monitors/project-administration.md
+++ b/docs/common-workflows/administration/monitors/project-administration.md
@@ -311,7 +311,7 @@ In the example above, the project status of `"MicroStrategy Tutorial"` was chang
## Update status for a specific project on all cluster nodes
-
+
Endpoint: [PATCH /api/monitors/projects/status](https://demo.microstrategy.com/MicroStrategyLibrary/api-docs/index.html#/Monitors/updateProjectStatusOnAllNodes)
@@ -346,7 +346,7 @@ This API will accept the request and start processing to execute based on the re
## Get status for a specific project on all cluster nodes
-
+
Endpoint: [GET /api/monitors/projects/status](https://demo.microstrategy.com/MicroStrategyLibrary/api-docs/index.html#/Monitors/getProjectStatusOnAllNodes)
@@ -413,7 +413,7 @@ By default, the endpoint will delete a project only if the project has unloaded
The project status can be changed using the `PATCH /api/monitors/iServer/nodes/{nodeName}/projects/{projectId}` endpoint. The client can delete the project if it is administrator or owner of the project.
-
+
You can provide a `deleteSessions` query parameter which will help to automatically close all active sessions across all the clustered nodes and then delete the project. The exemplary call is listed below:
diff --git a/docs/common-workflows/analytics/auto-bot-api/auto-bot-api.md b/docs/common-workflows/analytics/auto-bot-api/auto-bot-api.md
index aa23cb8eb..479c9b686 100644
--- a/docs/common-workflows/analytics/auto-bot-api/auto-bot-api.md
+++ b/docs/common-workflows/analytics/auto-bot-api/auto-bot-api.md
@@ -3,13 +3,13 @@ title: Auto Agent APIs
description: This page contains a summary of REST APIs for the "agent" endpoint. You can use REST API requests to interact with Auto Agents.
---
-
+
-Strategy One (March 2025) introduces an enhanced set of APIs designed to leverage the agent capabilities.
+Strategy (March 2025) introduces an enhanced set of APIs designed to leverage the agent capabilities.
The Auto Agent APIs provide a seamless way to interact with agents, allowing you to ask questions, retrieve answers, and get historical chat messages from agents. Additionally, the APIs offer the ability to get suggested questions, enhancing the user experience by providing relevant queries and answers efficiently.
-Strategy One (June 2025) adds support for retrieving images within answers, allowing for richer, more visual responses from the Auto Agent system. This feature includes customizable resolution settings to optimize image quality based on your specific needs.
+Strategy (June 2025) adds support for retrieving images within answers, allowing for richer, more visual responses from the Auto Agent system. This feature includes customizable resolution settings to optimize image quality based on your specific needs.
If you do not specify an Agent in your API requests, the system will automatically route your questions to the most appropriate Agent based on the context of your query. This intelligent routing ensures that users receive the most relevant responses without needing to manually select an Agent.
@@ -19,8 +19,8 @@ If you do not specify an Agent in your API requests, the system will automatical
- **Get answer by the question ID**: Retrieve the answer to a question using its ID. This API has been enhanced from the existing question API.
- **Get chat history from the agent**: Obtain all historical chat messages from the agent.
- **Get suggested questions from the agent**: Get recommended questions based on the context from the agent.
-- **Image support in answers**: Request and retrieve images as part of answers from agents, with customizable resolution settings. (Available from Strategy One (June 2025))
-- **Get attributes and metrics from the agent**: Fetch the column information (attributes and metrics) from the agent, which can be used for auto-complete functionality in user inputs. (Available from Strategy ONE (July 2025))
+- **Image support in answers**: Request and retrieve images as part of answers from agents, with customizable resolution settings. (Available from Strategy (June 2025))
+- **Get attributes and metrics from the agent**: Fetch the column information (attributes and metrics) from the agent, which can be used for auto-complete functionality in user inputs. (Available from Strategy (July 2025))
For further details on how to use these APIs, please refer to the following sections of this manual:
diff --git a/docs/common-workflows/analytics/auto-bot-api/get-columns.md b/docs/common-workflows/analytics/auto-bot-api/get-columns.md
index b9aa35caf..117ca61db 100644
--- a/docs/common-workflows/analytics/auto-bot-api/get-columns.md
+++ b/docs/common-workflows/analytics/auto-bot-api/get-columns.md
@@ -3,7 +3,7 @@ title: Get attributes forms and metrics from a specific agent
description: This page describes how to fetch the column information (attributes and metrics) from a specific agent.
---
-
+
This API is used to get column information (attributes forms and metrics) from a specific agent. This information is essential to understand what data elements the agent can access and use in its answers. The column information can be used to provide auto-complete functionality for user inputs, helping users formulate more accurate questions by suggesting relevant data elements as they type.
diff --git a/docs/common-workflows/analytics/auto-bot-api/get-image-of-answer.md b/docs/common-workflows/analytics/auto-bot-api/get-image-of-answer.md
index cda0fe110..6b6634b9e 100644
--- a/docs/common-workflows/analytics/auto-bot-api/get-image-of-answer.md
+++ b/docs/common-workflows/analytics/auto-bot-api/get-image-of-answer.md
@@ -4,7 +4,7 @@ title: Get an image in the answer of a specific question
description: This workflow sample demonstrates how to get an image in the answer of a specific question.
---
-
+
This workflow sample demonstrates how to get an image in the answer of a specific question.
diff --git a/docs/common-workflows/analytics/auto-bot-api/get-question-by-id.md b/docs/common-workflows/analytics/auto-bot-api/get-question-by-id.md
index 775598de5..5f8138ae9 100644
--- a/docs/common-workflows/analytics/auto-bot-api/get-question-by-id.md
+++ b/docs/common-workflows/analytics/auto-bot-api/get-question-by-id.md
@@ -4,7 +4,7 @@ title: Get answer by the question ID
description: This workflow sample demonstrates how to get a question's answer by the question ID.
---
-
+
This workflow sample demonstrates how to get a question's answer by the question ID.
diff --git a/docs/common-workflows/analytics/auto-bot-api/get-questions-by-bot.md b/docs/common-workflows/analytics/auto-bot-api/get-questions-by-bot.md
index 73050b8d3..1a1849987 100644
--- a/docs/common-workflows/analytics/auto-bot-api/get-questions-by-bot.md
+++ b/docs/common-workflows/analytics/auto-bot-api/get-questions-by-bot.md
@@ -4,7 +4,7 @@ title: Get chat history from a specific agent
description: This workflow sample demonstrates how to get the historical chat messages from a specific agent.
---
-
+
This API is used to get the historical questions from a specific agent for the current user, which can be used as the `history` parameter in the `Ask a question to a specific agent` API.
diff --git a/docs/common-workflows/analytics/auto-bot-api/post-question.md b/docs/common-workflows/analytics/auto-bot-api/post-question.md
index d148ef715..d83100fa1 100644
--- a/docs/common-workflows/analytics/auto-bot-api/post-question.md
+++ b/docs/common-workflows/analytics/auto-bot-api/post-question.md
@@ -4,7 +4,7 @@ title: Ask the agent a question
description: Submit a question to the agent and receive a question ID.
---
-
+
Use this API to submit a question to the agent and receive an question ID.
diff --git a/docs/common-workflows/analytics/auto-bot-api/post-suggestion.md b/docs/common-workflows/analytics/auto-bot-api/post-suggestion.md
index b4a88b73c..54374b0a3 100644
--- a/docs/common-workflows/analytics/auto-bot-api/post-suggestion.md
+++ b/docs/common-workflows/analytics/auto-bot-api/post-suggestion.md
@@ -4,7 +4,7 @@ title: Get suggested questions from the agent
description: This workflow sample demonstrates how to get suggested questions from the agent.
---
-
+
This workflow sample demonstrates how to get suggested questions from the agent.
diff --git a/docs/common-workflows/analytics/unstructured-data-api/create-unstructured-data.md b/docs/common-workflows/analytics/unstructured-data-api/create-unstructured-data.md
index 3c5ecad99..21bbc3614 100644
--- a/docs/common-workflows/analytics/unstructured-data-api/create-unstructured-data.md
+++ b/docs/common-workflows/analytics/unstructured-data-api/create-unstructured-data.md
@@ -3,7 +3,7 @@ title: Create unstructured data
description: This page describes how to create unstructured data by uploading a file to a specific folder.
---
-
+
Use this API to create unstructured data by uploading a file. When you add a new knowledge source for agents, call this endpoint to upload the file and create an unstructured data item that can be indexed and used to answer questions.
diff --git a/docs/common-workflows/analytics/unstructured-data-api/get-unstructured-data-categories.md b/docs/common-workflows/analytics/unstructured-data-api/get-unstructured-data-categories.md
index 8dda39623..24e64838c 100644
--- a/docs/common-workflows/analytics/unstructured-data-api/get-unstructured-data-categories.md
+++ b/docs/common-workflows/analytics/unstructured-data-api/get-unstructured-data-categories.md
@@ -3,7 +3,7 @@ title: Get categories for an unstructured data
description: This page explains how to retrieve categories (tags) for a specific unstructured data item that helps agents better understand and use the data.
---
-
+
This API is used to retrieve the categories for unstructured data. Categories are tags that describe the data within the unstructured data, helping agents better understand the context and content of the data source. By retrieving the categories, you can see which descriptive tags have been assigned to the data and use this information to understand how agents will interpret and utilize the data source when answering questions.
diff --git a/docs/common-workflows/analytics/unstructured-data-api/unstructured-data-api.md b/docs/common-workflows/analytics/unstructured-data-api/unstructured-data-api.md
index dcaf8b26b..2a2366951 100644
--- a/docs/common-workflows/analytics/unstructured-data-api/unstructured-data-api.md
+++ b/docs/common-workflows/analytics/unstructured-data-api/unstructured-data-api.md
@@ -3,9 +3,9 @@ title: Unstructured Data APIs
description: This page contains a summary of REST APIs for managing unstructured data. You can use REST API requests to update and configure unstructured data that agents use to answer questions.
---
-
+
-Strategy ONE (March 2026) introduces a set of public APIs designed to manage unstructured data that power agent capabilities.
+Strategy (March 2026) introduces a set of public APIs designed to manage unstructured data that power agent capabilities.
The Unstructured Data APIs provide comprehensive control over unstructured data, allowing you to update data content, manage categories (tags) that describe the data, and retrieve category information. Unstructured data serves as knowledge sources that agents use to provide contextual and accurate answers to user questions. Categories are descriptive tags that help agents understand the nature and content of each data source, enabling them to provide more relevant and accurate responses. These APIs enable you to keep your data up-to-date and well-described, ensuring optimal agent performance.
diff --git a/docs/common-workflows/analytics/unstructured-data-api/update-unstructured-data-categories.md b/docs/common-workflows/analytics/unstructured-data-api/update-unstructured-data-categories.md
index 94fd3d61d..fb9486754 100644
--- a/docs/common-workflows/analytics/unstructured-data-api/update-unstructured-data-categories.md
+++ b/docs/common-workflows/analytics/unstructured-data-api/update-unstructured-data-categories.md
@@ -3,7 +3,7 @@ title: Update categories for an unstructured data
description: This page explains how to retrieve categories (tags) for a specific unstructured data item that helps agents better understand and use the data.
---
-
+
This API is used to update the categories for unstructured data. Categories are tags that describe the data within the unstructured data, helping agents better understand the context and content of the data source. By assigning appropriate categories (tags), you enable agents to provide more accurate and contextually relevant answers to user questions.
diff --git a/docs/common-workflows/analytics/unstructured-data-api/update-unstructured-data.md b/docs/common-workflows/analytics/unstructured-data-api/update-unstructured-data.md
index 1d736c44d..8b53c4072 100644
--- a/docs/common-workflows/analytics/unstructured-data-api/update-unstructured-data.md
+++ b/docs/common-workflows/analytics/unstructured-data-api/update-unstructured-data.md
@@ -3,7 +3,7 @@ title: Update unstructured data
description: This page describes how to update unstructured data by re-uploading a file to a specific unstructured data.
---
-
+
This API is used to update unstructured data by re-uploading a file. When you need to refresh or replace the content of existing unstructured data, this endpoint allows you to upload a new file that will replace the existing data. The unstructured data's metadata and configuration are preserved while the underlying data source is updated.
diff --git a/docs/common-workflows/analytics/use-bot-api/ask-bot-instance-question.md b/docs/common-workflows/analytics/use-bot-api/ask-bot-instance-question.md
index d80a6d750..970b46630 100644
--- a/docs/common-workflows/analytics/use-bot-api/ask-bot-instance-question.md
+++ b/docs/common-workflows/analytics/use-bot-api/ask-bot-instance-question.md
@@ -4,13 +4,13 @@ title: Ask the bot instance a question
description: This workflow sample demonstrates how to ask the bot instance a question.
---
-
+
:::caution
The API has been **deprecated** and will be completely unavailable in the near future.
-This deprecation is due to the introduction of our new **Auto Agent** technology, which replaces the legacy Auto Bot system. Legacy Auto Bot support will be gradually discontinued after **Strategy One (September 2025)**.
+This deprecation is due to the introduction of our new **Auto Agent** technology, which replaces the legacy Auto Bot system. Legacy Auto Bot support will be gradually discontinued after **Strategy (September 2025)**.
:::
diff --git a/docs/common-workflows/analytics/use-bot-api/ask-bot-instance-suggested-question.md b/docs/common-workflows/analytics/use-bot-api/ask-bot-instance-suggested-question.md
index 6ff652ba4..4a9b6bd26 100644
--- a/docs/common-workflows/analytics/use-bot-api/ask-bot-instance-suggested-question.md
+++ b/docs/common-workflows/analytics/use-bot-api/ask-bot-instance-suggested-question.md
@@ -4,13 +4,13 @@ title: Ask a bot instance for suggested questions
description: This workflow sample demonstrates how to ask a bot instance for suggested questions
---
-
+
:::caution
The API has been **deprecated** and will be completely unavailable in the near future.
-The API is deprecated due to the introduction of Strategy's new **Auto Agent** technology, which replaces the legacy Auto Bot system. Legacy Auto Bot support will be gradually discontinued after **Strategy One (September 2025)**.
+The API is deprecated due to the introduction of Strategy's new **Auto Agent** technology, which replaces the legacy Auto Bot system. Legacy Auto Bot support will be gradually discontinued after **Strategy (September 2025)**.
:::
diff --git a/docs/common-workflows/analytics/use-bot-api/create-a-bot-instance.md b/docs/common-workflows/analytics/use-bot-api/create-a-bot-instance.md
index 89eed1771..e5b71e6e9 100644
--- a/docs/common-workflows/analytics/use-bot-api/create-a-bot-instance.md
+++ b/docs/common-workflows/analytics/use-bot-api/create-a-bot-instance.md
@@ -4,13 +4,13 @@ title: Create a bot instance
description: This workflow sample demonstrates how to create a bot instance
---
-
+
:::caution
The API has been **deprecated** and will be completely unavailable in the near future.
-The API is deprecated due to the introduction of Strategy's new **Auto Agent** technology, which replaces the legacy Auto Bot system. Legacy Auto Bot support will be gradually discontinued after **Strategy One (September 2025)**.
+The API is deprecated due to the introduction of Strategy's new **Auto Agent** technology, which replaces the legacy Auto Bot system. Legacy Auto Bot support will be gradually discontinued after **Strategy (September 2025)**.
:::
diff --git a/docs/common-workflows/analytics/use-bot-api/delete-a-bot-instance.md b/docs/common-workflows/analytics/use-bot-api/delete-a-bot-instance.md
index 4eff7d8f3..d06b45fad 100644
--- a/docs/common-workflows/analytics/use-bot-api/delete-a-bot-instance.md
+++ b/docs/common-workflows/analytics/use-bot-api/delete-a-bot-instance.md
@@ -4,13 +4,13 @@ title: Delete a bot instance
description: This workflow sample demonstrates how to delete a bot instance
---
-
+
:::caution
The API has been **deprecated** and will be completely unavailable in the near future.
-The API is deprecated due to the introduction of Strategy's new **Auto Agent** technology, which replaces the legacy Auto Bot system. Legacy Auto Bot support will be gradually discontinued after **Strategy One (September 2025)**.
+The API is deprecated due to the introduction of Strategy's new **Auto Agent** technology, which replaces the legacy Auto Bot system. Legacy Auto Bot support will be gradually discontinued after **Strategy (September 2025)**.
:::
diff --git a/docs/common-workflows/analytics/use-bot-api/get-a-bot-question.md b/docs/common-workflows/analytics/use-bot-api/get-a-bot-question.md
index 7e375cd3d..3690c10ea 100644
--- a/docs/common-workflows/analytics/use-bot-api/get-a-bot-question.md
+++ b/docs/common-workflows/analytics/use-bot-api/get-a-bot-question.md
@@ -4,7 +4,7 @@ title: Get a bot's question
description: This workflow sample demonstrates how to get a chat bot's question.
---
-
+
This workflow sample demonstrates how to get a chat bot's question.
diff --git a/docs/common-workflows/analytics/use-bot-api/get-bot-configuration.md b/docs/common-workflows/analytics/use-bot-api/get-bot-configuration.md
index 1d94d703a..ec647277d 100644
--- a/docs/common-workflows/analytics/use-bot-api/get-bot-configuration.md
+++ b/docs/common-workflows/analytics/use-bot-api/get-bot-configuration.md
@@ -4,7 +4,7 @@ title: Get a chat bot's configuration
description: This workflow sample demonstrates how to get a chat bot's configuration.
---
-
+
This workflow sample demonstrates how to get a chat bot's configuration.
diff --git a/docs/common-workflows/analytics/use-bot-api/get-bot-question-list.md b/docs/common-workflows/analytics/use-bot-api/get-bot-question-list.md
index b955e9b1b..05d8343e8 100644
--- a/docs/common-workflows/analytics/use-bot-api/get-bot-question-list.md
+++ b/docs/common-workflows/analytics/use-bot-api/get-bot-question-list.md
@@ -4,7 +4,7 @@ title: Get a bot's question list
description: This workflow sample demonstrates how to get a chat bot's question list.
---
-
+
This workflow sample demonstrates how to get a chat bot's question list.
diff --git a/docs/common-workflows/analytics/use-bot-api/use-bot-api.md b/docs/common-workflows/analytics/use-bot-api/use-bot-api.md
index 7955c68ae..38801a0d6 100644
--- a/docs/common-workflows/analytics/use-bot-api/use-bot-api.md
+++ b/docs/common-workflows/analytics/use-bot-api/use-bot-api.md
@@ -3,7 +3,7 @@ title: Bot APIs
description: This page contains a summary of REST APIs for the "bots" endpoint. You can use REST API requests to consume the chat bots.
---
-
+
:::caution
The following Bot APIs have been **deprecated** and will be completely unavailable in the near future.
@@ -13,7 +13,7 @@ The following Bot APIs have been **deprecated** and will be completely unavailab
- [Ask a bot question](./ask-bot-instance-question.md)
- [Delete a bot instance](./delete-a-bot-instance.md)
-The API is deprecated due to the introduction of Strategy's new **Auto Agent** technology, which replaces the legacy Auto Bot system. Legacy Auto Bot support will be gradually discontinued after **Strategy One (September 2025)**.
+The API is deprecated due to the introduction of Strategy's new **Auto Agent** technology, which replaces the legacy Auto Bot system. Legacy Auto Bot support will be gradually discontinued after **Strategy (September 2025)**.
:::
diff --git a/docs/common-workflows/modeling/manage-scope-filter-objects/create-a-scope-filter-object.md b/docs/common-workflows/modeling/manage-scope-filter-objects/create-a-scope-filter-object.md
index a8ea95743..a1f851703 100644
--- a/docs/common-workflows/modeling/manage-scope-filter-objects/create-a-scope-filter-object.md
+++ b/docs/common-workflows/modeling/manage-scope-filter-objects/create-a-scope-filter-object.md
@@ -4,7 +4,7 @@ sidebar_label: Create a scope filter object
description: This workflow sample demonstrates how to create a new scope filter object using the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/modeling/manage-scope-filter-objects/manage-scope-filter-objects.md b/docs/common-workflows/modeling/manage-scope-filter-objects/manage-scope-filter-objects.md
index 5827b8fcf..c4331be84 100644
--- a/docs/common-workflows/modeling/manage-scope-filter-objects/manage-scope-filter-objects.md
+++ b/docs/common-workflows/modeling/manage-scope-filter-objects/manage-scope-filter-objects.md
@@ -3,7 +3,7 @@ title: Manage scope filter objects
description: You can use REST API requests to retrieve, create, and update scope filter objects using the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/modeling/manage-scope-filter-objects/retrieve-a-scope-filter-definition-within-a-changeset.md b/docs/common-workflows/modeling/manage-scope-filter-objects/retrieve-a-scope-filter-definition-within-a-changeset.md
index 45a6e5d10..86ab6f863 100644
--- a/docs/common-workflows/modeling/manage-scope-filter-objects/retrieve-a-scope-filter-definition-within-a-changeset.md
+++ b/docs/common-workflows/modeling/manage-scope-filter-objects/retrieve-a-scope-filter-definition-within-a-changeset.md
@@ -4,7 +4,7 @@ sidebar_label: Retrieve a scope filter's definition within a changeset
description: This workflow sample demonstrates how to retrieve a scope filter's definition within a changeset.
---
-
+
:::tip
diff --git a/docs/common-workflows/modeling/manage-scope-filter-objects/retrieve-a-scope-filter-definition.md b/docs/common-workflows/modeling/manage-scope-filter-objects/retrieve-a-scope-filter-definition.md
index 10d958caf..0a4de1abe 100644
--- a/docs/common-workflows/modeling/manage-scope-filter-objects/retrieve-a-scope-filter-definition.md
+++ b/docs/common-workflows/modeling/manage-scope-filter-objects/retrieve-a-scope-filter-definition.md
@@ -4,7 +4,7 @@ sidebar_label: Retrieve a scope filter's definition
description: This workflow sample demonstrates how to retrieve a scope filter's definition.
---
-
+
:::tip
diff --git a/docs/common-workflows/modeling/manage-scope-filter-objects/update-a-scope-filter-definition.md b/docs/common-workflows/modeling/manage-scope-filter-objects/update-a-scope-filter-definition.md
index d247a42b1..2675eeea7 100644
--- a/docs/common-workflows/modeling/manage-scope-filter-objects/update-a-scope-filter-definition.md
+++ b/docs/common-workflows/modeling/manage-scope-filter-objects/update-a-scope-filter-definition.md
@@ -4,7 +4,7 @@ sidebar_label: Update a scope filter's definition
description: This workflow sample demonstrates how to update a scope filter's definition using the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/modeling/manage-system-hierarchy/manage-system-hierarchy.md b/docs/common-workflows/modeling/manage-system-hierarchy/manage-system-hierarchy.md
index 4c92ca940..e014d6cd3 100644
--- a/docs/common-workflows/modeling/manage-system-hierarchy/manage-system-hierarchy.md
+++ b/docs/common-workflows/modeling/manage-system-hierarchy/manage-system-hierarchy.md
@@ -3,7 +3,7 @@ title: Manage the system hierarchy
description: You can use REST API requests to manage the system hierarchy.
---
-
+
:::tip
diff --git a/docs/common-workflows/modeling/manage-system-hierarchy/retrieve-all-the-relationships-in-the-system-hierarchy.md b/docs/common-workflows/modeling/manage-system-hierarchy/retrieve-all-the-relationships-in-the-system-hierarchy.md
index c29bc88f0..7051a7627 100644
--- a/docs/common-workflows/modeling/manage-system-hierarchy/retrieve-all-the-relationships-in-the-system-hierarchy.md
+++ b/docs/common-workflows/modeling/manage-system-hierarchy/retrieve-all-the-relationships-in-the-system-hierarchy.md
@@ -3,7 +3,7 @@ title: Retrieve all relationships stored in the system hierarchy
description: This workflow demonstrates how to retrieve all the relationships stored in the system hierarchy using REST API.
---
-
+
This workflow sample demonstrates how to retrieve all relationships stored in the system hierarchy using the REST API with and without a changeset.
diff --git a/docs/common-workflows/mosaic/end-to-end/create-a-data-model-from-scratch.md b/docs/common-workflows/mosaic/end-to-end/create-a-data-model-from-scratch.md
index f5055a487..2f78952d1 100644
--- a/docs/common-workflows/mosaic/end-to-end/create-a-data-model-from-scratch.md
+++ b/docs/common-workflows/mosaic/end-to-end/create-a-data-model-from-scratch.md
@@ -3,7 +3,7 @@ title: Create a data model from scratch
description: This workflow demonstrates how to create a data model from scratch using the REST API.
---
-
+
This workflow sample demonstrates how to create a data model from scratch using the REST API.
diff --git a/docs/common-workflows/mosaic/end-to-end/edit-an-existing-data-model.md b/docs/common-workflows/mosaic/end-to-end/edit-an-existing-data-model.md
index 100501c04..c7f9fd737 100644
--- a/docs/common-workflows/mosaic/end-to-end/edit-an-existing-data-model.md
+++ b/docs/common-workflows/mosaic/end-to-end/edit-an-existing-data-model.md
@@ -3,7 +3,7 @@ title: Edit an existing data model
description: This workflow demonstrates how to edit an existing data model using the REST API.
---
-
+
This workflow sample demonstrates how to edit an existing data model using the REST API.
diff --git a/docs/common-workflows/mosaic/end-to-end/end-to-end.md b/docs/common-workflows/mosaic/end-to-end/end-to-end.md
index 94fcb904c..7f622339b 100644
--- a/docs/common-workflows/mosaic/end-to-end/end-to-end.md
+++ b/docs/common-workflows/mosaic/end-to-end/end-to-end.md
@@ -3,7 +3,7 @@ title: Data model end-to-end management
description: Use REST APIs to manage data models from end to end.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/create-a-data-model-attribute.md b/docs/common-workflows/mosaic/manage-data-model-attributes/create-a-data-model-attribute.md
index 2ab6ecdc8..add07533e 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/create-a-data-model-attribute.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/create-a-data-model-attribute.md
@@ -4,7 +4,7 @@ sidebar_label: Create a data model attribute
description: This workflow sample demonstrates how to create a data model attribute through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/create-and-update-smart-attributes.md b/docs/common-workflows/mosaic/manage-data-model-attributes/create-and-update-smart-attributes.md
index c7eb16a72..fcc63d6cd 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/create-and-update-smart-attributes.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/create-and-update-smart-attributes.md
@@ -3,7 +3,7 @@ title: Create and update smart attributes
description: This workflow demonstrates how to create and update smart attributes using REST API.
---
-
+
This workflow sample demonstrates how to create and update smart attributes using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/delete-a-data-model-attribute.md b/docs/common-workflows/mosaic/manage-data-model-attributes/delete-a-data-model-attribute.md
index 592f1ea75..61586ea98 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/delete-a-data-model-attribute.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/delete-a-data-model-attribute.md
@@ -4,7 +4,7 @@ sidebar_label: Delete a data model attribute
description: This workflow sample demonstrates how to delete a data model attribute through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/manage-data-model-attributes.md b/docs/common-workflows/mosaic/manage-data-model-attributes/manage-data-model-attributes.md
index 217265a8a..13574afeb 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/manage-data-model-attributes.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/manage-data-model-attributes.md
@@ -3,7 +3,7 @@ title: Manage data model attribute objects
description: You can use REST API requests to retrieve an attribute's elements in a data model.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-an-attributes-elements-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-an-attributes-elements-in-data-model.md
index 1ecb72ef3..841daa688 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-an-attributes-elements-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-an-attributes-elements-in-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Retrieve an attribute's elements in data model
description: This workflow sample demonstrates how to retrieve an attribute's elements in data model.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-an-attributes-relationships-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-an-attributes-relationships-in-data-model.md
index 592c6361c..1780d96d6 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-an-attributes-relationships-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-an-attributes-relationships-in-data-model.md
@@ -3,7 +3,7 @@ title: Retrieve an attribute's relationships in a data model
description: This workflow demonstrates how to retrieve an attribute's relationships in a data model using REST API.
---
-
+
This workflow sample demonstrates how to retrieve an attribute's relationship in a data model with and without a changeset.
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-data-model-attributes.md b/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-data-model-attributes.md
index 269099c51..09245448e 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-data-model-attributes.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-data-model-attributes.md
@@ -3,7 +3,7 @@ title: Retrieve data model attributes
description: This workflow demonstrates how to retrieve data model attributes using REST API.
---
-
+
This workflow sample demonstrates how to retrieve one or more data model attributes using the REST API with and without a changeset.
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-smart-attribute-templates-for-an-attribute-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-smart-attribute-templates-for-an-attribute-in-data-model.md
index 42709b928..70fbd4666 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-smart-attribute-templates-for-an-attribute-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-smart-attribute-templates-for-an-attribute-in-data-model.md
@@ -6,7 +6,7 @@ description:
model.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-smart-attributes-for-an-attribute-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-smart-attributes-for-an-attribute-in-data-model.md
index af71c8008..eff85c3f6 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-smart-attributes-for-an-attribute-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/retrieve-smart-attributes-for-an-attribute-in-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Retrieve smart attributes for an attribute in a data model
description: This workflow sample demonstrates how to retrieve smart attributes for an attribute in a data model.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/update-a-data-model-attribute.md b/docs/common-workflows/mosaic/manage-data-model-attributes/update-a-data-model-attribute.md
index 781efa072..14288dc43 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/update-a-data-model-attribute.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/update-a-data-model-attribute.md
@@ -4,7 +4,7 @@ sidebar_label: Update a data model attribute
description: This workflow sample demonstrates how to update a data model attribute through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-attributes/update-a-data-model-attributes-relationships.md b/docs/common-workflows/mosaic/manage-data-model-attributes/update-a-data-model-attributes-relationships.md
index 38508f1dc..8c3ec3265 100644
--- a/docs/common-workflows/mosaic/manage-data-model-attributes/update-a-data-model-attributes-relationships.md
+++ b/docs/common-workflows/mosaic/manage-data-model-attributes/update-a-data-model-attributes-relationships.md
@@ -4,7 +4,7 @@ sidebar_label: Update a data model attribute's relationships
description: This workflow sample demonstrates how to update a data model attribute's relationships through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-base-metrics/create-a-data-model-base-metric.md b/docs/common-workflows/mosaic/manage-data-model-base-metrics/create-a-data-model-base-metric.md
index caa04241e..d9d90588f 100644
--- a/docs/common-workflows/mosaic/manage-data-model-base-metrics/create-a-data-model-base-metric.md
+++ b/docs/common-workflows/mosaic/manage-data-model-base-metrics/create-a-data-model-base-metric.md
@@ -4,7 +4,7 @@ sidebar_label: Create a data model base metric
description: This workflow sample demonstrates how to create a data model base metric through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-base-metrics/delete-a-data-model-base-metric.md b/docs/common-workflows/mosaic/manage-data-model-base-metrics/delete-a-data-model-base-metric.md
index b56071c1b..95b817881 100644
--- a/docs/common-workflows/mosaic/manage-data-model-base-metrics/delete-a-data-model-base-metric.md
+++ b/docs/common-workflows/mosaic/manage-data-model-base-metrics/delete-a-data-model-base-metric.md
@@ -4,7 +4,7 @@ sidebar_label: Delete a data model base metric
description: This workflow sample demonstrates how to delete a data model base metric through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-base-metrics/manage-data-model-base-metrics.md b/docs/common-workflows/mosaic/manage-data-model-base-metrics/manage-data-model-base-metrics.md
index 606eb987f..e3097a9c5 100644
--- a/docs/common-workflows/mosaic/manage-data-model-base-metrics/manage-data-model-base-metrics.md
+++ b/docs/common-workflows/mosaic/manage-data-model-base-metrics/manage-data-model-base-metrics.md
@@ -3,7 +3,7 @@ title: Manage data model base metrics
description: You can use REST API requests to manage data model base metrics.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-base-metrics/retrieve-data-model-base-metrics.md b/docs/common-workflows/mosaic/manage-data-model-base-metrics/retrieve-data-model-base-metrics.md
index 62fb5f77a..706c45e98 100644
--- a/docs/common-workflows/mosaic/manage-data-model-base-metrics/retrieve-data-model-base-metrics.md
+++ b/docs/common-workflows/mosaic/manage-data-model-base-metrics/retrieve-data-model-base-metrics.md
@@ -3,7 +3,7 @@ title: Retrieve data model base metrics
description: This workflow demonstrates how to retrieve data model base metrics using REST API.
---
-
+
This workflow sample demonstrates how to retrieve one or more data model base metrics using the REST API with and without a changeset.
diff --git a/docs/common-workflows/mosaic/manage-data-model-base-metrics/update-a-data-model-base-metric.md b/docs/common-workflows/mosaic/manage-data-model-base-metrics/update-a-data-model-base-metric.md
index c930d7c70..3156006a5 100644
--- a/docs/common-workflows/mosaic/manage-data-model-base-metrics/update-a-data-model-base-metric.md
+++ b/docs/common-workflows/mosaic/manage-data-model-base-metrics/update-a-data-model-base-metric.md
@@ -4,7 +4,7 @@ sidebar_label: Update a data model base metric
description: This workflow sample demonstrates how to update a data model base metric through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-external-data-models/create-a-data-model-external-data-model.md b/docs/common-workflows/mosaic/manage-data-model-external-data-models/create-a-data-model-external-data-model.md
index 47f77f1d6..5e1738f89 100644
--- a/docs/common-workflows/mosaic/manage-data-model-external-data-models/create-a-data-model-external-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-external-data-models/create-a-data-model-external-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Create an external data model in a data model
description: This workflow sample demonstrates how to create an external data model in a data model through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-external-data-models/delete-a-data-model-external-data-model.md b/docs/common-workflows/mosaic/manage-data-model-external-data-models/delete-a-data-model-external-data-model.md
index 0f276149e..a70a0dd45 100644
--- a/docs/common-workflows/mosaic/manage-data-model-external-data-models/delete-a-data-model-external-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-external-data-models/delete-a-data-model-external-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Delete a data model external data model
description: This workflow sample demonstrates how to delete a data model external data model through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-external-data-models/manage-data-model-external-data-models.md b/docs/common-workflows/mosaic/manage-data-model-external-data-models/manage-data-model-external-data-models.md
index cb33b8428..cb34827b8 100644
--- a/docs/common-workflows/mosaic/manage-data-model-external-data-models/manage-data-model-external-data-models.md
+++ b/docs/common-workflows/mosaic/manage-data-model-external-data-models/manage-data-model-external-data-models.md
@@ -3,7 +3,7 @@ title: Manage data model external data models
description: You can use REST API requests to manage data model external data models.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-external-data-models/refresh-a-data-model-external-data-models.md b/docs/common-workflows/mosaic/manage-data-model-external-data-models/refresh-a-data-model-external-data-models.md
index dd4ec67ce..e7889feeb 100644
--- a/docs/common-workflows/mosaic/manage-data-model-external-data-models/refresh-a-data-model-external-data-models.md
+++ b/docs/common-workflows/mosaic/manage-data-model-external-data-models/refresh-a-data-model-external-data-models.md
@@ -3,7 +3,7 @@ title: Refresh data model external data models
description: This workflow demonstrates how to refresh data model external data models using REST API.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-external-data-models/retrieve-data-model-external-data-models.md b/docs/common-workflows/mosaic/manage-data-model-external-data-models/retrieve-data-model-external-data-models.md
index 9e4b1d253..1d45302ae 100644
--- a/docs/common-workflows/mosaic/manage-data-model-external-data-models/retrieve-data-model-external-data-models.md
+++ b/docs/common-workflows/mosaic/manage-data-model-external-data-models/retrieve-data-model-external-data-models.md
@@ -3,7 +3,7 @@ title: Retrieve data model external data models
description: This workflow demonstrates how to retrieve data model external data models using REST API.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-external-data-models/update-a-data-model-external-data-model.md b/docs/common-workflows/mosaic/manage-data-model-external-data-models/update-a-data-model-external-data-model.md
index 0078c976c..ddb16f911 100644
--- a/docs/common-workflows/mosaic/manage-data-model-external-data-models/update-a-data-model-external-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-external-data-models/update-a-data-model-external-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Update a data model external data model
description: This workflow sample demonstrates how to update a data model external data model through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-external-data-models/update-a-data-model-external-data-models-object.md b/docs/common-workflows/mosaic/manage-data-model-external-data-models/update-a-data-model-external-data-models-object.md
index f24b0e08e..deee23444 100644
--- a/docs/common-workflows/mosaic/manage-data-model-external-data-models/update-a-data-model-external-data-models-object.md
+++ b/docs/common-workflows/mosaic/manage-data-model-external-data-models/update-a-data-model-external-data-models-object.md
@@ -4,7 +4,7 @@ sidebar_label: Update a data model external data model's object
description: This workflow sample demonstrates how to update a data model external data model's object through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-folders/create-update-and-delete-a-folder.md b/docs/common-workflows/mosaic/manage-data-model-folders/create-update-and-delete-a-folder.md
index 7834ced71..f4cbe3b9b 100644
--- a/docs/common-workflows/mosaic/manage-data-model-folders/create-update-and-delete-a-folder.md
+++ b/docs/common-workflows/mosaic/manage-data-model-folders/create-update-and-delete-a-folder.md
@@ -3,7 +3,7 @@ title: Create, update, and delete a folder
description: This workflow demonstrates how to create, update, and delete a data model folder using REST API.
---
-
+
This workflow sample demonstrates how to create, update, and delete a data model folder using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-data-model-folders/manage-data-model-folders.md b/docs/common-workflows/mosaic/manage-data-model-folders/manage-data-model-folders.md
index 485a4d255..9a0ef5e0d 100644
--- a/docs/common-workflows/mosaic/manage-data-model-folders/manage-data-model-folders.md
+++ b/docs/common-workflows/mosaic/manage-data-model-folders/manage-data-model-folders.md
@@ -3,7 +3,7 @@ title: Manage data model folders
description: You can use REST API requests to manage data model folders.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-folders/retrieve-data-model-folders.md b/docs/common-workflows/mosaic/manage-data-model-folders/retrieve-data-model-folders.md
index 7e9699a85..61d590eb2 100644
--- a/docs/common-workflows/mosaic/manage-data-model-folders/retrieve-data-model-folders.md
+++ b/docs/common-workflows/mosaic/manage-data-model-folders/retrieve-data-model-folders.md
@@ -3,7 +3,7 @@ title: Retrieve data model folders
description: This workflow demonstrates how to retrieve data model folders using REST API.
---
-
+
This workflow sample demonstrates how to retrieve one or more data model folders using the REST API with and without a changeset.
diff --git a/docs/common-workflows/mosaic/manage-data-model-hierarchy/manage-data-model-hierarchy.md b/docs/common-workflows/mosaic/manage-data-model-hierarchy/manage-data-model-hierarchy.md
index 218b970d8..580c75be4 100644
--- a/docs/common-workflows/mosaic/manage-data-model-hierarchy/manage-data-model-hierarchy.md
+++ b/docs/common-workflows/mosaic/manage-data-model-hierarchy/manage-data-model-hierarchy.md
@@ -3,7 +3,7 @@ title: Manage data model hierarchy
description: You can use REST API requests to manage data model hierarchy.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-hierarchy/retrieve-a-data-model-hierarchy.md b/docs/common-workflows/mosaic/manage-data-model-hierarchy/retrieve-a-data-model-hierarchy.md
index 3af2e0e29..42413e7f7 100644
--- a/docs/common-workflows/mosaic/manage-data-model-hierarchy/retrieve-a-data-model-hierarchy.md
+++ b/docs/common-workflows/mosaic/manage-data-model-hierarchy/retrieve-a-data-model-hierarchy.md
@@ -3,7 +3,7 @@ title: Retrieve a data model hierarchy
description: This workflow demonstrates how to retrieve a data model hierarchy's definition using REST API.
---
-
+
This workflow sample demonstrates how to retrieve a data model hierarchy's definition using the REST API with and without a changeset.
diff --git a/docs/common-workflows/mosaic/manage-data-model-links/create-a-data-model-link.md b/docs/common-workflows/mosaic/manage-data-model-links/create-a-data-model-link.md
index 744683138..eba6ea6af 100644
--- a/docs/common-workflows/mosaic/manage-data-model-links/create-a-data-model-link.md
+++ b/docs/common-workflows/mosaic/manage-data-model-links/create-a-data-model-link.md
@@ -4,7 +4,7 @@ sidebar_label: Create a data model link
description: This workflow sample demonstrates how to create a data model link through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-links/manage-data-model-links.md b/docs/common-workflows/mosaic/manage-data-model-links/manage-data-model-links.md
index ed6575a78..2de2e7f09 100644
--- a/docs/common-workflows/mosaic/manage-data-model-links/manage-data-model-links.md
+++ b/docs/common-workflows/mosaic/manage-data-model-links/manage-data-model-links.md
@@ -3,7 +3,7 @@ title: Manage data model links
description: You can use REST API requests to manage data model links.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-links/retrieve-data-model-links.md b/docs/common-workflows/mosaic/manage-data-model-links/retrieve-data-model-links.md
index fa5d3600e..1dc77717c 100644
--- a/docs/common-workflows/mosaic/manage-data-model-links/retrieve-data-model-links.md
+++ b/docs/common-workflows/mosaic/manage-data-model-links/retrieve-data-model-links.md
@@ -3,7 +3,7 @@ title: Retrieve data model links
description: This workflow demonstrates how to retrieve data model links using REST API.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-links/update-data-model-links.md b/docs/common-workflows/mosaic/manage-data-model-links/update-data-model-links.md
index 115846c55..f001e1828 100644
--- a/docs/common-workflows/mosaic/manage-data-model-links/update-data-model-links.md
+++ b/docs/common-workflows/mosaic/manage-data-model-links/update-data-model-links.md
@@ -4,7 +4,7 @@ sidebar_label: Update data model links
description: This workflow sample demonstrates how to update data model links through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-metrics/create-and-update-a-metric-embedded-object.md b/docs/common-workflows/mosaic/manage-data-model-metrics/create-and-update-a-metric-embedded-object.md
index ae3692f63..26a17ffd6 100644
--- a/docs/common-workflows/mosaic/manage-data-model-metrics/create-and-update-a-metric-embedded-object.md
+++ b/docs/common-workflows/mosaic/manage-data-model-metrics/create-and-update-a-metric-embedded-object.md
@@ -3,7 +3,7 @@ title: Create and update a metric embedded object
description: This workflow demonstrates how to create and update a metric embedded object using REST API.
---
-
+
This workflow sample demonstrates how to create and update a metric embedded object using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-data-model-metrics/create-update-and-delete-a-metric.md b/docs/common-workflows/mosaic/manage-data-model-metrics/create-update-and-delete-a-metric.md
index 5a0464b9d..100c16f3e 100644
--- a/docs/common-workflows/mosaic/manage-data-model-metrics/create-update-and-delete-a-metric.md
+++ b/docs/common-workflows/mosaic/manage-data-model-metrics/create-update-and-delete-a-metric.md
@@ -3,7 +3,7 @@ title: Create, update, and delete a metric
description: This workflow demonstrates how to create, update, and delete a metric using REST API.
---
-
+
This workflow sample demonstrates how to create, update, and delete a metric in the data model using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-data-model-metrics/manage-data-model-metrics.md b/docs/common-workflows/mosaic/manage-data-model-metrics/manage-data-model-metrics.md
index d64433aad..05fe4ecfc 100644
--- a/docs/common-workflows/mosaic/manage-data-model-metrics/manage-data-model-metrics.md
+++ b/docs/common-workflows/mosaic/manage-data-model-metrics/manage-data-model-metrics.md
@@ -3,7 +3,7 @@ title: Manage data model metrics
description: You can use REST API requests to manage data model metrics.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-metrics/retrieve-a-data-model-metric-embedded-object.md b/docs/common-workflows/mosaic/manage-data-model-metrics/retrieve-a-data-model-metric-embedded-object.md
index ae898cca2..662ca0a6d 100644
--- a/docs/common-workflows/mosaic/manage-data-model-metrics/retrieve-a-data-model-metric-embedded-object.md
+++ b/docs/common-workflows/mosaic/manage-data-model-metrics/retrieve-a-data-model-metric-embedded-object.md
@@ -3,7 +3,7 @@ title: Retrieve a data model metric embedded object
description: This workflow demonstrates how to retrieve a data model metric embedded object using REST API.
---
-
+
This workflow sample demonstrates how to retrieve a data model metric embedded object using the REST API with and without a changeset.
diff --git a/docs/common-workflows/mosaic/manage-data-model-metrics/retrieve-data-model-metrics.md b/docs/common-workflows/mosaic/manage-data-model-metrics/retrieve-data-model-metrics.md
index 42bf597b8..4180e2177 100644
--- a/docs/common-workflows/mosaic/manage-data-model-metrics/retrieve-data-model-metrics.md
+++ b/docs/common-workflows/mosaic/manage-data-model-metrics/retrieve-data-model-metrics.md
@@ -3,7 +3,7 @@ title: Retrieve data model metrics
description: This workflow demonstrates how to retrieve data model metrics using REST API.
---
-
+
This workflow demonstrates how to retrieve data model metrics and their advanced properties using the REST API, with and without a changeset.
diff --git a/docs/common-workflows/mosaic/manage-data-model-object-acl/manage-data-model-object-acl.md b/docs/common-workflows/mosaic/manage-data-model-object-acl/manage-data-model-object-acl.md
index 84c42a9eb..6b3e55f3b 100644
--- a/docs/common-workflows/mosaic/manage-data-model-object-acl/manage-data-model-object-acl.md
+++ b/docs/common-workflows/mosaic/manage-data-model-object-acl/manage-data-model-object-acl.md
@@ -3,7 +3,7 @@ title: Manage data model object acl
description: You can use REST API requests to retrieve and update acl of objects in data model through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-object-acl/retrieve-a-data-model-object-acl.md b/docs/common-workflows/mosaic/manage-data-model-object-acl/retrieve-a-data-model-object-acl.md
index 760ef4426..89ad42e42 100644
--- a/docs/common-workflows/mosaic/manage-data-model-object-acl/retrieve-a-data-model-object-acl.md
+++ b/docs/common-workflows/mosaic/manage-data-model-object-acl/retrieve-a-data-model-object-acl.md
@@ -3,7 +3,7 @@ title: Retrieve acl of an object inside a data model
description: You can use REST API requests to retrieve acl of an object inside a data model.
---
-
+
This workflow sample demonstrates how to retrieve the object ACL inside a data model, using the REST API with and without a changeset.
diff --git a/docs/common-workflows/mosaic/manage-data-model-object-acl/update-a-data-model-object-acl.md b/docs/common-workflows/mosaic/manage-data-model-object-acl/update-a-data-model-object-acl.md
index 16041283a..d966f33ad 100644
--- a/docs/common-workflows/mosaic/manage-data-model-object-acl/update-a-data-model-object-acl.md
+++ b/docs/common-workflows/mosaic/manage-data-model-object-acl/update-a-data-model-object-acl.md
@@ -3,7 +3,7 @@ title: Update acl of an object inside a data model
description: You can use REST API requests to update acl of an object inside a data model.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-object-translations/manage-data-model-object-translations.md b/docs/common-workflows/mosaic/manage-data-model-object-translations/manage-data-model-object-translations.md
index 037a93c00..eb213cadd 100644
--- a/docs/common-workflows/mosaic/manage-data-model-object-translations/manage-data-model-object-translations.md
+++ b/docs/common-workflows/mosaic/manage-data-model-object-translations/manage-data-model-object-translations.md
@@ -3,7 +3,7 @@ title: Manage data model object translations
description: You can use REST API requests to retrieve and update object translations in the data model through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-object-translations/retrieve-a-data-model-object-translations.md b/docs/common-workflows/mosaic/manage-data-model-object-translations/retrieve-a-data-model-object-translations.md
index cc81bcd4f..b1b45f723 100644
--- a/docs/common-workflows/mosaic/manage-data-model-object-translations/retrieve-a-data-model-object-translations.md
+++ b/docs/common-workflows/mosaic/manage-data-model-object-translations/retrieve-a-data-model-object-translations.md
@@ -3,7 +3,7 @@ title: Retrieve object translations inside a data model
description: You can use REST API requests to retrieve object translations inside a data model.
---
-
+
This workflow sample demonstrates how to retrieve object translations inside a data model, using the REST API with and without a changeset.
diff --git a/docs/common-workflows/mosaic/manage-data-model-object-translations/update-a-data-model-object-translations.md b/docs/common-workflows/mosaic/manage-data-model-object-translations/update-a-data-model-object-translations.md
index 791f6f5f0..617433c2f 100644
--- a/docs/common-workflows/mosaic/manage-data-model-object-translations/update-a-data-model-object-translations.md
+++ b/docs/common-workflows/mosaic/manage-data-model-object-translations/update-a-data-model-object-translations.md
@@ -3,7 +3,7 @@ title: Update object translations inside a data model
description: You can use REST API requests to update object translations inside a data model.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-security-filters/create-a-security-filter-object-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-security-filters/create-a-security-filter-object-in-data-model.md
index 2a59334b0..b6895c279 100644
--- a/docs/common-workflows/mosaic/manage-data-model-security-filters/create-a-security-filter-object-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-security-filters/create-a-security-filter-object-in-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Create a security filter object in data model
description: This workflow sample demonstrates how to create a security filter object in data model through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-security-filters/delete-a-security-filter-object-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-security-filters/delete-a-security-filter-object-in-data-model.md
index c1713a912..23f622336 100644
--- a/docs/common-workflows/mosaic/manage-data-model-security-filters/delete-a-security-filter-object-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-security-filters/delete-a-security-filter-object-in-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Delete a security filter definition in data model
description: This workflow sample demonstrates how to delete a security filter object in data model through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-security-filters/manage-data-model-security-filters.md b/docs/common-workflows/mosaic/manage-data-model-security-filters/manage-data-model-security-filters.md
index 2dac4d3f3..90a6ea45a 100644
--- a/docs/common-workflows/mosaic/manage-data-model-security-filters/manage-data-model-security-filters.md
+++ b/docs/common-workflows/mosaic/manage-data-model-security-filters/manage-data-model-security-filters.md
@@ -3,7 +3,7 @@ title: Manage data model security filter objects
description: You can use REST API requests to retrieve, create and update security filter objects in data model through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-security-filters/modify-a-security-filters-member-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-security-filters/modify-a-security-filters-member-in-data-model.md
index 33a31b458..0dcbf4ec6 100644
--- a/docs/common-workflows/mosaic/manage-data-model-security-filters/modify-a-security-filters-member-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-security-filters/modify-a-security-filters-member-in-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Modify a security filter's member in data model
description: This workflow sample demonstrates how to modify the users and user groups that a specified security filter in data model is applied to.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-a-security-filter-definition-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-a-security-filter-definition-in-data-model.md
index 3a69b5c92..87d6e75c6 100644
--- a/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-a-security-filter-definition-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-a-security-filter-definition-in-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Retrieve a security filter definition in data model
description: This workflow sample demonstrates how to retrieve a security filter's definition in data model through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-a-security-filters-member-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-a-security-filters-member-in-data-model.md
index 5b88d1966..7677c4d2c 100644
--- a/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-a-security-filters-member-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-a-security-filters-member-in-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Retrieve a security filter's member in data model
description: This workflow sample demonstrates how to get the users and user groups that the specified security filter in data model is applied to.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-all-security-filters-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-all-security-filters-in-data-model.md
index 38f8aa595..3af9cbf83 100644
--- a/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-all-security-filters-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-security-filters/retrieve-all-security-filters-in-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Retrieve all security filters in data model
description: This topic covers several workflows for retrieving all security filters in data model.
---
-
+
This topic covers several workflows to retrieve all security filters in a data model.
diff --git a/docs/common-workflows/mosaic/manage-data-model-security-filters/update-a-security-filter-object-in-data-model.md b/docs/common-workflows/mosaic/manage-data-model-security-filters/update-a-security-filter-object-in-data-model.md
index da745b02e..29834123e 100644
--- a/docs/common-workflows/mosaic/manage-data-model-security-filters/update-a-security-filter-object-in-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-model-security-filters/update-a-security-filter-object-in-data-model.md
@@ -4,7 +4,7 @@ sidebar_label: Update a security filter object in data model
description: This workflow sample demonstrates how to update a security filter object in data model through the Modeling service.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-tables/create-update-and-delete-a-table.md b/docs/common-workflows/mosaic/manage-data-model-tables/create-update-and-delete-a-table.md
index 96caeac42..ec8d7192c 100644
--- a/docs/common-workflows/mosaic/manage-data-model-tables/create-update-and-delete-a-table.md
+++ b/docs/common-workflows/mosaic/manage-data-model-tables/create-update-and-delete-a-table.md
@@ -3,7 +3,7 @@ title: Create, update, and delete a table
description: This workflow demonstrates how to create, update, and delete a table using REST API.
---
-
+
This workflow sample demonstrates how to create, update, and delete a table using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-data-model-tables/manage-data-model-tables.md b/docs/common-workflows/mosaic/manage-data-model-tables/manage-data-model-tables.md
index 122ef2ee6..853bcd7c2 100644
--- a/docs/common-workflows/mosaic/manage-data-model-tables/manage-data-model-tables.md
+++ b/docs/common-workflows/mosaic/manage-data-model-tables/manage-data-model-tables.md
@@ -3,7 +3,7 @@ title: Manage data model tables
description: You can use REST API requests to manage data model tables.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-model-tables/retrieve-data-model-tables.md b/docs/common-workflows/mosaic/manage-data-model-tables/retrieve-data-model-tables.md
index 25f0374ff..454e75b6e 100644
--- a/docs/common-workflows/mosaic/manage-data-model-tables/retrieve-data-model-tables.md
+++ b/docs/common-workflows/mosaic/manage-data-model-tables/retrieve-data-model-tables.md
@@ -3,7 +3,7 @@ title: Retrieve data model tables
description: This workflow demonstrates how to retrieve data model tables using REST API.
---
-
+
This workflow sample demonstrates how to retrieve one or more data model tables using the REST API with and without a changeset.
diff --git a/docs/common-workflows/mosaic/manage-data-models/create-and-update-a-data-model.md b/docs/common-workflows/mosaic/manage-data-models/create-and-update-a-data-model.md
index 743feabdd..091c01208 100644
--- a/docs/common-workflows/mosaic/manage-data-models/create-and-update-a-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-models/create-and-update-a-data-model.md
@@ -3,7 +3,7 @@ title: Create and update a data model
description: This workflow demonstrates how to create and update a data model using REST API.
---
-
+
This workflow sample demonstrates how to create and update a data model using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-data-models/export-a-data-model.md b/docs/common-workflows/mosaic/manage-data-models/export-a-data-model.md
index 9aade5a81..156f288af 100644
--- a/docs/common-workflows/mosaic/manage-data-models/export-a-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-models/export-a-data-model.md
@@ -3,7 +3,7 @@ title: Export a data model
description: This workflow demonstrates how to export a data model to a YAML file using REST API.
---
-
+
This workflow sample demonstrates how to export a data model to a YAML file using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-data-models/manage-data-models.md b/docs/common-workflows/mosaic/manage-data-models/manage-data-models.md
index 3f23c2d9e..8fa9cea0d 100644
--- a/docs/common-workflows/mosaic/manage-data-models/manage-data-models.md
+++ b/docs/common-workflows/mosaic/manage-data-models/manage-data-models.md
@@ -3,7 +3,7 @@ title: Manage data models
description: You can use REST API requests to manage data models.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-data-models/restore-a-data-model.md b/docs/common-workflows/mosaic/manage-data-models/restore-a-data-model.md
index 0b009f465..1e2ed73a1 100644
--- a/docs/common-workflows/mosaic/manage-data-models/restore-a-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-models/restore-a-data-model.md
@@ -3,7 +3,7 @@ title: Restore a data model
description: This workflow demonstrates how to restore a data model from a YAML file using REST API.
---
-
+
This workflow sample demonstrates how to restore a data model from a previously exported YAML file using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-data-models/retrieve-a-data-model.md b/docs/common-workflows/mosaic/manage-data-models/retrieve-a-data-model.md
index 1f1b200be..8fa284a43 100644
--- a/docs/common-workflows/mosaic/manage-data-models/retrieve-a-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-models/retrieve-a-data-model.md
@@ -3,7 +3,7 @@ title: Retrieve a data model
description: This workflow demonstrates how to retrieve a data model using REST API.
---
-
+
This workflow sample demonstrates how to retrieve a data model either with or without the changeset using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-data-models/save-a-data-model-as-a-new-data-model.md b/docs/common-workflows/mosaic/manage-data-models/save-a-data-model-as-a-new-data-model.md
index 79e801367..4787cf979 100644
--- a/docs/common-workflows/mosaic/manage-data-models/save-a-data-model-as-a-new-data-model.md
+++ b/docs/common-workflows/mosaic/manage-data-models/save-a-data-model-as-a-new-data-model.md
@@ -3,7 +3,7 @@ title: Save a data model as a new data model
description: This workflow demonstrates how to save a data model as a new data model using REST API.
---
-
+
This workflow sample demonstrates how to save an existing data model as a new data model using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/create-retrieve-update-and-delete-a-source-table.md b/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/create-retrieve-update-and-delete-a-source-table.md
index 1183b4e35..70f690303 100644
--- a/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/create-retrieve-update-and-delete-a-source-table.md
+++ b/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/create-retrieve-update-and-delete-a-source-table.md
@@ -3,7 +3,7 @@ title: Create, retrieve, update, and delete a source table
description: This workflow demonstrates how to create, retrieve, update, and delete a source table using REST API.
---
-
+
This workflow sample demonstrates how to create, retrieve, update, and delete a source table using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/create-retrieve-update-and-delete-a-wrangle-table.md b/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/create-retrieve-update-and-delete-a-wrangle-table.md
index cadfc3821..0c4803bcc 100644
--- a/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/create-retrieve-update-and-delete-a-wrangle-table.md
+++ b/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/create-retrieve-update-and-delete-a-wrangle-table.md
@@ -3,7 +3,7 @@ title: Create, retrieve, update, and delete a wrangle table
description: This workflow demonstrates how to create, retrieve, update, and delete a wrangle table using REST API.
---
-
+
This workflow sample demonstrates how to create, retrieve, update, and delete a wrangle table using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/manage-workspace-pipeline-tables.md b/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/manage-workspace-pipeline-tables.md
index f408d477c..4b5f00b0b 100644
--- a/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/manage-workspace-pipeline-tables.md
+++ b/docs/common-workflows/mosaic/manage-workspace-pipeline-tables/manage-workspace-pipeline-tables.md
@@ -3,7 +3,7 @@ title: Manage workspace pipeline tables
description: You can use REST API requests to manage workspace pipeline tables.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-workspace-pipelines/create-retrieve-update-and-delete-a-pipeline.md b/docs/common-workflows/mosaic/manage-workspace-pipelines/create-retrieve-update-and-delete-a-pipeline.md
index 96a88593f..dc4caa171 100644
--- a/docs/common-workflows/mosaic/manage-workspace-pipelines/create-retrieve-update-and-delete-a-pipeline.md
+++ b/docs/common-workflows/mosaic/manage-workspace-pipelines/create-retrieve-update-and-delete-a-pipeline.md
@@ -3,7 +3,7 @@ title: Create, retrieve, update, and delete a pipeline
description: This workflow demonstrates how to create, retrieve, update, and delete a pipeline using REST API.
---
-
+
This workflow sample demonstrates how to create, retrieve, update, and delete a pipeline using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-workspace-pipelines/manage-workspace-pipelines.md b/docs/common-workflows/mosaic/manage-workspace-pipelines/manage-workspace-pipelines.md
index ac1533ada..64c324418 100644
--- a/docs/common-workflows/mosaic/manage-workspace-pipelines/manage-workspace-pipelines.md
+++ b/docs/common-workflows/mosaic/manage-workspace-pipelines/manage-workspace-pipelines.md
@@ -3,7 +3,7 @@ title: Manage workspace pipelines
description: You can use REST API requests to manage workspace pipelines.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-workspace-pipelines/refresh-a-pipeline.md b/docs/common-workflows/mosaic/manage-workspace-pipelines/refresh-a-pipeline.md
index 4609deccc..2c6a08a01 100644
--- a/docs/common-workflows/mosaic/manage-workspace-pipelines/refresh-a-pipeline.md
+++ b/docs/common-workflows/mosaic/manage-workspace-pipelines/refresh-a-pipeline.md
@@ -3,7 +3,7 @@ title: Refresh a pipeline
description: This workflow demonstrates how to refresh a pipeline using REST API.
---
-
+
This workflow sample demonstrates how to refresh a pipeline using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-workspaces/create-retrieve-update-and-delete-a-workspace.md b/docs/common-workflows/mosaic/manage-workspaces/create-retrieve-update-and-delete-a-workspace.md
index 6ccfc9b27..56419a539 100644
--- a/docs/common-workflows/mosaic/manage-workspaces/create-retrieve-update-and-delete-a-workspace.md
+++ b/docs/common-workflows/mosaic/manage-workspaces/create-retrieve-update-and-delete-a-workspace.md
@@ -3,7 +3,7 @@ title: Create, retrieve, update, and delete a workspace
description: This workflow demonstrates how to create, retrieve, update, and delete a workspace using REST API.
---
-
+
This workflow sample demonstrates how to create, retrieve, update, and delete a workspace using the REST API.
diff --git a/docs/common-workflows/mosaic/manage-workspaces/manage-workspaces.md b/docs/common-workflows/mosaic/manage-workspaces/manage-workspaces.md
index 8fd3315b1..708aefae2 100644
--- a/docs/common-workflows/mosaic/manage-workspaces/manage-workspaces.md
+++ b/docs/common-workflows/mosaic/manage-workspaces/manage-workspaces.md
@@ -3,7 +3,7 @@ title: Manage workspaces
description: You can use REST API requests to manage workspaces.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/manage-workspaces/restore-a-workspace.md b/docs/common-workflows/mosaic/manage-workspaces/restore-a-workspace.md
index 090da8463..52e4cb0c8 100644
--- a/docs/common-workflows/mosaic/manage-workspaces/restore-a-workspace.md
+++ b/docs/common-workflows/mosaic/manage-workspaces/restore-a-workspace.md
@@ -3,7 +3,7 @@ title: Restore a workspace
description: This workflow demonstrates how to restore a workspace using REST API.
---
-
+
This workflow sample demonstrates how to restore a workspace using the REST API.
diff --git a/docs/common-workflows/mosaic/mosaic.md b/docs/common-workflows/mosaic/mosaic.md
index 5f4351ba0..322dc13ed 100644
--- a/docs/common-workflows/mosaic/mosaic.md
+++ b/docs/common-workflows/mosaic/mosaic.md
@@ -3,7 +3,7 @@ title: Mosaic
description: This section contains workflows that utilize the REST API to handle Mosaic data model related workflows.
---
-
+
Strategy Mosaic Studio is an AI based modeling tool, that streamlines data preparation, modeling, and enrichment, enabling users to transform raw data into actionable insights with ease, efficiency, and accuracy. Almost anyone can utilize Mosaic Studio's AI functionality to easily create Mosaic data models for your business's analysis and reporting needs.
diff --git a/docs/common-workflows/mosaic/publish/manage-data-model-publish.md b/docs/common-workflows/mosaic/publish/manage-data-model-publish.md
index 3e990276a..594b3afc2 100644
--- a/docs/common-workflows/mosaic/publish/manage-data-model-publish.md
+++ b/docs/common-workflows/mosaic/publish/manage-data-model-publish.md
@@ -3,7 +3,7 @@ title: Publish data models
description: You can use REST API requests to publish data models.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/publish/refresh-a-data-model.md b/docs/common-workflows/mosaic/publish/refresh-a-data-model.md
index a1ffcabaa..191d45ffc 100644
--- a/docs/common-workflows/mosaic/publish/refresh-a-data-model.md
+++ b/docs/common-workflows/mosaic/publish/refresh-a-data-model.md
@@ -3,7 +3,7 @@ title: Refresh a data model
description: This workflow demonstrates how to refresh a data model using REST API.
---
-
+
This workflow sample demonstrates how to refresh a data model by creating a data model instance and publish it using the REST API.
diff --git a/docs/common-workflows/mosaic/publish/schedule-refresh-a-data-model.md b/docs/common-workflows/mosaic/publish/schedule-refresh-a-data-model.md
index de480bbb8..77949a777 100644
--- a/docs/common-workflows/mosaic/publish/schedule-refresh-a-data-model.md
+++ b/docs/common-workflows/mosaic/publish/schedule-refresh-a-data-model.md
@@ -3,7 +3,7 @@ title: Schedule refresh a data model
description: This workflow demonstrates how to schedule a refresh for a data model.
---
-
+
This workflow sample demonstrates how to schedule a refresh for a data model using the REST API.
diff --git a/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-from-data-models.md b/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-from-data-models.md
index 226f4d801..4961026af 100644
--- a/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-from-data-models.md
+++ b/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-from-data-models.md
@@ -3,7 +3,7 @@ title: Retrieve data from data models
description: You can use REST API requests to retrieve data from data models.
---
-
+
:::tip
diff --git a/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-model-sql-view.md b/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-model-sql-view.md
index 53a4153b9..a305b4c52 100644
--- a/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-model-sql-view.md
+++ b/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-model-sql-view.md
@@ -3,7 +3,7 @@ title: Retrieve the data model SQL view
description: This workflow demonstrates how to retrieve the data model SQL view.
---
-
+
:::info
diff --git a/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-through-cube-instance.md b/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-through-cube-instance.md
index c0136ace1..4cf166113 100644
--- a/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-through-cube-instance.md
+++ b/docs/common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-through-cube-instance.md
@@ -3,7 +3,7 @@ title: Retrieve data through cube instance
description: This workflow demonstrates how to retrieve data for a data model through cube instance using REST API.
---
-
+
:::info
diff --git a/docs/whats-new.md b/docs/whats-new.md
index 0d576d0fa..3365a05a6 100644
--- a/docs/whats-new.md
+++ b/docs/whats-new.md
@@ -4,21 +4,21 @@ sidebar_label: What's new
Description: What's New in the REST API.
---
-## Strategy ONE (May 2026)
+## Strategy (May 2026)
- [Save a Data Model as a New Data Model](common-workflows/mosaic/manage-data-models/save-a-data-model-as-a-new-data-model.md)
-## Strategy ONE (April 2026)
+## Strategy (April 2026)
- [Export a Data Model](common-workflows/mosaic/manage-data-models/export-a-data-model.md)
- [Restore a Data Model](common-workflows/mosaic/manage-data-models/restore-a-data-model.md)
- [Create unstructured data](common-workflows/analytics/unstructured-data-api/create-unstructured-data.md)
-## Strategy ONE (March 2026)
+## Strategy (March 2026)
- [Unstructured Data APIs](common-workflows/analytics/unstructured-data-api/unstructured-data-api.md)
-## Strategy ONE (January 2026)
+## Strategy (January 2026)
- [Retrieve Data Model External Data Models](common-workflows/mosaic/manage-data-model-external-data-models/retrieve-data-model-external-data-models.md)
- [Create a Data Model External Data Model](common-workflows/mosaic/manage-data-model-external-data-models/create-a-data-model-external-data-model.md)
@@ -30,17 +30,17 @@ Description: What's New in the REST API.
- [Create a Data Model Link](common-workflows/mosaic/manage-data-model-links/create-a-data-model-link.md)
- [Update Data Model Links](common-workflows/mosaic/manage-data-model-links/update-data-model-links.md)
-## Strategy ONE (December 2025)
+## Strategy (December 2025)
- [Retrieve Data through Cube Instance](common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-through-cube-instance.md)
- [Retrieve Data Model SQL View](common-workflows/mosaic/retrieve-data-from-data-models/retrieve-data-model-sql-view.md)
-## Strategy ONE (November 2025)
+## Strategy (November 2025)
- [Retrieve all the Relationships in the System Hierarchy](common-workflows/modeling/manage-system-hierarchy/retrieve-all-the-relationships-in-the-system-hierarchy.md).
- [Manage scope filter objects](common-workflows/modeling/manage-scope-filter-objects/manage-scope-filter-objects.md).
-## Strategy ONE (October 2025)
+## Strategy (October 2025)
- [Create and Update a Data Model](common-workflows/mosaic/manage-data-models/create-and-update-a-data-model.md).
- [Create, Update, and Delete a Folder](common-workflows/mosaic/manage-data-model-folders/create-update-and-delete-a-folder.md).
@@ -66,7 +66,7 @@ Description: What's New in the REST API.
- [Create a Data Model from Scratch](common-workflows/mosaic/end-to-end/create-a-data-model-from-scratch.md).
- [Edit an Existing Data Model](common-workflows/mosaic/end-to-end/edit-an-existing-data-model.md).
-## Strategy ONE (September 2025)
+## Strategy (September 2025)
- [Retrieve a Data Model](common-workflows/mosaic/manage-data-models/retrieve-a-data-model.md).
- [Retrieve Data Model Folders](common-workflows/mosaic/manage-data-model-folders/retrieve-data-model-folders.md).
@@ -83,7 +83,7 @@ Description: What's New in the REST API.
- Rename 'Next-Gen AI' to 'Agent'.
- Merge 'Question with Bot Routing APIs' into 'Agent APIs'.
-## Strategy ONE (August 2025)
+## Strategy (August 2025)
- [Refresh a Data Model](common-workflows/mosaic/publish/refresh-a-data-model.md).
- [Schedule Refresh a Data Model](common-workflows/mosaic/publish/schedule-refresh-a-data-model.md).
@@ -98,29 +98,29 @@ Description: What's New in the REST API.
- [Get ACL of an object in a Data Model](common-workflows/mosaic/manage-data-model-object-acl/retrieve-a-data-model-object-acl.md).
- [Update ACL of an object in a Data Model](common-workflows/mosaic/manage-data-model-object-acl/update-a-data-model-object-acl.md).
-## Strategy ONE (July 2025)
+## Strategy (July 2025)
- [Project duplication across environments](common-workflows/administration/project-duplication/cross-env-project-duplication.md). Duplicate a project across two environments.
- [Get attributes forms and metrics from a specific bot](common-workflows/analytics/auto-bot-api/get-columns.md). Fetch the column information (attributes and metrics) from a specific bot, which can be used for auto-complete functionality in user inputs.
-## Strategy ONE (June 2025)
+## Strategy (June 2025)
- [Auto Agent APIs Image Support](common-workflows/analytics/auto-bot-api/auto-bot-api.md). Request and retrieve images in answer from Auto Agent APIs.
- [Project Duplication](common-workflows/administration/project-duplication/project-duplication.md). Duplicate a project within the same environment.
-## Strategy ONE (March 2025)
+## Strategy (March 2025)
- [Auto Agent APIs](common-workflows/analytics/auto-bot-api/auto-bot-api.md). Ask questions, retrieve answers, get historical chat messages and suggested questions from Auto Agent APIs.
-## MicroStrategy ONE (September 2024)
+## MicroStrategy (September 2024)
- [Managing bookmarks](common-workflows/administration/manage-bookmarks/manage-bookmarks.md). Retrieve, create, update, and delete bookmarks.
-## MicroStrategy ONE (June 2024)
+## MicroStrategy (June 2024)
- [Question with Bot Routing APIs](common-workflows/analytics/auto-bot-api/auto-bot-api.md). Leverage bot routing to ensure user questions are directed to the most appropriate bot with no need to manually switch bots.
-## MicroStrategy ONE (March 2024)
+## MicroStrategy (March 2024)
- Rename 'dossier' into 'dashboard'.
- [Bot APIs](common-workflows/analytics/use-bot-api/use-bot-api.md)