验证 Json 架构 C#
Validate Json schema C#
我正在尝试验证我的 json 文件,但我的验证工作不正常。请帮助我了解问题所在。
public static bool ValidJson(string jasonData)
{
string myJson = @"{
'description': 'rehber',
'type': 'object',
'properties':
{
'isim': {'type':'string', 'required': true },
'tel': {'type':'string','required': true},
},
'additionalProperties': false
}";
JsonSchema schema = JsonSchema.Parse(myJson);
JToken rehber = JToken.Parse(jasonData);
bool valid = rehber.IsValid(schema);
return valid;
}
ValidJson函数中的jasonData是这样的:
"[\n {\n \"isim\": \"Ahmet\",\n \"tel\": \"+46 637 530 68 94\"\n },\n {\n \"isim\": \"Mahmet\",\n \"tel\": \"+46 637 530 68 91\"\n }\n]"
我更改了架构,但它始终显示为 true。我不想在我的 json 文件中添加其他字段和空值。但是这个模式也不能正常工作。
string myJson = @"{
'type': 'array',
'title': 'The root schema',
'description': 'The root schema comprises the entire JSON document.',
'additionalItems': false,
'items': {
'allOf': [
{
'type': 'object',
'title': 'The first anyOf schema',
'description': 'An explanation about the purpose of this instance.',
'required': [
'isim',
'tel'
],
'additionalProperties': false,
'properties': {
'isim': {
'type': 'string',
},
'tel': {
'type': 'string',
}
}
}
],
}
}";
您无法通过验证测试的原因是因为您的json数据实际上是一个数组,而不是单个对象。
如果你假设你的输入数据是一个数组,你可以修改代码如下:
public static bool ValidJson(string jsonData)
{
string myJson = @"{
'description': 'rehber',
'type': 'object',
'properties':
{
'isim': {'type':'string', 'required': true },
'tel': {'type':'string','required': true},
},
'additionalProperties': false
}";
JsonSchema schema = JsonSchema.Parse(myJson);
JArray jArray = JArray.Parse(jsonData);
foreach( var jToken in jArray)
{
if ( !jToken.IsValid(schema))
{
return false;
}
}
return true;
}
另请注意,JsonSchema 和 isValid 方法已弃用,Newtonsoft 有一个新项目,请查看 https://www.newtonsoft.com/jsonschema。
我正在尝试验证我的 json 文件,但我的验证工作不正常。请帮助我了解问题所在。
public static bool ValidJson(string jasonData)
{
string myJson = @"{
'description': 'rehber',
'type': 'object',
'properties':
{
'isim': {'type':'string', 'required': true },
'tel': {'type':'string','required': true},
},
'additionalProperties': false
}";
JsonSchema schema = JsonSchema.Parse(myJson);
JToken rehber = JToken.Parse(jasonData);
bool valid = rehber.IsValid(schema);
return valid;
}
ValidJson函数中的jasonData是这样的:
"[\n {\n \"isim\": \"Ahmet\",\n \"tel\": \"+46 637 530 68 94\"\n },\n {\n \"isim\": \"Mahmet\",\n \"tel\": \"+46 637 530 68 91\"\n }\n]"
我更改了架构,但它始终显示为 true。我不想在我的 json 文件中添加其他字段和空值。但是这个模式也不能正常工作。
string myJson = @"{
'type': 'array',
'title': 'The root schema',
'description': 'The root schema comprises the entire JSON document.',
'additionalItems': false,
'items': {
'allOf': [
{
'type': 'object',
'title': 'The first anyOf schema',
'description': 'An explanation about the purpose of this instance.',
'required': [
'isim',
'tel'
],
'additionalProperties': false,
'properties': {
'isim': {
'type': 'string',
},
'tel': {
'type': 'string',
}
}
}
],
}
}";
您无法通过验证测试的原因是因为您的json数据实际上是一个数组,而不是单个对象。
如果你假设你的输入数据是一个数组,你可以修改代码如下:
public static bool ValidJson(string jsonData)
{
string myJson = @"{
'description': 'rehber',
'type': 'object',
'properties':
{
'isim': {'type':'string', 'required': true },
'tel': {'type':'string','required': true},
},
'additionalProperties': false
}";
JsonSchema schema = JsonSchema.Parse(myJson);
JArray jArray = JArray.Parse(jsonData);
foreach( var jToken in jArray)
{
if ( !jToken.IsValid(schema))
{
return false;
}
}
return true;
}
另请注意,JsonSchema 和 isValid 方法已弃用,Newtonsoft 有一个新项目,请查看 https://www.newtonsoft.com/jsonschema。