Working with outport schemas
"outPorts": [
{
"name": "person",
"schema": {
"type": "object",
"properties": {
"name": {
"type": "object",
"title": "Name",
"properties": {
"firstName": { "type": "string", "title": "First Name" },
"lastName": { "type": "string" }
}
},
"addresses": {
"type": "array",
"title": "Addresses",
"items": {
"type": "object",
"properties": {
"street": {
"type": "string",
"title": "Street"
},
"city": {
"type": "string",
"title": "City"
},
"country": {
"type": "string",
"title": "Country"
},
"number": {
"type": "number",
"title": "Number"
}
}
}
}
}
}
}
]Selecting nested properties directly

Selecting element properties when modifying an array variable


Property array item property names

Last updated
Was this helpful?
