0
我確認與Cerberus的文件,大約是這樣的:並不是所有的子文檔中的字段必須存在我如何驗證映射字段中至少有一個Cerberus項目?
{"a_dict": {"field1": "test1",
"field2": "test2",
"field3": "test3"}}
,而是一個應該。到目前爲止,我的模式是這樣的:
"a_dict": {"type": "dict",
"schema": {"field1": {"type": "string",
"required": False},
"field2": {"type": "string",
"required": False},
"field3": {"type": "string",
"required": False}}}
我怎麼能強制執行該fieldX
的至少一個提供?
此問題源自fom this問題。