ItemBookInput Input
Description
Input fields for creating or updating a book item, including bibliographic information and metadata.
Declaration
input ItemBookInput {
title: String
subtitle: String
authors: [String]
publisher: String
categories: [String]
pageCount: Int
language: String
publishedDate: Date
weight: Int
format: String
assetLink: String
images: [ItemImageInput]
identifiers: [ItemIdentifierInput]
}
Fields
| Name | Type | Description |
|---|---|---|
title | String | Title of the book. |
subtitle | String | Subtitle of the book, if applicable. |
authors | [String] | List of author names. |
publisher | String | Publisher name. |
categories | [String] | List of category or genre names for the book. |
pageCount | Int | Total number of pages in the book. |
language | String | Language code of the book content (e.g., "en", "fr", "de"). |
publishedDate | Date | Publication date of the book. |
weight | Int | Weight of the book in grams. |
format | String | Physical format of the book (e.g., "Hardcover", "Paperback", "eBook"). |
assetLink | String | Link to an external asset or resource related to the book. |
images | [ItemImageInput] | List of images associated with the book, typically including cover images. |
identifiers | [ItemIdentifierInput] | List of identifiers such as ISBN-10, ISBN-13, or other catalog numbers. |