Documentation
Dataflows
Queries
Writing JSON

Writing JSON

Basic JSON Writing

{
  "stringValue": {{ stringInput.value }},
  "numberValue": {{ numberInput.value }},
  "boolValue":   {{ checkbox.value }},
  "arrayValue":  {{ objArray.value.map(d => d.name) }}
}

About Quotation Marks

Variables referenced inside JSON are automatically quoted.
Even if you explicitly add quotation marks like "{{ emailInput.value }}", the quotes will not overlap, so you can explicitly include them if desired.