Skip to content

Commit

Permalink
small changes in default values (microsoft#3303)
Browse files Browse the repository at this point in the history
  • Loading branch information
simenums authored Mar 18, 2024
1 parent f731ac3 commit 0b0414f
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
"type": "string",
"description": "Liquid template code.",
"title": "Liquid",
"default": "{ \r\n \"data\" : [\r\n {%- for row in data -%}\r\n { \r\n \"item1\": \"{{x.item1}}\",\r\n \"item2\": \"{{x.item2}}\",\r\n }\r\n {%- endfor -%} \r\n ]\r\n}",
"default": "<data>\r\n {%- for row in data -%}\r\n <row> \r\n <field1>{{row.heading1}}</field1>\r\n <field2>{{row.heading2}}</field2>\r\n </row>\r\n {%- endfor -%}\r\n</data>",
"x-ms-visibility": "important"
},
"logFileName": {
Expand Down Expand Up @@ -231,15 +231,14 @@
"properties": {
"inputString": {
"type": "string",
"description": "Input string in csv format",
"description": "Input string in JSON format",
"title": "Input",
"x-ms-visibility": "important"
},
"liquidTemplate": {
"type": "string",
"description": "Liquid template code.",
"title": "Liquid",
"default": "{ \r\n \"data\" : [\r\n {%- for row in data -%}\r\n { \r\n \"item1\": \"{{x.item1}}\",\r\n \"item2\": \"{{x.item2}}\",\r\n }\r\n {%- endfor -%} \r\n ]\r\n}",
"x-ms-visibility": "important"
},
"logFileName": {
Expand Down Expand Up @@ -538,4 +537,4 @@
},
"security": [],
"tags": []
}
}

0 comments on commit 0b0414f

Please sign in to comment.