Open bangank36 opened 1 year ago
{
type: "object",
properties: {
address: {
type: 'object',
properties: {
street_address: { type: 'string' },
city: { type: 'string' },
state: { type: 'string' },
country: {
type: 'object',
properties: {
name: { type: 'string' },
}
}
}
},
business: {
type: 'object',
properties: {
job: { type: 'string' }
}
}
},
};
{
type: "NavigatorLayout",
elements: [
{
type: 'VerticalLayout',
elements: [
{
type: 'Control',
scope: '#/properties/address',
},
{
type: 'Control',
scope: '#/properties/business',
}
],
}
],
}
{
"address": {
"street_address": "4/3 Malibu",
"city": "Vice City",
"country": {
"name": "US"
},
"state": "Florida"
},
"business": {
"job": "Engineer"
}
}
Summary
Reference
99