4 "description": "The arrays API.",
14 "enum": ["one", "two", "three"]
22 "enum": ["one", "two", "three"]
25 "id": "EnumArrayReference",
37 "id": "EnumArrayMixed",
44 "enum": ["one", "two", "three"]
56 "$ref": "enums.Enumeration"
62 "id": "OptionalEnumArrayType",
69 "enum": ["one", "two", "three"]
76 "id": "BasicArrayType",
81 "items": {"type": "string"}
85 "items": {"type": "boolean"}
89 "items": {"type": "number"}
93 "items": {"type": "integer"}
107 "id": "RefArrayType",
112 "items": { "$ref": "Item" }
119 "name": "integerArray",
121 "description": "Takes some integers.",
126 "items": {"type": "integer"}
138 "description": "Takes some Items.",
143 "items": {"type": "any"}
153 "name": "objectArray",
155 "description": "Takes some Items.",
162 "additionalProperties": {"type": "integer"}
175 "description": "Takes some Items.",
180 "items": {"$ref": "Item"}
190 "name": "justChoices",
192 "description": "Takes some Choices.",
197 { "type": "integer" },
198 { "type": "boolean" },
200 "items": {"$ref": "Item"}
212 "name": "choicesArray",
214 "description": "Takes some Choices.",
221 { "type": "integer" },
222 { "type": "boolean" },
224 "items": {"$ref": "Item"}
237 "name": "returnIntegerArray",
239 "description": "Returns some integers.",
248 "items": {"type": "integer"}
255 "name": "returnRefArray",
257 "description": "Returns some Items.",
266 "items": {"$ref": "Item"}