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 | Extensible | Custom Properties | Defined In |
|----------|------------|-------------------|------------|
| Can be instantiated | No | Forbidden | [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) |
| [stringlistlist](#stringlistlist) | `string[][]` | Optional | Arrays (this schema) |
## list
This is an array
`list`
* is optional
All items must be of the type:
`string`
## listlist
This is an array of arrays
`listlist`
* is optional
* defined in this schema
### listlist Type
## stringlistlist
This is an array of arrays of strings
`stringlistlist`
* is optional
* defined in this schema
### stringlistlist Type
## intlist
This is an array
`intlist`
* is optional
* defined in this schema
### intlist Type
All items must be of the type:
`integer`
## boollist
This is an array
`boollist`
* is optional
* at least `1` items in the array
* defined in this schema
### boollist Type
All items must be of the type:
`boolean`
## 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`
## coordinatelist
This is an array of coordinates in three-dimensional space.
`coordinatelist`
* is optional
* no more than `10` items in the array
* defined in this schema
### coordinatelist Type