diff -r 8923b382c055 -r 72a3b8faba89 json/schema/extractorstaticdata.json
--- a/json/schema/extractorstaticdata.json
+++ b/json/schema/extractorstaticdata.json
@@ -50,7 +50,8 @@
                 "^[a-zA-Z0-9_-]+$": {
                     "$ref": "http://vamp-plugins.org/piper/json/schema/staticoutputdescriptor#"
                 }
-            }
+            },
+            "additionalProperties": false
         }
     },
     "required": [ "key", "basic", "version",
diff -r 8923b382c055 -r 72a3b8faba89 json/schema/loadresponse.json
--- a/json/schema/loadresponse.json
+++ b/json/schema/loadresponse.json
@@ -15,15 +15,14 @@
 	},
         "programParameters": {
             "type": "object",
-            "patternProperties": {
-		"^[a-zA-Z0-9_-]+$": {
-	            "type": "object",
-	            "patternProperties": {
-		        "^[a-zA-Z0-9_-]+$": {
-		            "type": "number"
-		        }
+            "additionalProperties": {
+	        "type": "object",
+	        "patternProperties": {
+		    "^[a-zA-Z0-9_-]+$": {
+		        "type": "number"
                     }
-                }
+                },
+                "additionalProperties": false
             }
         }
     },
