# Interface: ArraySchema<T>

Defined in: [schema.ts:852](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L852)

A schema representing a return value or object property that is an array (list) of items. The items are themselves schema definitions, which may refer to scalars or other objects.

## Extends

- `BaseSchema`

## Type Parameters

| Type Parameter | Default type | | --- | --- | | `T` *extends* [`Schema`](../../type-aliases/Schema/) | [`Schema`](../../type-aliases/Schema/) |

## Properties

### description?

> `optional` **description**: `string`

Defined in: [schema.ts:285](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L285)

A explanation of this object schema property shown to the user in the UI.

If your pack has an object schema with many properties, it may be useful to explain the purpose or contents of any property that is not self-evident.

#### Inherited from

`BaseSchema.description`

______________________________________________________________________

### items

> **items**: `T`

Defined in: [schema.ts:856](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L856)

A schema for the items of this array.

______________________________________________________________________

### type

> **type**: [`Array`](../../enumerations/ValueType/#array)

Defined in: [schema.ts:854](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L854)

Identifies this schema as an array.
