22

その構造の JSON スキーマに対して JSON 構造を検証する方法はありますか? 私はJSON.Netの検証を見て見つけましたが、これは私が望むことをしません。

JSON.netは次のことを行います。

JsonSchema schema = JsonSchema.Parse(@"{
  'type': 'object',
  'properties': {
    'name': {'type':'string'},
    'hobbies': {'type': 'array'}
  }
}");

JObject person = JObject.Parse(@"{
  'name': 'James',
  'hobbies': ['.NET', 'LOLCATS']
}");

bool valid = person.IsValid(schema);
// true

これは真であると検証されます。

JsonSchema schema = JsonSchema.Parse(@"{
  'type': 'object',
  'properties': {
    'name': {'type':'string'},
    'hobbies': {'type': 'array'}
  }
}");

JObject person = JObject.Parse(@"{
  'surname': 2,
  'hobbies': ['.NET', 'LOLCATS']
}");

bool valid = person.IsValid(schema);

これもtrueに検証されます

JsonSchema schema = JsonSchema.Parse(@"{
  'type': 'object',
  'properties': {
    'name': {'type':'string'},
    'hobbies': {'type': 'array'}
  }
}");

JObject person = JObject.Parse(@"{
  'name': 2,
  'hobbies': ['.NET', 'LOLCATS']
}");

bool valid = person.IsValid(schema);

これだけが false に検証されます。

name理想的には、そこにあってはならないフィールドが存在しないことを検証したいと思いますsurname

4

3 に答える 3

18

追加するだけでいいと思います

'additionalProperties': false

あなたのスキーマに。これにより、不明なプロパティが提供されなくなります。

したがって、結果は次のようになります。- True、False、False

テストコード....

void Main()
{
var schema = JsonSchema.Parse(
@"{
    'type': 'object',
    'properties': {
        'name': {'type':'string'},
        'hobbies': {'type': 'array'}
    },
    'additionalProperties': false
    }");

IsValid(JObject.Parse(
@"{
    'name': 'James',
    'hobbies': ['.NET', 'LOLCATS']
  }"), 
schema).Dump();

IsValid(JObject.Parse(
@"{
    'surname': 2,
    'hobbies': ['.NET', 'LOLCATS']
  }"), 
schema).Dump();

IsValid(JObject.Parse(
@"{
    'name': 2,
    'hobbies': ['.NET', 'LOLCATS']
  }"), 
schema).Dump();
}

public bool IsValid(JObject obj, JsonSchema schema)
{
    return obj.IsValid(schema);
}

出力:-

True
False
False

不足している/無効なフィールドの詳細を含むメッセージを返すことができるように、指定する必要があるフィールドに "required":true を追加することもできます:-

Property 'surname' has not been defined and the schema does not allow additional     properties. Line 2, position 19. 
Required properties are missing from object: name. 

Invalid type. Expected String but got Integer. Line 2, position 18. 
于 2014-01-17T12:07:48.510 に答える
4

これが役立つことを願っています。

これはあなたのスキーマです:

 public class test
{
    public string Name { get; set; }
    public string ID { get; set; }

}

これはあなたのバリデータです:

/// <summary>
    /// extension that validates if Json string is copmplient to TSchema.
    /// </summary>
    /// <typeparam name="TSchema">schema</typeparam>
    /// <param name="value">json string</param>
    /// <returns>is valid?</returns>
    public static bool IsJsonValid<TSchema>(this string value)
        where TSchema : new()
    {
        bool res = true;
        //this is a .net object look for it in msdn
        JavaScriptSerializer ser = new JavaScriptSerializer();
        //first serialize the string to object.
        var obj = ser.Deserialize<TSchema>(value);

        //get all properties of schema object
        var properties = typeof(TSchema).GetProperties();
        //iterate on all properties and test.
        foreach (PropertyInfo info in properties)
        {
            // i went on if null value then json string isnt schema complient but you can do what ever test you like her.
            var valueOfProp = obj.GetType().GetProperty(info.Name).GetValue(obj, null);
            if (valueOfProp == null)
                res = false;
        }

        return res;
    }

そして、使い方は次のとおりです。

string json = "{Name:'blabla',ID:'1'}";
        bool res = json.IsJsonValid<test>();

ご不明な点がございましたら、お問い合わせください。これがお役に立てば幸いです。これは、例外処理などのない完全なコードではないことを考慮してください...

于 2013-10-23T14:44:27.787 に答える
1

Newtonsoft.Json.Schema の JSchemaGenerator を使用して、簡単な回答を追加しています。

 public static bool IsJsonValid<TSchema>>(string value)
    {
        JSchemaGenerator generator = new JSchemaGenerator();
        JSchema schema = generator.Generate(typeof(TSchema));
        schema.AllowAdditionalProperties = false;           

        JObject obj = JObject.Parse(value);
        return obj.IsValid(schema);
    }
于 2021-05-09T05:03:36.137 に答える