-
Notifications
You must be signed in to change notification settings - Fork 641
Closed
Labels
Description
`{
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"Objects": {
"type": "array",
"items": {
"type": "object",
"properties": {
"object": {
"type": "object",
"properties": {
"objectId": {
"type": "string"
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"attributeId": {
"type": "string"
},
"attrbuteName": {
"type": "string"
},
"value": {
"type": "string"
}
}
}
}
}
}
}
}
}
}
},
"form": [
"name",
{
"key" :"Objects",
"items": [
{
"key":"Objects[].object",
"items": [
"objectId",
{
"key": "attributes",
"items": [
"['attributes'][]attributeId",
"['attributes'][]attrbuteName",
"['attributes'][]value"
]
}
]
}
]
}
]
}`
Why I don't see "attributeId", "attrbuteName" and "value"?