Collection
An object with key: value pairs
Last updated
[
{
"name": "contact",
"spec": [
{
"name": "firstname",
"type": "text",
"label": "First name"
},
{
"name": "lastname",
"type": "text",
"label": "Last name"
}
],
"type": "collection",
"label": "Contact"
}
]{
"contact": {
"lastname": "Doe",
"firstname": "Jane"
}
}[
{
"name": "contact",
"spec": [
{
"name": "firstname",
"type": "text",
"label": "First name"
},
{
"name": "lastname",
"type": "text",
"label": "Last name"
},
{
"name": "address",
"label": "Address",
"type": "collection",
"spec": [
{
"label": "Street",
"name": "street",
"type": "text"
},
{
"label": "City",
"name": "city",
"type": "text"
}
]
}
],
"type": "collection",
"label": "Contact"
}
]{
"contact": {
"address": {
"city": "Prague",
"street": "Novakovych"
},
"lastname": "Doe",
"firstname": "Jane"
}
}