diff --git a/client/ayon_core/tools/sceneinventory/model.py b/client/ayon_core/tools/sceneinventory/model.py index 52d2a94d05..fac1e52b50 100644 --- a/client/ayon_core/tools/sceneinventory/model.py +++ b/client/ayon_core/tools/sceneinventory/model.py @@ -144,9 +144,13 @@ class InventoryModel(QtGui.QStandardItemModel): ) formatting_data = { - "product": repre_info.product_name, - "productType": repre_info.product_type, - "representation": repre_info.representation_name + "product": { + "name": repre_info.product_name, + "type": repre_info.product_type, + }, + "representation": { + "name": repre_info.representation_name, + } } formatting_data.update(folder_data) return formatting_data