Add inventory interfaces for OpenBMC

A first pass at a machine parseable DBus specification for the
inventory features of OpenBMC.

Change-Id: Ia061ab2d5c2ea9d06cd991940303250cef48ab66
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/xyz/openbmc_project/Inventory/Manager.interface.yaml b/xyz/openbmc_project/Inventory/Manager.interface.yaml
new file mode 100644
index 0000000..f5b235c
--- /dev/null
+++ b/xyz/openbmc_project/Inventory/Manager.interface.yaml
@@ -0,0 +1,24 @@
+description: >
+    Implement to provide inventory management features.
+
+    An OpenBMC implementation providing inventory functions may provide zero
+    or more implementations on the inventory namespace root.  An implementing
+    service should additionally implement org.freedesktop.DBus.ObjectManager
+    on the inventory namespace root.
+methods:
+    - name: Notify
+      description: >
+          Signal the implementing service that an item is ready to have its
+          state managed.
+      parameters:
+        - name: path
+          type: o
+          description: >
+              The path of the item to be managed, relative to the inventory
+              namespace root.
+        - name: object
+          type: a{sa{sv}}
+          description: >
+              The fully enumerated item to be managed.
+
+# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4