You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are the code samples for the data operation action definitions in the article, [Perform data operations](../logic-apps/logic-apps-perform-data-operations.md). You can use these samples for when you want to try the examples with your own logic app's underlying workflow definition, Azure subscription, and API connections. Just copy and paste these action definitions into the code view editor for your logic app's workflow definition, and then modify the definitions for your specific workflow.
15
+
Here are the code samples for the data operation action definitions in the article, [Perform data operations](logic-apps-perform-data-operations.md). You can use these samples for when you want to try the examples with your own logic app's underlying workflow definition, Azure subscription, and API connections. Just copy and paste these action definitions into the code view editor for your logic app's workflow definition, and then modify the definitions for your specific workflow.
16
16
17
17
Based on JavaScript Object Notation (JSON) standards, these action definitions appear in alphabetical order. However, in the Logic App Designer, each definition appears in the correct sequence within your workflow because each action definition's `runAfter` property specifies the run order.
18
18
19
19
<aname="compose-action-example"></a>
20
20
21
21
## Compose
22
22
23
-
To try the [**Compose** action example](../logic-apps/logic-apps-perform-data-operations.md#compose-action),
23
+
To try the [**Compose** action example](logic-apps-perform-data-operations.md#compose-action),
24
24
here are the action definitions you can use:
25
25
26
26
```json
@@ -61,7 +61,7 @@ here are the action definitions you can use:
61
61
{
62
62
"name": "firstNameVar",
63
63
"type": "String",
64
-
"value": "Sophie"
64
+
"value": "Sophia"
65
65
}
66
66
]
67
67
},
@@ -74,7 +74,7 @@ here are the action definitions you can use:
74
74
{
75
75
"name": "lastNameVar",
76
76
"type": "String",
77
-
"value": "Owen"
77
+
"value": "Owens"
78
78
}
79
79
]
80
80
},
@@ -91,7 +91,7 @@ here are the action definitions you can use:
91
91
92
92
## Create CSV table
93
93
94
-
To try the [**Create CSV table** action example](../logic-apps/logic-apps-perform-data-operations.md#create-csv-table-action), here are the action definitions you can use:
94
+
To try the [**Create CSV table** action example](logic-apps-perform-data-operations.md#create-csv-table-action), here are the action definitions you can use:
95
95
96
96
```json
97
97
"actions": {
@@ -136,7 +136,7 @@ To try the [**Create CSV table** action example](../logic-apps/logic-apps-perfor
136
136
137
137
## Create HTML table
138
138
139
-
To try the [**Create HTML table** action example](../logic-apps/logic-apps-perform-data-operations.md#create-html-table-action),
139
+
To try the [**Create HTML table** action example](logic-apps-perform-data-operations.md#create-html-table-action),
140
140
here are the action definitions you can use:
141
141
142
142
```json
@@ -182,7 +182,7 @@ here are the action definitions you can use:
182
182
183
183
## Filter array
184
184
185
-
To try the [**Filter array** action example](../logic-apps/logic-apps-perform-data-operations.md#filter-array-action), here are the action definitions you can use:
185
+
To try the [**Filter array** action example](logic-apps-perform-data-operations.md#filter-array-action), here are the action definitions you can use:
186
186
187
187
```json
188
188
"actions": {
@@ -223,7 +223,7 @@ To try the [**Filter array** action example](../logic-apps/logic-apps-perform-da
223
223
224
224
## Join
225
225
226
-
To try the [**Join** action example](../logic-apps/logic-apps-perform-data-operations.md#join-action), here are the action definitions you can use:
226
+
To try the [**Join** action example](logic-apps-perform-data-operations.md#join-action), here are the action definitions you can use:
227
227
228
228
```json
229
229
"actions": {
@@ -264,7 +264,7 @@ To try the [**Join** action example](../logic-apps/logic-apps-perform-data-opera
264
264
265
265
## Parse JSON
266
266
267
-
To try the [**Parse JSON** action example](../logic-apps/logic-apps-perform-data-operations.md#parse-json-action), here are the action definitions you can use:
267
+
To try the [**Parse JSON** action example](logic-apps-perform-data-operations.md#parse-json-action), here are the action definitions you can use:
268
268
269
269
```json
270
270
"actions": {
@@ -277,9 +277,9 @@ To try the [**Parse JSON** action example](../logic-apps/logic-apps-perform-data
277
277
"type": "Object",
278
278
"value": {
279
279
"Member": {
280
-
"Email": "Sophie.Owen@contoso.com",
281
-
"FirstName": "Sophie",
282
-
"LastName": "Owen"
280
+
"Email": "Sophia.Owens@fabrikam.com",
281
+
"FirstName": "Sophia",
282
+
"LastName": "Owens"
283
283
}
284
284
}
285
285
}
@@ -324,7 +324,7 @@ To try the [**Parse JSON** action example](../logic-apps/logic-apps-perform-data
324
324
325
325
## Select
326
326
327
-
To try the [**Select** action example](../logic-apps/logic-apps-perform-data-operations.md#select-action), the following action definitions create a JSON object array from an integer array:
327
+
To try the [**Select** action example](logic-apps-perform-data-operations.md#select-action), the following action definitions create a JSON object array from an integer array:
328
328
329
329
```json
330
330
"actions": {
@@ -363,7 +363,7 @@ To try the [**Select** action example](../logic-apps/logic-apps-perform-data-ope
363
363
},
364
364
```
365
365
366
-
The following example shows action definitions that create a string array from a JSON object array, but for this task, next to the **Map** box, switch to text mode () in the designer, or use the code view editor instead:
366
+
The following example shows action definitions that create a string array from a JSON object array, but for this task, next to the **Map** box, switch to text mode (**T** icon) in the designer, or use the code view editor instead:
367
367
368
368
```json
369
369
"actions": {
@@ -402,4 +402,4 @@ The following example shows action definitions that create a string array from a
402
402
403
403
## Next steps
404
404
405
-
*[Perform data operations](../logic-apps/logic-apps-perform-data-operations.md)
405
+
*[Perform data operations](logic-apps-perform-data-operations.md)
0 commit comments