Skip to content

Commit 4b07024

Browse files
bbringhuGitHub Enterprise
authored andcommitted
Merge pull request #6522 from AdobeDocs/pre-migration-cleanup-2
pre-migration-cleanup-2
2 parents 3607cd7 + 2b9f383 commit 4b07024

File tree

96 files changed

+266
-227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+266
-227
lines changed

help/access-control/abac/end-to-end-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Select **[!UICONTROL The following being false]** and then select **[!UICONTROL
231231
232232
Select **[!UICONTROL Activate]** to activate the policy, and a dialog appears which prompts you to confirm activation. Select **[!UICONTROL Confirm]** and then select **[!UICONTROL Close]**.
233233
234-
![Image showing the Policy being activated ](../images/abac-end-to-end-user-guide/abac-create-policy-activation.png) -->
234+
![Image showing the Policy being activated](../images/abac-end-to-end-user-guide/abac-create-policy-activation.png) -->
235235

236236
## Next steps
237237

help/assurance/views/validation-summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The validation function is expected to return an object that contains the follow
5151
| :--- | :--- | :--- |
5252
| `message` | String | The validation message to display in the summary results. |
5353
| `events` | Array | An array of event uuids to be reported as matched or not matched. |
54-
| `links` | Array | An array of `ValidationResultLink` objects to reference documentation and other resources `{( type: 'doc'|'product', url: String )}` |
54+
| `links` | Array | An array of `ValidationResultLink` objects to reference documentation and other resources `{( type: 'doc'`|`'product', url: String )}` |
5555
| `result` | String | This is the validation result and is expected to be one of the enumerated strings: "matched", "not matched", "unknown" |
5656

5757
## View the validation results

help/dashboards/insights-use-cases/consent-analysis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ After the widget composer is populated with data from your chosen table, perform
124124
![The widget composer with the add-icon and dropdown menu highlighted.](../images/standard-dashboards/attributes-dropdown.png)
125125
- Search [!UICONTROL Attributes] for `[!UICONTROL count_of_profiles]`, then use the + icon to add the `[!UICONTROL count_of_profiles]` attribute to the Y-axis from the dropdown menu.
126126
- Select the `...` (ellipses) icon in the [!UICONTROL Y-axis] field, then select the [!UICONTROL SUM] aggregate function from the dropdown menu.
127-
![The widget composer Consent trends widget with the data model, table, and the Y-axis dropdown menu and SUM feature highlighted. ](../images/insights-use-cases/consent-analysis/y-axis-sum-function.png)
127+
![The widget composer Consent trends widget with the data model, table, and the Y-axis dropdown menu and SUM feature highlighted.](../images/insights-use-cases/consent-analysis/y-axis-sum-function.png)
128128
- Select the [!UICONTROL Marks] dropdown menu, and change the chart type to [!UICONTROL Line].
129129
- Search [!UICONTROL Attributes] for the `[!UICONTROL segment_name]`, then use the + icon to add the `segment_name` as a [!UICONTROL Filter] from the dropdown menu. The [!UICONTROL Filter: Segment_name] dialog appears. Select the audiences created earlier that relate to consent. For this example, select **[!UICONTROL Users Consented to Calls]**, **[!UICONTROL Users Consented to SMS]**, and **[!UICONTROL Users Consented to Email]**, followed by **[!UICONTROL Apply]**.
130130
- Search [!UICONTROL Attributes] for `[!UICONTROL segment_name]`, then select the + icon to add `segment_name` as a [!UICONTROL Color] from the dropdown menu.

help/data-access/tutorials/dataset-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ GET /files/{FILE_ID}?path={FILE_NAME}
422422

423423
| Property | Description |
424424
| -------- | ----------- |
425-
| `{FILE_ID} `| The file's identifier. |
425+
| `{FILE_ID}`| The file's identifier. |
426426
| `{FILE_NAME}` | The file name (for example, profiles.parquet) |
427427

428428
**Request**

help/data-prep/functions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ The following tables list all supported mapping functions, including sample expr
148148
| map_has_keys | If one or more input keys are provided, then the function returns true. If a string array is provided as input, then the function returns true on the first key that is found. | <ul><li>MAP: **Required** The input map data</li><li>KEY: **Required** The key can be a single string or a string array. If any other primitive type (data / number) is provided, then it is treated as a string.</li></ul> | map_has_keys(MAP, KEY) | Please see the [appendix](#map_has_keys) for a code sample. | |
149149
| add_to_map | Accepts at least two inputs. Any number of maps can be provided as inputs. Data Prep returns a single map that has all key-value pairs from all the inputs. If one or more keys are repeated (in the same map or across maps), Data Prep de-duplicates the keys so that the first key-value pair persists in the order that they were passed in the input. | MAP: **Required** The input map data. | add_to_map(MAP 1, MAP 2, MAP 3, ...) | Please see the [appendix](#add_to_map) for a code sample. | |
150150
| object_to_map (Syntax 1) | Use this function to create Map data types. |<ul><li>KEY: **Required** Keys must be a string. If any other primitive values such as integers or dates are provided, then they are auto-converted to strings and are treated as strings.</li><li>ANY_TYPE: **Required** Refers to any supported XDM data type except Maps.</li></ul> | object_to_map(KEY, ANY_TYPE, KEY, ANY_TYPE, ... )| Please see the [appendix](#object_to_map) for a code sample. | |
151-
| object_to_map (Syntax 2) | Use this function to create Map data types.| <ul><li>OBJECT: **Required** You can provide an incoming object or object array and point to an attribute inside the object as key.</li></ul> | object_to_map(OBJECT) | Please see the [appendix](#object_to_map) for a code sample. |
152-
| object_to_map (Syntax 3) | Use this function to create Map data types.| <ul><li>OBJECT: **Required** You can provide an incoming object or object array and point to an attribute inside the object as key.</li></ul> | object_to_map(OBJECT_ARRAY, ATTRIBUTE_IN_OBJECT_TO_BE_USED_AS_A_KEY) | Please see the [appendix](#object_to_map) for a code sample. |
151+
| object_to_map (Syntax 2) | Use this function to create Map data types.| <ul><li>OBJECT: **Required** You can provide an incoming object or object array and point to an attribute inside the object as key.</li></ul> | object_to_map(OBJECT) | Please see the [appendix](#object_to_map) for a code sample. ||
152+
| object_to_map (Syntax 3) | Use this function to create Map data types.| <ul><li>OBJECT: **Required** You can provide an incoming object or object array and point to an attribute inside the object as key.</li></ul> | object_to_map(OBJECT_ARRAY, ATTRIBUTE_IN_OBJECT_TO_BE_USED_AS_A_KEY) | Please see the [appendix](#object_to_map) for a code sample. ||
153153

154154
{style="table-layout:auto"}
155155

@@ -174,7 +174,7 @@ For information on the object copy feature, see the section [below](#object-copy
174174
| upsert_array_replace | This function is used to replace elements in an array. This function is **only** applicable during updates. If used in the context of inserts, this function returns the input as is. | <ul><li>ARRAY: **Required** The array to replace the array in the Profile.</li></li> | upsert_array_replace(ARRAY) | `upsert_array_replace([123, 456], 1)` | [123, 456] |
175175
| [!BADGE Destinations only]{type=Informative} array_to_string | Joins the string representations of the elements in an array using the specified separator. If the array is multidimensional, it is flattened before being joined. **Note**: This function is used in destinations. Read the [documentation](../destinations/ui/export-arrays-maps-objects.md) for more information. | <ul><li>SEPARATOR: **Required** The separator used to join the elements in the array.</li><li>ARRAY: **Required** The array that be joined (after flattening).</li></ul> | array_to_string(SEPARATOR, ARRAY) | `array_to_string(";", ["Hello", "world"])` | "Hello;world" |
176176
| [!BADGE Destinations only]{type=Informative} filterArray* | Filters the given array based on a predicate. **Note**: This function is used in destinations. Read the [documentation](../destinations/ui/export-arrays-maps-objects.md) for more information. | <ul><li>ARRAY: **Required** The array to be filtered</li><li>PREDICATE: **Required** The predicate to be applied on each element of the given array. | filterArray(ARRAY, PREDICATE) | `filterArray([5, -6, 0, 7], x -> x > 0)` | [5, 7] |
177-
| [!BADGE Destinations only]{type=Informative} transformArray* | Transforms the given array based on a predicate. **Note**: This function is used in destinations. Read the [documentation](../destinations/ui/export-arrays-maps-objects.md) for more information. | <ul><li>ARRAY: **Required** The array to be transformed.</li><li>PREDICATE: **Required** The predicate to be applied on each element of the given array. | transformArray(ARRAY, PREDICATE) | ` transformArray([5, 6, 7], x -> x + 1)` | [6, 7, 8] |
177+
| [!BADGE Destinations only]{type=Informative} transformArray* | Transforms the given array based on a predicate. **Note**: This function is used in destinations. Read the [documentation](../destinations/ui/export-arrays-maps-objects.md) for more information. | <ul><li>ARRAY: **Required** The array to be transformed.</li><li>PREDICATE: **Required** The predicate to be applied on each element of the given array. | transformArray(ARRAY, PREDICATE) | `transformArray([5, 6, 7], x -> x + 1)` | [6, 7, 8] |
178178
| [!BADGE Destinations only]{type=Informative} flattenArray* | Flattens the given (multidimensional) array to a unidimensional array. **Note**: This function is used in destinations. Read the [documentation](../destinations/ui/export-arrays-maps-objects.md) for more information. | <ul><li>ARRAY: **Required** The array to be flattened.</li></ul> | flattenArray(ARRAY) | flattenArray([[['a', 'b'], ['c', 'd']], [['e'], ['f']]]) | ['a', 'b', 'c', 'd', 'e', 'f'] |
179179

180180
{style="table-layout:auto"}
@@ -187,7 +187,7 @@ For information on the object copy feature, see the section [below](#object-copy
187187
188188
| Function | Description | Parameters | Syntax | Expression | Sample output |
189189
| -------- | ----------- | ---------- | -------| ---------- | ------------- |
190-
| array_to_map | This function takes an object array and a key as input and returns a map of key's field with the value as key and the array element as value. | <ul><li>INPUT: **Required** The object array you want to find the first non-null object of.</li><li>KEY: **Required** The key must be a field name in the object array and the object as value.</li></ul> |array_to_map(OBJECT[] INPUTS, KEY) | Read the [appendix](#object_to_map) for a code sample. |
190+
| array_to_map | This function takes an object array and a key as input and returns a map of key's field with the value as key and the array element as value. | <ul><li>INPUT: **Required** The object array you want to find the first non-null object of.</li><li>KEY: **Required** The key must be a field name in the object array and the object as value.</li></ul> |array_to_map(OBJECT[] INPUTS, KEY) | Read the [appendix](#object_to_map) for a code sample. ||
191191
| object_to_map | This function takes an object as an argument and returns a map of key-value pairs. | <ul><li>INPUT: **Required** The object array you want to find the first non-null object of.</li></ul> | object_to_map(OBJECT_INPUT) | "object_to_map(address) where input is " + "address: {line1 : \"345 park ave\",line2: \"bldg 2\",City : \"san jose\",State : \"CA\",type: \"office\"}" | Returns a map with given field name and value pairs or null if input is null. For example: `"{line1 : \"345 park ave\",line2: \"bldg 2\",City : \"san jose\",State : \"CA\",type: \"office\"}"` |
192192
| to_map | This function takes a list of ke-value pairs and returns a map of key-value pairs. | | to_map(OBJECT_INPUT) | "to_map(\"firstName\", \"John\", \"lastName\", \"Doe\")" | Returns a map with given field name and value pairs or null if input is null. For example: `"{\"firstName\" : \"John\", \"lastName\": \"Doe\"}"` |
193193

@@ -255,7 +255,7 @@ For information on the object copy feature, see the section [below](#object-copy
255255
| Function | Description | Parameters | Syntax | Expression | Sample output |
256256
| -------- | ----------- | ---------- | -------| ---------- | ------------- |
257257
| uuid /<br>guid | Generates a pseudo-random ID. | | uuid()<br>guid() | uuid()<br>guid() | 7c0267d2-bb74-4e1a-9275-3bf4fccda5f4<br>c7016dc7-3163-43f7-afc7-2e1c9c206333 |
258-
| `fpid_to_ecid `| This function takes an FPID string and converts it into an ECID to be used in Adobe Experience Platform and Adobe Experience Cloud applications. | <ul><li>STRING: **Required** The FPID string to be converted into ECID.</li></ul> | `fpid_to_ecid(STRING)` | `fpid_to_ecid("4ed70bee-b654-420a-a3fd-b58b6b65e991")` | `"28880788470263023831040523038280731744"` |
258+
| `fpid_to_ecid`| This function takes an FPID string and converts it into an ECID to be used in Adobe Experience Platform and Adobe Experience Cloud applications. | <ul><li>STRING: **Required** The FPID string to be converted into ECID.</li></ul> | `fpid_to_ecid(STRING)` | `fpid_to_ecid("4ed70bee-b654-420a-a3fd-b58b6b65e991")` | `"28880788470263023831040523038280731744"` |
259259

260260
{style="table-layout:auto"}
261261

help/data-science-workspace/authoring/platform-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ The new [!DNL Experience Platform] SDK supports the following operations:
155155
| Less than (`<`) | `lt()` |
156156
| Less than or equal to (`<=`) | `le()` |
157157
| And (`&`) | `And()` |
158-
| Or (`|`) | `Or()` |
158+
| Or ( &vert; ) | `Or()` |
159159

160160
## Filter by selected columns {#filter-by-selected-columns}
161161

help/data-science-workspace/jupyterlab/create-a-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ For the Luma propensity model notebook, the requirements do not need to be updat
8787

8888
The configuration files, `training.conf` and `scoring.conf`, are used to specify the datasets you wish to use for training and scoring as well as adding hyperparameters. There are separate configurations for training and scoring.
8989

90-
In order for a model to run training, you must provide the `trainingDataSetId`, `ACP_DSW_TRAINING_XDM_SCHEMA`, and `tenantId`. Additionally for scoring, you must provide the `scoringDataSetId`, `tenantId`, and `scoringResultsDataSetId `.
90+
In order for a model to run training, you must provide the `trainingDataSetId`, `ACP_DSW_TRAINING_XDM_SCHEMA`, and `tenantId`. Additionally for scoring, you must provide the `scoringDataSetId`, `tenantId`, and `scoringResultsDataSetId`.
9191

9292
To find the dataset and schema IDs, go to the data tab ![Data tab](../images/jupyterlab/create-recipe/dataset-tab.png) within notebooks on the left navigation bar (under the folder icon). Three different dataset ID's need to be provided. The `scoringResultsDataSetId` is used to store the model scoring results and should be an empty dataset. These datasets were made previously in the [Required assets](#assets) step.
9393

help/dataflows/ui/monitor-streaming-profile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Use the metrics table for information specific to your dataflows. Refer to the f
8585
| Request throughput | This metric represents the number of events entering the ingestion system per second. |Sandbox/Dataflow | Real-time monitoring with a data refresh every 60 seconds. |
8686
| Processing throughput | This metric represents the number of events that are successfully ingested by the system each second. |Sandbox/Dataflow | Real-time monitoring with a data refresh every 60 seconds. |
8787
| P95 ingestion latency | This metric measures the 95th percentile latency from the moment an event arrives in Experience Platform to when it is successfully ingested into the Profile store. | Sandbox/Dataflow | Real-time monitoring with a data refresh every 60 seconds. |
88-
| Max throughput | This metric represents the maximum number of inbound requests per second entering streaming profile ingestion | <ul><li>Sandbox/Dataflow</li><li>Dataflow run</li></ul> |
88+
| Max throughput | This metric represents the maximum number of inbound requests per second entering streaming profile ingestion | <ul><li>Sandbox/Dataflow</li><li>Dataflow run</li></ul> ||
8989
| Records ingested | This metric represents the total number of records ingested to the Profile store within a configured time window. | <ul><li>Sandbox/Dataflow</li><li>Dataflow run</li></ul> | <ul><li>Sandbox/Dataflow: Real-time monitoring with a data refresh every 60 seconds.</li><li>Dataflow run: Grouped in 15 minutes.</li></ul> |
9090
| Records failed | This metric represents the total number of records that failed ingestion into the Profile store, within a configured time window, due to errors. | <ul><li>Sandbox/Dataflow</li><li>Dataflow run</li></ul> |<ul><li>Sandbox/Dataflow: Real-time monitoring with a data refresh every 60 seconds.</li><li>Dataflow run: Grouped in 15 minutes.</li></ul> |
9191
| Records skipped | This metric represents the total number of records that were dropped within a configured time window, due to configuration or capacity breaches. | <ul><li>Sandbox/Dataflow</li><li>Dataflow run</li></ul> | <ul><li>Sandbox/Dataflow: Real-time monitoring with a data refresh every 60 seconds.</li><li>Dataflow run: Grouped in 15 minutes.</li></ul> |

help/datastreams/configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ To reveal advanced configration options, select **[!UICONTROL Advanced Options]*
9595
| [!UICONTROL Third Party ID Sync Container ID] | The numeric ID of the container to be used for third party ID sync. |
9696
| [!UICONTROL Container ID Overrides] | In this section, you can define additional third party ID sync container IDs which you can use to override the default one. |
9797
| [!UICONTROL Access Type] | Defines the authentication type that the Edge Network accepts for the datastream. <ul><li>**[!UICONTROL Mixed Authentication]**: When this option is selected, the Edge Network accepts both authenticated and unauthenticated requests. Select this option when you plan to use the Web SDK or [Mobile SDK](https://developer.adobe.com/client-sdks/home/), along with the [Edge Network API](https://developer.adobe.com/data-collection-apis/docs/api/). </li><li>**[!UICONTROL Authenticated Only]**: When this option is selected, the Edge Network only accepts authenticated requests. Select this option when you plan to use only the Edge Network API and want to prevent any unauthenticated requests from being processed by the Edge Network.</li></ul> |
98-
[!UICONTROL Media Analytics] | Enables processing of streaming tracking data for Edge Network integration via Experience Platform SDKs or [Media Edge API](https://developer.adobe.com/cja-apis/docs/endpoints/media-edge/getting-started/). Learn about Media Analytics from the [documentation](https://experienceleague.adobe.com/docs/media-analytics/using/media-overview.html). |
98+
| [!UICONTROL Media Analytics] | Enables processing of streaming tracking data for Edge Network integration via Experience Platform SDKs or [Media Edge API](https://developer.adobe.com/cja-apis/docs/endpoints/media-edge/getting-started/). Learn about Media Analytics from the [documentation](https://experienceleague.adobe.com/docs/media-analytics/using/media-overview.html). |
9999

100100
From here, if you are configuring your datastream for Experience Platform, follow the tutorial on [Data Prep for Data Collection](./data-prep.md) to map your data to an Experience Platform event schema before returning to this guide. Otherwise, select **[!UICONTROL Save]** and continue to the next section.
101101

0 commit comments

Comments
 (0)