Array Field

The Array Field is used when you need to have a set of "repeating" Fields. It stores an array of objects containing fields that you define. These fields can be of any type, including other arrays to achieve infinitely nested structures.

Arrays are useful for many different types of content from simple to complex, such as:

Array field with two Rows in Payload Admin Panel
Admin Panel screenshot of an Array field with two Rows

To create an Array Field, set the type to array in your Field Config:

1
import type { Field } from 'payload/types'
2
3
export const MyArrayField: Field = {
4
// ...
5
type: 'array',
6
fields: [
7
// ...
8
],
9
}

Config Options

OptionDescription
name *To be used as the property name when stored and retrieved from the database. More
labelText used as the heading in the Admin Panel or an object with keys for each language. Auto-generated from name if not defined.
fields *Array of field types to correspond to each row of the Array.
validateProvide a custom validation function that will be executed on both the Admin Panel and the backend. More
minRowsA number for the fewest allowed items during validation when a value is present.
maxRowsA number for the most allowed items during validation when a value is present.
saveToJWTIf this field is top-level and nested in a config supporting Authentication, include its data in the user JWT.
hooksProvide Field Hooks to control logic for this field. More details.
accessProvide Field Access Control to denote what users can see and do with this field's data. More details.
hiddenRestrict this field's visibility from all APIs entirely. Will still be saved to the database, but will not appear in any API or the Admin Panel.
defaultValueProvide an array of row data to be used for this field's default value. More
localizedEnable localization for this field. Requires localization to be enabled in the Base config. If enabled, a separate, localized set of all data within this Array will be kept, so there is no need to specify each nested field as localized.
requiredRequire this field to have a value.
labelsCustomize the row labels appearing in the Admin dashboard.
adminAdmin-specific configuration. More details.
customExtension point for adding custom data (e.g. for plugins)
interfaceNameCreate a top level, reusable Typescript interface & GraphQL type.
dbNameCustom table name for the field when using SQL Database Adapter (Postgres). Auto-generated from name if not defined.
typescriptSchemaOverride field type generation with providing a JSON schema

* An asterisk denotes that a property is required.

Admin Options

The customize the appearance and behavior of the Array Field in the Admin Panel, you can use the admin option:

1
import type { Field } from 'payload/types'
2
3
export const MyArrayField: Field = {
4
// ...
5
admin: {
6
// ...
7
},
8
}

The Array Field inherits all of the default options from the base Field Admin Config, plus the following additional options:

OptionDescription
initCollapsedSet the initial collapsed state
components.RowLabelFunction or React component to be rendered as the label on the array row. Receives ({ data, index, path }) as args
isSortableDisable order sorting by setting this value to false

Example

In this example, we have an Array Field called slider that contains a set of fields for a simple image slider. Each row in the array has a title, image, and caption. We also customize the row label to display the title if it exists, or a default label if it doesn't.

1
import { CollectionConfig } from 'payload'
2
3
export const ExampleCollection: CollectionConfig = {
4
slug: 'example-collection',
5
fields: [
6
{
7
name: 'slider', // required
8
type: 'array', // required
9
label: 'Image Slider',
10
minRows: 2,
11
maxRows: 10,
12
interfaceName: 'CardSlider', // optional
13
labels: {
14
singular: 'Slide',
15
plural: 'Slides',
16
},
17
fields: [
18
// required
19
{
20
name: 'title',
21
type: 'text',
22
},
23
{
24
name: 'image',
25
type: 'upload',
26
relationTo: 'media',
27
required: true,
28
},
29
{
30
name: 'caption',
31
type: 'text',
32
},
33
],
34
admin: {
35
components: {
36
RowLabel: ({ data, index }) => {
37
return data?.title || `Slide ${String(index).padStart(2, '0')}`
38
},
39
},
40
},
41
},
42
],
43
}
Next

Blocks Field