diff --git a/beat/editor/backend/assetmodel.py b/beat/editor/backend/assetmodel.py
index d5877a02972c738bcb32ebaeb8283bccdcf21d9d..17388b7996dd6ba0af3567d176811297176c32e2 100644
--- a/beat/editor/backend/assetmodel.py
+++ b/beat/editor/backend/assetmodel.py
@@ -42,7 +42,8 @@ class AssetType:
     Experiment = 4
     Library = 5
     Plotter = 6
-    Toolchain = 7
+    PlotterParameters = 7
+    Toolchain = 8
 
     @classmethod
     def path(cls, type_):
@@ -59,6 +60,8 @@ class AssetType:
             path = "libraries"
         elif type_ == cls.Plotter:
             path = "plotters"
+        elif type_ == cls.PlotterParameters:
+            path = "plotterparameters"
         elif type_ == cls.Toolchain:
             path = "toolchains"