1

我是 json-schema 的新手,所以它可能不是一个相关的问题。我正在使用https://github.com/hoxworth/json-schema。我有一个大 json 文件,描述了很多模式(大多数是小模式),模式之间有很多 $ref,我需要能够根据这些“内部”模式之一验证数据。我找不到使用 json-schema 执行此操作的方法。json-schema 是否支持这个用例,还是我做错了?

4

1 回答 1

0

看来确实如此。它声明它使用 json 模式 v4。同样在源代码中:第 265 行 lib/json-schema/validator.rb。

 def build_schemas(parent_schema)
  # Build ref schemas if they exist
  if parent_schema.schema["$ref"]
    load_ref_schema(parent_schema, parent_schema.schema["$ref"])
  end
于 2013-07-11T23:32:09.263 回答