我正在使用python-jsonschema进行 json 验证。我有一个对象,其中包含在 rfc1766 语言代码键中指定的本地化文本,如下所示:
"Description": {
"en": "English Description",
"sv": "Swedish Description",
"fr": "French Description"
},
我在文档中读到我可以使用“格式”属性来检查使用函数的自定义格式。所以,我写了一个方法,它接受一个字符串作为参数,如果它是一个 RFC1766 语言字符串,则返回 True。
@_checks_drafts('rfc1766lang')
def rfc1766lang(instance):
"""some logic, return True if rfc1766"""
但是我找不到任何关于如何应用它来验证对象键而不是值的示例。
这可能吗?
我已经尝试过类似下面的方法,但我无法成功
rfc1766_string_schema_v2 = {
'type': 'object',
'format': 'rfc1766lang',
'additionalProperties': False
}
我知道如果我有如下的 json 字符串会容易得多。但是,目前这不是一个选择。
"Description": [{
"lan": "en",
"text": "Description in English"
}, {
"lan": "sv",
"name": "Description in Swedish"
}]