Json架构,Properties as Property不起作用



也许听起来很困惑,我想验证这个模型模式(应该有$schema、title、properties和必填字段):

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "My Schema",
  "type": "object",
  "properties": {
    "myData": {
      "type": "object",
      "properties": {
        "name_1": {
          "type": "string"
        },
        "name_2": {
          "type": "string"
        },
        "name_3": {
          "type": "string"
        }
      }
    }
  },
  "required": [
    "myData"
  ]
}

我已经做到了:

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "$schema": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "properties": {
      "type": "object",
      "enum": "myData"
    },
    "required": {
      "type": "array",
      "items": {
        "myData": "string"
      }
    }
  }
}

但这部分工作不好:

"properties": {
      "type": "object",
      "enum": "myData"
 },

可以这样做吗?或者被禁止使用那些构建的模式词,如:"required"、"enum"、"properties"作为"properties"?内的属性?。提前感谢您帮助我理解这一部分:)

我的错,对不起。我创建了错误的json模式,它应该是这样的:
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "http://jsonschema.net",
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "properties": {
      "type": "object",
      "properties": {
        "myData": {
          "type": "object"
        }
      }
    },
    "required": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}

工作正常:)

相关内容

最新更新