Newer
Older
---
template: reference
foo: bar
---
# Arrays Schema
```
https://example.com/schemas/arrays
```
This is an example schema with examples for multiple array types and their constraints.
| [Abstract](../abstract.md) | Extensible | [Status](../status.md) | Identifiable | Custom Properties | Additional Properties | Defined In |
|----------------------------|------------|------------------------|--------------|-------------------|-----------------------|------------|
| Can be instantiated | No | Experimental | No | Forbidden | Permitted | [arrays.schema.json](arrays.schema.json) |
# Arrays Properties
| Property | Type | Required | Defined by |
|----------|------|----------|------------|
| [boollist](#boollist) | `boolean[]` | Optional | Arrays (this schema) |
| [coordinatelist](#coordinatelist) | `number[][]` | Optional | Arrays (this schema) |
| [intlist](#intlist) | `integer[]` | Optional | Arrays (this schema) |
| [list](#list) | `string[]` | Optional | Arrays (this schema) |
| [listlist](#listlist) | `array[]` | Optional | Arrays (this schema) |
| [numlist](#numlist) | `number[]` | Optional | Arrays (this schema) |
| [objectlist](#objectlist) | `object[]` | Optional | Arrays (this schema) |
| [stringlistlist](#stringlistlist) | `string[][]` | Optional | Arrays (this schema) |
| `*` | any | Additional | this schema *allows* additional properties |
* type: `boolean[]`
* at least `1` items in the array
This is an array of coordinates in three-dimensional space.
* type: `number[][]` (nested array)
* no more than `10` items in the array
All items must be of the type:
`number`
* minimum value: `0`
* maximum value: `10`
A coordinate, specified by `x`, `y`, and `z` values
`intlist`
* is optional
* type: `integer[]`
* between `1` and `10` items in the array
* defined in this schema
All items must be of the type:
`integer`
All items must be of the type:
* type: `array[]` (nested array)
### listlist Type
Nested array type: `array`
## numlist
This is an array
`numlist`
* is optional
* no more than `10` items in the array
* defined in this schema
### numlist Type
All items must be of the type:
`number`
* minimum value: `10`
## objectlist
An array of simple objects
`objectlist`
* is optional
* type: `object[]`
* defined in this schema
### objectlist Type
Array type: `object[]`
All items must be of the type:
`object` with following properties:
| `a`| string | **Required** |
| `b`| integer | Optional |
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#### a
The a property
`a`
* is **required**
* type: `string`
##### a Type
`string`
#### b
The b property
`b`
* is optional
* type: `integer`
##### b Type
`integer`
This is an array of arrays of strings
* type: `string[][]` (nested array)