我第一次使用 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"
}