Index: tools/json_schema_compiler/test/arrays.json |
diff --git a/tools/json_schema_compiler/test/arrays.json b/tools/json_schema_compiler/test/arrays.json |
index 26e5825bc820484af722e2c651bd1ce7944f8fa3..9734ff8afdff85fac64ff7af6e490bac07d9caac 100644 |
--- a/tools/json_schema_compiler/test/arrays.json |
+++ b/tools/json_schema_compiler/test/arrays.json |
@@ -63,6 +63,23 @@ |
] |
}, |
{ |
+ "name": "anyArray", |
+ "type": "function", |
+ "description": "Takes some Items.", |
+ "parameters": [ |
+ { |
+ "name": "anys", |
+ "type": "array", |
+ "items": {"type": "any"} |
+ }, |
+ { |
+ "name": "callback", |
+ "type": "function", |
+ "parameters": [] |
+ } |
+ ] |
+ }, |
+ { |
"name": "refArray", |
"type": "function", |
"description": "Takes some Items.", |