我的剧本
def validate_record_schema():
"""Validate that the 0 or more Payload dicts in record
use proper types"""
err_path = "root"
try:
for record in original_data:
device = record["Device"]
icon = device["Icon"]
key_data = ((device["ManualAdded"], bool), (device["Location"], (str, type(None))),
(device["Version"], (str, type(None))), (device["Vendor"], (str, type(None))), (device["Language"], list),
(device["Fullname"], (str, type(None))),
(device["SchemaVersion"], (str, type(None))),(device["Warnings"], list),
(icon["DeviceType"], (str, type(None)))),(icon["Decorators"], (str, type(None))),\
(device["SysSwUpdatePrepare"], (str, type(None))),(device["SysSwUpdatePerform"], (str, type(None)))
for i in key_data:
if not isinstance(*i):
return False
except KeyError as err_path:
print("missing key")
return False
return True
print(validate_record_schema())
我想打印缺少哪个密钥(如果没有显示密钥)以及我得到的密钥" false"作为回应。
请根据此修改我的脚本。
Json数据
original_data =[{'Id': '12', 'Type': 'DevicePropertyChangedEvent', 'Payload': [{'DeviceType': 'producttype', 'DeviceId': 2, 'IsFast': False, 'Payload': {'DeviceInstanceId': 2, 'IsResetNeeded': False, 'ProductType': 'product'
, 'Product': {'Family': 'home'}, 'Device': {'DeviceFirmwareUpdate': {'DeviceUpdateStatus': None, 'DeviceUpdateInProgress': None, 'DeviceUpdateProgress': None, 'LastDeviceUpdateId': None}, 'ManualAdded': False,
'Name': {'Value': 'Jigital60asew', 'IsUnique': True}, 'State': None, 'Location': '', 'Serial': None, 'Version': '2.0.1.100','Vendor':'Sennheiser','Language':['en_GB']}}}]}]
答案 0 :(得分:0)
我建议使用JSON Schema来验证你的JSON,而不是重新发明轮子。