如何访问angular6 json模式表单库核心元模式

时间:2019-09-10 12:59:37

标签: angular6-json-schema-form

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

0 个答案:

没有答案