{
"customers": [
{
"name": "Customer 1",
"to": [
"contactA@customer1.com",
"contactB@customer1.com"
],
"cc": [
"contactC@customer1.com",
"contactD@customer1.com"
]
},
{
"name": "Customer 2",
"to": [
"contactE@customer2.com",
"contactF@customer2.com"
],
"cc": [
"contactG@customer2.com",
"contactH@customer2.com"
]
}
]
}
{
"type": "object",
"properties": {
"customers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"to": {
"type": "array",
"items": {
"type": "string"
}
},
"cc": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name",
"to",
"cc"
]
}
}
}
}
The 'content' property of actions of type 'ParseJson' must be valid JSON. The provided value cannot be parsed: 'Unexpected character encountered while parsing value: P. Path '', line 0, position 0.'.
Person: { "name": "Alice Smith", "to": ["alice.smith@example.com"], "cc": ["cc.person1@example.com"] }
stampcoin
73
Michael E. Gernaey
66
Super User 2025 Season 1
David_MA
48
Super User 2025 Season 1