这个工作表绑定能否扩展其字段 我想给里面添加一下本地业务的字段
比如: 下面这样的 给里面添加一个别的字段 {
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"源": {
"dataFieldType": "text",
"type": "string",
"properties": {
"字段-1": { "dataFieldType": "table", "type": "array",'扩展字段1':'....',,'扩展字段2':'....' },
"字段-2": { "dataFieldType": "combox", "type": "string" }
}
}
},
"type": "object"
}
|
|