我第一次使用angular6-json-schema-form库,并创建了一个包含模式和数据部分的example.json文件
如何从example.json中引用angular6-json-schema-form库引用的核心元模式定义的草案版本
"schema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://someurl/example.json",
"type": "object",
"properties": {
"id": {
"type": "number"
},
"formName": {
"type": "string",
"maxlength": "$ref": "http://json-schema.org/draft-07/schema/definitions/nonNegativeInteger
}
}
},
"data": {
"id": "1",
"formName": "Application Form"
}