Structured data — JSON, CSV, query strings, key-value pairs
comma_separated
apple,banana,cherry
pipe_separated
apple|banana|cherry
semicolon_separated
apple;banana;cherry
whitespace_separated
apple banana cherry
form_data
username=john&password=secre…
query_string
name=John&age=30&city=NewYor…
csv
John,30,true
html
<p>Hello world</p>
json
{"user": "john", "age": 30}
json_array
[1, 2, 3]
xml
<root><name>John</name><age>…
yaml
name: John age: 30 active: t…