我们现在要使用NJsonSchema来检查 Json 文件中的必填字段,并且我们允许用户添加一些额外的字段以供本地使用。因此,它必须允许 Json 文件中的其他属性。
通过使用 NJsonSchma,有附加属性的设置,但是当我们使用 FromType 生成模式时,然后设置选项 AllowAdditionalProperties,它将仅适用于顶层,
例如:
NJsonSchema.JsonSchema4 schema = JsonSchema4.FromType<Top>();
schema.AllowAdditionalProperties = true;
public class Item
{
public string code { get; set; }
public string name { get; set; }
}
public class Top
{
public List<Item> data { get; set; }
}
现在,它允许 Top 的附加属性,但不允许 Item。IE
// allowed even ref is not defined in Top
var js = "{\"data\":[{\"code\":\"A01\",\"name\":\"apple\"}],\"ref\":\"A01\"}";
// ArrayItemNotValid as price is not defined in Item
var js = "{\"data\":[{\"code\":\"A01\",\"name\":\"apple\",\"price\":1.0}],\"ref\":\"A01\"}";
我们甚至尝试构建一个迭代函数来设置属性字典中的值,但它仍然无法改变行为:
public static void SetAditionalProperties(JsonProperty jp)
{
jp.AllowAdditionalProperties = true;
foreach (KeyValuePair<string, JsonProperty> kv in jp.Properties)
{
SetAditionalProperties(kv.Value);
}
}
我们现在唯一能做的就是下载源代码,并将 AllowAdditionalProperties 的 getter 更改为始终返回 true。我们当然知道这不是正确的方式,但是我们目前找不到任何替代方法,如果有的话,我们希望以后使用正确的方式。
似乎这只是生成模式的默认设置,但我们找不到这样的选项(可能我们错过了),有谁知道我们如何在生成模式时更改此设置?