> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/products/llms.txt)
> Source: https://docs.saleor.io/api-reference/products/inputs/collection-create-input

# CollectionCreateInput Input Type

No description

```graphql
input CollectionCreateInput {
  isPublished: Boolean
  name: String
  slug: String
  description: JSONString
  backgroundImage: Upload
  backgroundImageAlt: String
  seo: SeoInput
  publicationDate: Date @deprecated
  metadata: [MetadataInput!]
  privateMetadata: [MetadataInput!]
  products: [ID!]
}
```

<a id="fields"></a>

### Fields

<a id="is-published"></a>

#### [`isPublished`](#is-published) ● [`Boolean`](/api-reference/miscellaneous/scalars/boolean.md)

Informs whether a collection is published.

<a id="name"></a>

#### [`name`](#name) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Name of the collection.

<a id="slug"></a>

#### [`slug`](#slug) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Slug of the collection.

<a id="description"></a>

#### [`description`](#description) ● [`JSONString`](/api-reference/miscellaneous/scalars/jsonstring.md)

Description of the collection.

Rich text format. For reference see [https://editorjs.io/](https://editorjs.io/)

<a id="background-image"></a>

#### [`backgroundImage`](#background-image) ● [`Upload`](/api-reference/miscellaneous/scalars/upload.md)

Background image file.

<a id="background-image-alt"></a>

#### [`backgroundImageAlt`](#background-image-alt) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Alt text for an image.

<a id="seo"></a>

#### [`seo`](#seo) ● [`SeoInput`](/api-reference/miscellaneous/inputs/seo-input.md)

Search engine optimization fields.

<a id="metadata"></a>

#### [`metadata`](#metadata) ● [`[MetadataInput!]`](/api-reference/miscellaneous/inputs/metadata-input.md)

Fields required to update the collection metadata. Can be read by any API client authorized to read the object it's attached to.

Warning: never store sensitive information, including financial data such as credit card details.

<a id="private-metadata"></a>

#### [`privateMetadata`](#private-metadata) ● [`[MetadataInput!]`](/api-reference/miscellaneous/inputs/metadata-input.md)

Fields required to update the collection private metadata. Requires permissions to modify and to read the metadata of the object it's attached to.

Warning: never store sensitive information, including financial data such as credit card details.

<a id="products"></a>

#### [`products`](#products) ● [`[ID!]`](/api-reference/miscellaneous/scalars/id.md)

List of products to be added to the collection.

Show deprecatedHide deprecated

<a id="publication-date"></a>

#### [`publicationDate`](#publication-date) ● [`Date`](/api-reference/miscellaneous/scalars/date.md)

DEPRECATED

No longer supported

Publication date. ISO 8601 standard.

<a id="member-of"></a>

### Member Of

[`collectionCreate`](/api-reference/products/mutations/collection-create.md) mutation
