| Index: tools/json_schema_compiler/test/choices.json
|
| diff --git a/tools/json_schema_compiler/test/choices.json b/tools/json_schema_compiler/test/choices.json
|
| index 6a13eb501b57df97ef8eb04b636909ab176c2dfa..e53ac13ea338efe1f0909c3e620f5f56249e7c29 100644
|
| --- a/tools/json_schema_compiler/test/choices.json
|
| +++ b/tools/json_schema_compiler/test/choices.json
|
| @@ -95,6 +95,35 @@
|
| ]
|
| }
|
| ]
|
| + },
|
| + {
|
| + "name": "returnMultipleChoices",
|
| + "type": "function",
|
| + "description": "Gives back two values where each is an integer or a list of integers.",
|
| + "parameters": [
|
| + {
|
| + "name": "callback",
|
| + "type": "function",
|
| + "parameters": [
|
| + {
|
| + "name": "firstResult",
|
| + "choices": [
|
| + {"type": "array", "items": {"type": "integer", "minimum": 0}},
|
| + {"type": "integer"}
|
| + ],
|
| + "description": "Some integers."
|
| + },
|
| + {
|
| + "name": "secondResult",
|
| + "choices": [
|
| + {"type": "array", "items": {"type": "integer", "minimum": 0}},
|
| + {"type": "integer"}
|
| + ],
|
| + "description": "Some integers."
|
| + }
|
| + ]
|
| + }
|
| + ]
|
| }
|
| ]
|
| }
|
|
|