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
Copy file name to clipboardExpand all lines: api-builder-plugin-fn-xml-node/src/flow-nodes.yml
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,13 +26,21 @@ flow-nodes:
26
26
type: boolean
27
27
selectPath:
28
28
name: Select object with path
29
-
description: "Select the object within the returned structure using this path. Example: $[\"soap:Envelope\"][\"soap:Body\"]"
29
+
description: "Select the object within the returned structure using this path. Example: $[\"soap:Envelope\"][\"soap:Body\"]. If you remove namespaces, remember to also remove them here."
30
30
required: false
31
31
initialType: string
32
32
schema:
33
33
type: string
34
+
removeAllNamespaces:
35
+
name: Remove all namespaces
36
+
description: 'This will remove all namespaces from the JSON-message. Overrides Remove Specific Namespaces.'
37
+
required: false
38
+
initialType: boolean
39
+
schema:
40
+
default: false
41
+
type: boolean
34
42
removeNamespaces:
35
-
name: Remove namespaces
43
+
name: Remove specific namespaces
36
44
description: 'An Array of namespaces to be removed from the JSON-Message. Example: ["v1"] will convert the following: "<v1:radius_airportsResponse>" into "radius_airportsResponse": {'
0 commit comments