2
我有多種模式,分別爲數據子類型:Python Validictory(JSON模式驗證):如何OR多個模式?
type_one = {
"type": "object",
"properties": {
"one": "string"
}
}
type_two = {
"type": "object",
"properties": {
"one": "string",
"two": "string"
}
}
我要的是檢查,如果輸入的數據是「type_one」 OR「type_two」或拋出一個錯誤。事情是這樣的:
general_type = {
"type": [type_one, type_two]
}
我進來的數據是這樣的:
{
"one": "blablabla",
"two": "blebleble",
...
}
我一直在測試多種方法,但沒有成功...任何想法? Thx
不錯!非常感謝!只需鏈接到您的Validictory教程http://www.alexconrad.org/2011/10/json-validation.html –