-1

My Script

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())

I want to print which key is missing(If key is not presented) and for which key i am getting "false" as response.

Please modify my script according to that.

Json data

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']}}}]}]
nrs
  • 937
  • 3
  • 17
  • 42
  • It sounds like you're trying to check if a dictionary has a key. You should try looking at https://stackoverflow.com/questions/1602934/check-if-a-given-key-already-exists-in-a-dictionary. – Kush Apr 02 '18 at 15:58

1 Answers1

0

I would suggest going the route of using JSON Schema for validating your JSON instead of reinventing the wheel.

https://python-jsonschema.readthedocs.io/en/latest/

Tobias
  • 101
  • 2