prettier: re-format

Prettier is enabled in openbmc-build-scripts on Markdown, JSON, and YAML
files to have consistent formatting for these file types.  Re-run the
formatter on the whole repository.

Change-Id: I19f5d4fb914bdbb6822053844b1a0f33047168f0
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/README.md b/README.md
index f8cfcfd..f29880e 100644
--- a/README.md
+++ b/README.md
@@ -1,41 +1,47 @@
 # Overview
+
 This repository hosts code for OpenPower and IBM IPZ format VPD parsers. Both
 OpenPower VPD and IPZ VPD formats are structured binaries that consist of
-records and keywords. A record is a collection of multiple keywords.
-More information about the format can be found [here](https://www-355.ibm.com/systems/power/openpower/posting.xhtml?postingId=1D060729AC96891885257E1B0053BC95).
+records and keywords. A record is a collection of multiple keywords. More
+information about the format can be found
+[here](https://www-355.ibm.com/systems/power/openpower/posting.xhtml?postingId=1D060729AC96891885257E1B0053BC95).
 
 The repository consists of two distinct applications, which are:
 
 ## OpenPower VPD Parser
+
 This is a build-time YAML driven application that parses the OpenPower VPD
 format and uses the YAML configuration (see extra-properties-example.yaml and
 writefru.yaml) to determine:
-* The supported records and keywords.
-* How VPD data is translated into D-Bus interfaces and properties.
+
+- The supported records and keywords.
+- How VPD data is translated into D-Bus interfaces and properties.
 
 The application instance must be passed in the file path to the VPD (this can,
 for example, be a sysfs path exposed by the EEPROM device driver) and also the
 D-Bus object path(s) that EEPROM data needs to be published under.
 
 ## IBM VPD Parser
+
 This parser is can be built by passing in the `--enable-ibm-parser` configure
 option. This parser differs from the OpenPower VPD parser in the following ways:
-* It parses all the records and keywords from the VPD, including large keywords
-(Keywords that begin with a `#` and are > 255 bytes in length).
-* It relies on a runtime JSON configuration (see examples/inventory.json) to
-determine the D-Bus object path(s) that hold interfaces and properties
-representing the VPD for a given VPD file path.
+
+- It parses all the records and keywords from the VPD, including large keywords
+  (Keywords that begin with a `#` and are > 255 bytes in length).
+- It relies on a runtime JSON configuration (see examples/inventory.json) to
+  determine the D-Bus object path(s) that hold interfaces and properties
+  representing the VPD for a given VPD file path.
 
 Making the application runtime JSON driven allows us to support multiple systems
 (with different FRU configurations) to be supported in a single code image as
 well as making the application more flexible for future improvements.
 
 ## TODOs and Future Improvements
- 1. The long-term goal is to completely do away with the build time YAML driven
-configurations and instead reconcile the OpenPower VPD parser and the IBM VPD
-parser applications into a single runtime JSON driven application.
- 2. Add details to the README on how to configure and build the application.
- 3. More JSON documentation.
- 4. Support for more IBM VPD formats.
- 5. VPD Write and tool documentation.
 
+1.  The long-term goal is to completely do away with the build time YAML driven
+    configurations and instead reconcile the OpenPower VPD parser and the IBM
+    VPD parser applications into a single runtime JSON driven application.
+2.  Add details to the README on how to configure and build the application.
+3.  More JSON documentation.
+4.  Support for more IBM VPD formats.
+5.  VPD Write and tool documentation.
diff --git a/examples/inventory.json b/examples/inventory.json
index 0101f21..fe9ae57 100644
--- a/examples/inventory.json
+++ b/examples/inventory.json
@@ -1,38 +1,38 @@
 {
-  "commonInterfaces": {
-    "xyz.openbmc_project.Inventory.Decorator.Asset": {
-      "PartNumber": {
-        "recordName": "VINI",
-        "keywordName": "PN"
-      },
-      "SerialNumber": {
-        "recordName": "VINI",
-        "keywordName": "SN"
-      }
+    "commonInterfaces": {
+        "xyz.openbmc_project.Inventory.Decorator.Asset": {
+            "PartNumber": {
+                "recordName": "VINI",
+                "keywordName": "PN"
+            },
+            "SerialNumber": {
+                "recordName": "VINI",
+                "keywordName": "SN"
+            }
+        },
+        "xyz.openbmc_project.Inventory.Item": {
+            "PrettyName": {
+                "recordName": "VINI",
+                "keywordName": "DR"
+            }
+        }
     },
-    "xyz.openbmc_project.Inventory.Item": {
-      "PrettyName": {
-        "recordName": "VINI",
-        "keywordName": "DR"
-      }
+    "frus": {
+        "/sys/devices/path/to/motherboard/eeeprom": {
+            "inventoryPath": "/bus/path/for/motherboardfru",
+            "extraInterfaces": {
+                "xyz.openbmc_project.Inventory.Item.Board.Motherboard": null
+            }
+        },
+        "/sys/devices/path/to/bmc/eeprom": {
+            "inventoryPath": "/bus/path/for/bmcfru",
+            "isReplacable": true,
+            "driverType": "at24",
+            "devAddress": "8-0051",
+            "busType": "i2c",
+            "extraInterfaces": {
+                "xyz.openbmc_project.Inventory.Item.Bmc": null
+            }
+        }
     }
-  },
-  "frus": {
-    "/sys/devices/path/to/motherboard/eeeprom": {
-      "inventoryPath": "/bus/path/for/motherboardfru",
-      "extraInterfaces": {
-        "xyz.openbmc_project.Inventory.Item.Board.Motherboard": null
-      }
-    },
-    "/sys/devices/path/to/bmc/eeprom": {
-      "inventoryPath": "/bus/path/for/bmcfru",
-      "isReplacable": true,
-      "driverType": "at24",
-      "devAddress": "8-0051",
-      "busType": "i2c",
-      "extraInterfaces": {
-        "xyz.openbmc_project.Inventory.Item.Bmc": null
-      }
-    }
-  }
 }
diff --git a/examples/sample_vpd_inventory_for_recollcetion.json b/examples/sample_vpd_inventory_for_recollcetion.json
index 8523164..7b16a05 100644
--- a/examples/sample_vpd_inventory_for_recollcetion.json
+++ b/examples/sample_vpd_inventory_for_recollcetion.json
@@ -1,1414 +1,1414 @@
 {
-  "commonInterfaces": {
-    "xyz.openbmc_project.Inventory.Decorator.Asset": {
-      "PartNumber": {
-        "recordName": "VINI",
-        "keywordName": "PN"
-      },
-      "SerialNumber": {
-        "recordName": "VINI",
-        "keywordName": "SN"
-      },
-      "SparePartNumber": {
-        "recordName": "VINI",
-        "keywordName": "FN"
-      },
-      "Model": {
-        "recordName": "VINI",
-        "keywordName": "CC"
-      },
-      "BuildDate": {
-        "recordName": "VR10",
-        "keywordName": "DC",
-        "encoding": "DATE"
-      }
-    },
-    "xyz.openbmc_project.Inventory.Item": {
-      "PrettyName": {
-        "recordName": "VINI",
-        "keywordName": "DR"
-      },
-     "Present": true
-    }
-  },
-  "frus": {
-    "/sys/bus/i2c/drivers/at24/8-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard",
-        "isSystemVpd": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Board.Motherboard": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system",
-        "inherit": false,
-        "isSystemVpd": true,
-        "copyRecords": ["VSYS"],
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.System": null,
-          "xyz.openbmc_project.Inventory.Decorator.Asset": {
+    "commonInterfaces": {
+        "xyz.openbmc_project.Inventory.Decorator.Asset": {
+            "PartNumber": {
+                "recordName": "VINI",
+                "keywordName": "PN"
+            },
             "SerialNumber": {
-              "recordName": "VSYS",
-              "keywordName": "SE"
+                "recordName": "VINI",
+                "keywordName": "SN"
+            },
+            "SparePartNumber": {
+                "recordName": "VINI",
+                "keywordName": "FN"
             },
             "Model": {
-              "recordName": "VSYS",
-              "keywordName": "TM"
+                "recordName": "VINI",
+                "keywordName": "CC"
             },
-            "SubModel": {
-              "recordName": "VSYS",
-              "keywordName": "BR"
+            "BuildDate": {
+                "recordName": "VR10",
+                "keywordName": "DC",
+                "encoding": "DATE"
             }
-          },
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Umts"
-          }
+        },
+        "xyz.openbmc_project.Inventory.Item": {
+            "PrettyName": {
+                "recordName": "VINI",
+                "keywordName": "DR"
+            },
+            "Present": true
         }
-      },
-      {
-        "inventoryPath": "/system/chassis",
-        "isSystemVpd": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Chassis": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot0",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot1",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C1"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot2",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C2"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot3",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C3"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot4",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C4"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot5",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C5"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot6",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C6"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot7",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C7"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot8",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C8"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot9",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C9"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot10",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C10"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcieslot11",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C11"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/powersupply0",
-        "inherit": false,
-        "extraInterfaces": {
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-E0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/powersupply1",
-        "inherit": false,
-        "extraInterfaces": {
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-E1"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/fan0",
-        "inherit": false,
-        "extraInterfaces": {
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-A0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/fan1",
-        "inherit": false,
-        "extraInterfaces": {
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-A1"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/fan2",
-        "inherit": false,
-        "extraInterfaces": {
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-A2"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/fan3",
-        "inherit": false,
-        "extraInterfaces": {
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-A3"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/fan4",
-        "inherit": false,
-        "extraInterfaces": {
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-A4"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/fan5",
-        "inherit": false,
-        "extraInterfaces": {
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-A5"
-          }
-        }
-      },
-      {
-      "inventoryPath": "/system/chassis/motherboard/tod_battery",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Battery": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-E0"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/8-0051/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Bmc": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C5"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet0",
-        "inherit": false,
-        "noprime": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Ethernet": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C5-T0"
-          },
-          "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
-            "MACAddress": {
-              "recordName": "VCFG",
-              "keywordName": "Z0",
-              "encoding": "MAC"
+    },
+    "frus": {
+        "/sys/bus/i2c/drivers/at24/8-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard",
+                "isSystemVpd": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Board.Motherboard": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system",
+                "inherit": false,
+                "isSystemVpd": true,
+                "copyRecords": ["VSYS"],
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.System": null,
+                    "xyz.openbmc_project.Inventory.Decorator.Asset": {
+                        "SerialNumber": {
+                            "recordName": "VSYS",
+                            "keywordName": "SE"
+                        },
+                        "Model": {
+                            "recordName": "VSYS",
+                            "keywordName": "TM"
+                        },
+                        "SubModel": {
+                            "recordName": "VSYS",
+                            "keywordName": "BR"
+                        }
+                    },
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Umts"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis",
+                "isSystemVpd": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Chassis": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot0",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot1",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C1"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot2",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C2"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot3",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C3"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot4",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C4"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot5",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C5"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot6",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C6"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot7",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C7"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot8",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C8"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot9",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C9"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot10",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C10"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcieslot11",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C11"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/powersupply0",
+                "inherit": false,
+                "extraInterfaces": {
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-E0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/powersupply1",
+                "inherit": false,
+                "extraInterfaces": {
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-E1"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/fan0",
+                "inherit": false,
+                "extraInterfaces": {
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-A0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/fan1",
+                "inherit": false,
+                "extraInterfaces": {
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-A1"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/fan2",
+                "inherit": false,
+                "extraInterfaces": {
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-A2"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/fan3",
+                "inherit": false,
+                "extraInterfaces": {
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-A3"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/fan4",
+                "inherit": false,
+                "extraInterfaces": {
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-A4"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/fan5",
+                "inherit": false,
+                "extraInterfaces": {
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-A5"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/tod_battery",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Battery": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-E0"
+                    }
+                }
             }
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet1",
-        "inherit": false,
-        "noprime": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Ethernet": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C5-T1"
-          },
-          "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
-            "MACAddress": {
-              "recordName": "VCFG",
-              "keywordName": "Z1",
-              "encoding": "MAC"
+        ],
+        "/sys/bus/i2c/drivers/at24/8-0051/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Bmc": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C5"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet0",
+                "inherit": false,
+                "noprime": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Ethernet": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C5-T0"
+                    },
+                    "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
+                        "MACAddress": {
+                            "recordName": "VCFG",
+                            "keywordName": "Z0",
+                            "encoding": "MAC"
+                        }
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet1",
+                "inherit": false,
+                "noprime": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Ethernet": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C5-T1"
+                    },
+                    "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
+                        "MACAddress": {
+                            "recordName": "VCFG",
+                            "keywordName": "Z1",
+                            "encoding": "MAC"
+                        }
+                    }
+                }
             }
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/0-0051/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/tpm_wilson",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Tpm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C22"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/7-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/base_op_panel_blyth",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Panel": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-D0"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/7-0051/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/lcd_op_panel_hill",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Panel": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-D1"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/9-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/vdd_vrm0",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Vrm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C14"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/10-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/vdd_vrm1",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Vrm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C23"
-          }
-        }
-      }
-    ],
-    "/sys/bus/spi/drivers/at25/spi12.0/eeprom": [
-      {
-          "inventoryPath": "/system/chassis/motherboard/cpu0",
-          "powerOffOnly" : true,
-          "offset": 196608,
-          "size": 65504,
-          "extraInterfaces": {
-              "xyz.openbmc_project.Inventory.Item.Cpu": null,
-              "com.ibm.ipzvpd.Location" : {
-                  "LocationCode" : "Ufcs-P0-C15"
-              }
-          }
-      }
-    ],
-    "/sys/bus/spi/drivers/at25/spi22.0/eeprom": [
-      {
-          "inventoryPath": "/system/chassis/motherboard/cpu1",
-          "powerOffOnly" : true,
-          "offset": 196608,
-          "size": 65504,
-          "inherit": false,
-          "extraInterfaces": {
-              "xyz.openbmc_project.Inventory.Item.Cpu": null,
-              "com.ibm.ipzvpd.Location" : {
-                  "LocationCode" : "Ufcs-P0-C15"
-              }
-          }
-      }
-    ],
-    "/sys/bus/spi/drivers/at25/spi32.0/eeprom": [
-      {
-          "inventoryPath": "/system/chassis/motherboard/cpu2",
-          "powerOffOnly" : true,
-          "offset": 196608,
-          "size": 65504,
-          "extraInterfaces": {
-              "xyz.openbmc_project.Inventory.Item.Cpu": null,
-              "com.ibm.ipzvpd.Location" : {
-                  "LocationCode" : "Ufcs-P0-C24"
-              }
-          }
-      }
-    ],
-    "/sys/bus/spi/drivers/at25/spi42.0/eeprom": [
-      {
-          "inventoryPath": "/system/chassis/motherboard/cpu3",
-          "powerOffOnly" : true,
-          "offset": 196608,
-          "size": 65504,
-          "inherit": false,
-          "extraInterfaces": {
-              "xyz.openbmc_project.Inventory.Item.Cpu": null,
-              "com.ibm.ipzvpd.Location" : {
-                  "LocationCode" : "Ufcs-P0-C24"
-              }
-          }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/4-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card0",
-        "bind" : "4-0050",
-	"isReplaceable" : true,
-	"busType" : "i2c",
-        "driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT0_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT0_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "xyz.openbmc_project.Inventory.Item.FabricAdapter": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card0/cxp_top",
-        "inherit": false,
-        "noprime": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Connector": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C0-T0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card0/cxp_bot",
-        "inherit": false,
-        "noprime": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Connector": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C0-T1"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/5-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card3",
-        "bind" : "5-0050",
-	"busType" : "i2c",
-        "driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT3_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT3_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "xyz.openbmc_project.Inventory.Item.FabricAdapter": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C3"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card3/cxp_top",
-        "inherit": false,
-        "noprime": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Connector": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C3-T0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card3/cxp_bot",
-        "inherit": false,
-        "noprime": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Connector": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C3-T1"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/5-0051/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card4",
-        "bind" : "5-0051",
-	"isReplaceable" : true,
-	"busType" : "i2c",
-        "driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT4_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT4_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "xyz.openbmc_project.Inventory.Item.FabricAdapter": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C4"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card4/cxp_top",
-        "inherit": false,
-        "noprime": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Connector": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C4-T0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card4/cxp_bot",
-        "inherit": false,
-        "noprime": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Connector": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C4-T1"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/11-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card10",
-        "bind" : "11-0050",
-	"isReplaceable" : true,
-	"busType" : "i2c",
-        "driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT10_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT10_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "xyz.openbmc_project.Inventory.Item.FabricAdapter": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C10"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card10/cxp_top",
-        "inherit": false,
-        "noprime": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Connector": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C10-T0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card10/cxp_bot",
-        "inherit": false,
-        "noprime": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Connector": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C10-T1"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/4-0052/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card2",
-        "bind" : "4-0052",
-	"isReplaceable" : true,
-	"busType" : "i2c",
-        "driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT2_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT2_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C2"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/6-0053/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card6",
-        "bind" : "6-0053",
-	"isReplaceable" : true,
-	"busType" : "i2c",
-        "driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT6_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT6_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C6"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/6-0052/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card7",
-        "bind" : "6-0052",
-	"isReplaceable" : true,
-	"busType" : "i2c",
-        "driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT7_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT7_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C7"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/6-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card9",
-        "bind" : "6-0050",
-	"isReplaceable" : true,
-	"busType" : "i2c",
-        "driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT9_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT9_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C9"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/11-0051/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card11",
-        "bind" : "11-0051",
-	"isReplaceable" : true,
-	"busType" : "i2c",
-        "driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT11_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT11_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C11"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/4-0051/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card1",
-        "bind" : "4-0051",
-	"isReplaceable" : true,
-	"busType" : "i2c",
-        "driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT1_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT1_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C1"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/6-0051/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/pcie_cable_card8",
-        "bind" : "6-0051",
-	"isReplaceable" : true,
-	"busType" : "i2c",
-	"driverType" : "at24",
-        "preAction" : {
-          "pin" : "SLOT8_PRSNT_EN_RSVD",
-          "value" : 1
-        },
-        "postActionFail" : {
-          "pin" : "SLOT8_PRSNT_EN_RSVD",
-          "value" : 0
-        },
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C8"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/13-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane0",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.DiskBackplane": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P1"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme0",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P1-C0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme1",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P1-C1"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme2",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P1-C2"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme3",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P1-C3"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme4",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P1-C4"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme5",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P1-C5"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme6",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P1-C6"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme7",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P1-C7"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/14-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane1",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.DiskBackplane": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P2"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme0",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P2-C0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme1",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P2-C1"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme2",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P2-C2"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme3",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P2-C3"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme4",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P2-C4"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme5",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P2-C5"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme6",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P2-C6"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme7",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P2-C7"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/15-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane2",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.DiskBackplane": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P3"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme0",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P3-C0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme1",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P3-C1"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme2",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P3-C2"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme3",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P3-C3"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme4",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P3-C4"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme5",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P3-C5"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme6",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P3-C6"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme7",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P3-C7"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/111-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm0",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C12"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/110-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm1",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C13"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/214-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm2",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C16"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/210-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm3",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C17"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/202-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm4",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C18"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/311-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm5",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C19"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/310-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm6",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C20"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/312-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm7",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C21"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/402-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm8",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C25"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/410-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm9",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C26"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/112-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm10",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C27"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/115-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm11",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C28"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/100-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm12",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C29"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/101-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm13",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C30"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/114-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm14",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C31"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/113-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm15",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C32"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/216-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm16",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C33"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/203-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm17",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C34"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/217-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm18",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C35"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/211-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm19",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C36"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/215-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm20",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C37"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/315-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm21",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C38"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/300-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm22",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C39"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/313-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm23",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C40"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/314-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm24",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C41"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/301-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm25",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C42"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/417-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm26",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C43"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/403-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm27",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C44"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/416-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm28",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C45"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/411-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm29",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C46"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/415-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm30",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C47"
-          }
-        }
-      }
-    ],
-    "/sys/bus/i2c/drivers/at24/414-0050/eeprom" :[
-      {
-        "inventoryPath": "/system/chassis/motherboard/dimm31",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Dimm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C48"
-          }
-        }
-      }
-    ]
-  }
+        ],
+        "/sys/bus/i2c/drivers/at24/0-0051/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/tpm_wilson",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Tpm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C22"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/7-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/base_op_panel_blyth",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Panel": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-D0"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/7-0051/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/lcd_op_panel_hill",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Panel": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-D1"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/9-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/vdd_vrm0",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Vrm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C14"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/10-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/vdd_vrm1",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Vrm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C23"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/spi/drivers/at25/spi12.0/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/cpu0",
+                "powerOffOnly": true,
+                "offset": 196608,
+                "size": 65504,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Cpu": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C15"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/spi/drivers/at25/spi22.0/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/cpu1",
+                "powerOffOnly": true,
+                "offset": 196608,
+                "size": 65504,
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Cpu": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C15"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/spi/drivers/at25/spi32.0/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/cpu2",
+                "powerOffOnly": true,
+                "offset": 196608,
+                "size": 65504,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Cpu": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C24"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/spi/drivers/at25/spi42.0/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/cpu3",
+                "powerOffOnly": true,
+                "offset": 196608,
+                "size": 65504,
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Cpu": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C24"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/4-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card0",
+                "bind": "4-0050",
+                "isReplaceable": true,
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT0_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT0_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "xyz.openbmc_project.Inventory.Item.FabricAdapter": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card0/cxp_top",
+                "inherit": false,
+                "noprime": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Connector": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C0-T0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card0/cxp_bot",
+                "inherit": false,
+                "noprime": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Connector": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C0-T1"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/5-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card3",
+                "bind": "5-0050",
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT3_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT3_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "xyz.openbmc_project.Inventory.Item.FabricAdapter": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C3"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card3/cxp_top",
+                "inherit": false,
+                "noprime": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Connector": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C3-T0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card3/cxp_bot",
+                "inherit": false,
+                "noprime": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Connector": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C3-T1"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/5-0051/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card4",
+                "bind": "5-0051",
+                "isReplaceable": true,
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT4_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT4_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "xyz.openbmc_project.Inventory.Item.FabricAdapter": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C4"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card4/cxp_top",
+                "inherit": false,
+                "noprime": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Connector": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C4-T0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card4/cxp_bot",
+                "inherit": false,
+                "noprime": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Connector": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C4-T1"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/11-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card10",
+                "bind": "11-0050",
+                "isReplaceable": true,
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT10_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT10_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "xyz.openbmc_project.Inventory.Item.FabricAdapter": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C10"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card10/cxp_top",
+                "inherit": false,
+                "noprime": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Connector": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C10-T0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card10/cxp_bot",
+                "inherit": false,
+                "noprime": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Connector": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C10-T1"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/4-0052/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card2",
+                "bind": "4-0052",
+                "isReplaceable": true,
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT2_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT2_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C2"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/6-0053/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card6",
+                "bind": "6-0053",
+                "isReplaceable": true,
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT6_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT6_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C6"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/6-0052/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card7",
+                "bind": "6-0052",
+                "isReplaceable": true,
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT7_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT7_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C7"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/6-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card9",
+                "bind": "6-0050",
+                "isReplaceable": true,
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT9_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT9_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C9"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/11-0051/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card11",
+                "bind": "11-0051",
+                "isReplaceable": true,
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT11_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT11_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C11"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/4-0051/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card1",
+                "bind": "4-0051",
+                "isReplaceable": true,
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT1_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT1_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C1"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/6-0051/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/pcie_cable_card8",
+                "bind": "6-0051",
+                "isReplaceable": true,
+                "busType": "i2c",
+                "driverType": "at24",
+                "preAction": {
+                    "pin": "SLOT8_PRSNT_EN_RSVD",
+                    "value": 1
+                },
+                "postActionFail": {
+                    "pin": "SLOT8_PRSNT_EN_RSVD",
+                    "value": 0
+                },
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeDevice": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C8"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/13-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane0",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.DiskBackplane": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P1"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme0",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P1-C0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme1",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P1-C1"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme2",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P1-C2"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme3",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P1-C3"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme4",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P1-C4"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme5",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P1-C5"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme6",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P1-C6"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane0/nvme7",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P1-C7"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/14-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane1",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.DiskBackplane": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P2"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme0",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P2-C0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme1",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P2-C1"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme2",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P2-C2"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme3",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P2-C3"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme4",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P2-C4"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme5",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P2-C5"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme6",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P2-C6"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane1/nvme7",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P2-C7"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/15-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane2",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.DiskBackplane": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P3"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme0",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P3-C0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme1",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P3-C1"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme2",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P3-C2"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme3",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P3-C3"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme4",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P3-C4"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme5",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P3-C5"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme6",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P3-C6"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/disk_backplane2/nvme7",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.PCIeSlot": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P3-C7"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/111-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm0",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C12"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/110-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm1",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C13"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/214-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm2",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C16"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/210-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm3",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C17"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/202-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm4",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C18"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/311-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm5",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C19"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/310-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm6",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C20"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/312-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm7",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C21"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/402-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm8",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C25"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/410-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm9",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C26"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/112-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm10",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C27"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/115-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm11",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C28"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/100-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm12",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C29"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/101-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm13",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C30"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/114-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm14",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C31"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/113-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm15",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C32"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/216-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm16",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C33"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/203-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm17",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C34"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/217-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm18",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C35"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/211-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm19",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C36"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/215-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm20",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C37"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/315-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm21",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C38"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/300-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm22",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C39"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/313-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm23",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C40"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/314-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm24",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C41"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/301-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm25",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C42"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/417-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm26",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C43"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/403-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm27",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C44"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/416-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm28",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C45"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/411-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm29",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C46"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/415-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm30",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C47"
+                    }
+                }
+            }
+        ],
+        "/sys/bus/i2c/drivers/at24/414-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/dimm31",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Dimm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C48"
+                    }
+                }
+            }
+        ]
+    }
 }
diff --git a/extra-properties-example.yaml b/extra-properties-example.yaml
index 7138db5..92cecf5 100644
--- a/extra-properties-example.yaml
+++ b/extra-properties-example.yaml
@@ -1,7 +1,7 @@
 /system/bmc:
     xyz.openbmc_project.Inventory.Decorator.Replaceable:
-        FieldReplaceable: 'false'
+        FieldReplaceable: "false"
 
 /system/bmc/ethernet:
     xyz.openbmc_project.Inventory.Decorator.Replaceable:
-        FieldReplaceable: 'false'
+        FieldReplaceable: "false"
diff --git a/test/vpd-manager-test/vpd_editor_test.json b/test/vpd-manager-test/vpd_editor_test.json
index f74e05a..516dcad 100644
--- a/test/vpd-manager-test/vpd_editor_test.json
+++ b/test/vpd-manager-test/vpd_editor_test.json
@@ -1,172 +1,172 @@
 {
-  "commonInterfaces": {
-    "xyz.openbmc_project.Inventory.Decorator.Asset": {
-      "PartNumber": {
-        "recordName": "VINI",
-        "keywordName": "PN"
-      },
-      "SerialNumber": {
-        "recordName": "VINI",
-        "keywordName": "SN"
-      },
-      "BuildDate": {
-        "recordName": "VR10",
-        "keywordName": "DC",
-        "encoding": "DATE"
-      }
-    },
-    "xyz.openbmc_project.Inventory.Item": {
-      "PrettyName": {
-        "recordName": "VINI",
-        "keywordName": "DR"
-      },
-     "Present": true
-    }
-  },
-  "frus": {
-    "/sys/bus/i2c/drivers/at24/8-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard",
-        "isSystemVpd": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Board.Motherboard": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system",
-        "inherit": false,
-        "isSystemVpd": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.System": null,
-          "xyz.openbmc_project.Inventory.Decorator.Asset": {
-            "SerialNumber": {
-              "recordName": "VSYS",
-              "keywordName": "SE"
+    "commonInterfaces": {
+        "xyz.openbmc_project.Inventory.Decorator.Asset": {
+            "PartNumber": {
+                "recordName": "VINI",
+                "keywordName": "PN"
             },
-            "Model": {
-              "recordName": "VSYS",
-              "keywordName": "TM"
+            "SerialNumber": {
+                "recordName": "VINI",
+                "keywordName": "SN"
+            },
+            "BuildDate": {
+                "recordName": "VR10",
+                "keywordName": "DC",
+                "encoding": "DATE"
             }
-          },
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Umts"
-          }
+        },
+        "xyz.openbmc_project.Inventory.Item": {
+            "PrettyName": {
+                "recordName": "VINI",
+                "keywordName": "DR"
+            },
+            "Present": true
         }
-      },
-      {
-        "inventoryPath": "/system/chassis",
-        "inherit": false,
-        "isSystemVpd": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Chassis": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs"
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a480.i2c-bus/i2c-8/8-0051/8-00510/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Bmc": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C5"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet0",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Ethernet": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C5-T0"
-          },
-          "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
-            "MACAddress": {
-              "recordName": "VCFG",
-              "keywordName": "Z0",
-              "encoding": "MAC"
+    },
+    "frus": {
+        "/sys/bus/i2c/drivers/at24/8-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard",
+                "isSystemVpd": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Board.Motherboard": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system",
+                "inherit": false,
+                "isSystemVpd": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.System": null,
+                    "xyz.openbmc_project.Inventory.Decorator.Asset": {
+                        "SerialNumber": {
+                            "recordName": "VSYS",
+                            "keywordName": "SE"
+                        },
+                        "Model": {
+                            "recordName": "VSYS",
+                            "keywordName": "TM"
+                        }
+                    },
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Umts"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis",
+                "inherit": false,
+                "isSystemVpd": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Chassis": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs"
+                    }
+                }
             }
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet1",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Ethernet": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C5-T1"
-          },
-          "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
-            "MACAddress": {
-              "recordName": "VCFG",
-              "keywordName": "Z1",
-              "encoding": "MAC"
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a480.i2c-bus/i2c-8/8-0051/8-00510/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Bmc": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C5"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet0",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Ethernet": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C5-T0"
+                    },
+                    "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
+                        "MACAddress": {
+                            "recordName": "VCFG",
+                            "keywordName": "Z0",
+                            "encoding": "MAC"
+                        }
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet1",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Ethernet": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C5-T1"
+                    },
+                    "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
+                        "MACAddress": {
+                            "recordName": "VCFG",
+                            "keywordName": "Z1",
+                            "encoding": "MAC"
+                        }
+                    }
+                }
             }
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a080.i2c-bus/i2c-0/0-0051/0-00510/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/tpm_wilson",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Tpm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C22"
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-7/7-0050/7-00500/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/base_op_panel_blyth",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Panel": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-D0"
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-7/7-0051/7-00510/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/lcd_op_panel_hill",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Panel": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-D1"
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a500.i2c-bus/i2c-9/9-0050/9-00500/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/vdd_vrm0",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Vrm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C14"
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a580.i2c-bus/i2c-10/10-0050/10-00500/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/vdd_vrm1",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Vrm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C23"
-          }
-        }
-      }
-    ]
-  }
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a080.i2c-bus/i2c-0/0-0051/0-00510/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/tpm_wilson",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Tpm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C22"
+                    }
+                }
+            }
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-7/7-0050/7-00500/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/base_op_panel_blyth",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Panel": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-D0"
+                    }
+                }
+            }
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-7/7-0051/7-00510/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/lcd_op_panel_hill",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Panel": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-D1"
+                    }
+                }
+            }
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a500.i2c-bus/i2c-9/9-0050/9-00500/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/vdd_vrm0",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Vrm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C14"
+                    }
+                }
+            }
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a580.i2c-bus/i2c-10/10-0050/10-00500/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/vdd_vrm1",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Vrm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C23"
+                    }
+                }
+            }
+        ]
+    }
 }
diff --git a/test/vpd-manager-test/vpd_reader_test.json b/test/vpd-manager-test/vpd_reader_test.json
index f74e05a..516dcad 100644
--- a/test/vpd-manager-test/vpd_reader_test.json
+++ b/test/vpd-manager-test/vpd_reader_test.json
@@ -1,172 +1,172 @@
 {
-  "commonInterfaces": {
-    "xyz.openbmc_project.Inventory.Decorator.Asset": {
-      "PartNumber": {
-        "recordName": "VINI",
-        "keywordName": "PN"
-      },
-      "SerialNumber": {
-        "recordName": "VINI",
-        "keywordName": "SN"
-      },
-      "BuildDate": {
-        "recordName": "VR10",
-        "keywordName": "DC",
-        "encoding": "DATE"
-      }
-    },
-    "xyz.openbmc_project.Inventory.Item": {
-      "PrettyName": {
-        "recordName": "VINI",
-        "keywordName": "DR"
-      },
-     "Present": true
-    }
-  },
-  "frus": {
-    "/sys/bus/i2c/drivers/at24/8-0050/eeprom": [
-      {
-        "inventoryPath": "/system/chassis/motherboard",
-        "isSystemVpd": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Board.Motherboard": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system",
-        "inherit": false,
-        "isSystemVpd": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.System": null,
-          "xyz.openbmc_project.Inventory.Decorator.Asset": {
-            "SerialNumber": {
-              "recordName": "VSYS",
-              "keywordName": "SE"
+    "commonInterfaces": {
+        "xyz.openbmc_project.Inventory.Decorator.Asset": {
+            "PartNumber": {
+                "recordName": "VINI",
+                "keywordName": "PN"
             },
-            "Model": {
-              "recordName": "VSYS",
-              "keywordName": "TM"
+            "SerialNumber": {
+                "recordName": "VINI",
+                "keywordName": "SN"
+            },
+            "BuildDate": {
+                "recordName": "VR10",
+                "keywordName": "DC",
+                "encoding": "DATE"
             }
-          },
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Umts"
-          }
+        },
+        "xyz.openbmc_project.Inventory.Item": {
+            "PrettyName": {
+                "recordName": "VINI",
+                "keywordName": "DR"
+            },
+            "Present": true
         }
-      },
-      {
-        "inventoryPath": "/system/chassis",
-        "inherit": false,
-        "isSystemVpd": true,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Chassis": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs"
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a480.i2c-bus/i2c-8/8-0051/8-00510/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Bmc": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C5"
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet0",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Ethernet": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C5-T0"
-          },
-          "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
-            "MACAddress": {
-              "recordName": "VCFG",
-              "keywordName": "Z0",
-              "encoding": "MAC"
+    },
+    "frus": {
+        "/sys/bus/i2c/drivers/at24/8-0050/eeprom": [
+            {
+                "inventoryPath": "/system/chassis/motherboard",
+                "isSystemVpd": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Board.Motherboard": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system",
+                "inherit": false,
+                "isSystemVpd": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.System": null,
+                    "xyz.openbmc_project.Inventory.Decorator.Asset": {
+                        "SerialNumber": {
+                            "recordName": "VSYS",
+                            "keywordName": "SE"
+                        },
+                        "Model": {
+                            "recordName": "VSYS",
+                            "keywordName": "TM"
+                        }
+                    },
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Umts"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis",
+                "inherit": false,
+                "isSystemVpd": true,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Chassis": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs"
+                    }
+                }
             }
-          }
-        }
-      },
-      {
-        "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet1",
-        "inherit": false,
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Ethernet": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C5-T1"
-          },
-          "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
-            "MACAddress": {
-              "recordName": "VCFG",
-              "keywordName": "Z1",
-              "encoding": "MAC"
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a480.i2c-bus/i2c-8/8-0051/8-00510/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Bmc": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C5"
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet0",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Ethernet": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C5-T0"
+                    },
+                    "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
+                        "MACAddress": {
+                            "recordName": "VCFG",
+                            "keywordName": "Z0",
+                            "encoding": "MAC"
+                        }
+                    }
+                }
+            },
+            {
+                "inventoryPath": "/system/chassis/motherboard/ebmc_card_bmc/ethernet1",
+                "inherit": false,
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Ethernet": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C5-T1"
+                    },
+                    "xyz.openbmc_project.Inventory.Item.NetworkInterface": {
+                        "MACAddress": {
+                            "recordName": "VCFG",
+                            "keywordName": "Z1",
+                            "encoding": "MAC"
+                        }
+                    }
+                }
             }
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a080.i2c-bus/i2c-0/0-0051/0-00510/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/tpm_wilson",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Tpm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C22"
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-7/7-0050/7-00500/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/base_op_panel_blyth",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Panel": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-D0"
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-7/7-0051/7-00510/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/lcd_op_panel_hill",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Panel": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-D1"
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a500.i2c-bus/i2c-9/9-0050/9-00500/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/vdd_vrm0",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Vrm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C14"
-          }
-        }
-      }
-    ],
-    "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a580.i2c-bus/i2c-10/10-0050/10-00500/nvmem": [
-      {
-        "inventoryPath": "/system/chassis/motherboard/vdd_vrm1",
-        "extraInterfaces": {
-          "xyz.openbmc_project.Inventory.Item.Vrm": null,
-          "com.ibm.ipzvpd.Location" : {
-              "LocationCode" : "Ufcs-P0-C23"
-          }
-        }
-      }
-    ]
-  }
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a080.i2c-bus/i2c-0/0-0051/0-00510/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/tpm_wilson",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Tpm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C22"
+                    }
+                }
+            }
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-7/7-0050/7-00500/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/base_op_panel_blyth",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Panel": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-D0"
+                    }
+                }
+            }
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a400.i2c-bus/i2c-7/7-0051/7-00510/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/lcd_op_panel_hill",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Panel": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-D1"
+                    }
+                }
+            }
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a500.i2c-bus/i2c-9/9-0050/9-00500/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/vdd_vrm0",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Vrm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C14"
+                    }
+                }
+            }
+        ],
+        "/sys/devices/platform/ahb/ahb:apb/ahb:apb:bus@1e78a000/1e78a580.i2c-bus/i2c-10/10-0050/10-00500/nvmem": [
+            {
+                "inventoryPath": "/system/chassis/motherboard/vdd_vrm1",
+                "extraInterfaces": {
+                    "xyz.openbmc_project.Inventory.Item.Vrm": null,
+                    "com.ibm.ipzvpd.Location": {
+                        "LocationCode": "Ufcs-P0-C23"
+                    }
+                }
+            }
+        ]
+    }
 }