Skip to main content

KomgaBookMetadataDto

Komga book metadata DTO

authors object[]

Authors list

  • Array [
  • namestringrequired

    Author name

    rolestringrequired

    Author role (WRITER, PENCILLER, INKER, COLORIST, LETTERER, COVER, EDITOR)

  • ]
  • authorsLockboolean

    Whether authors are locked

    createdstringrequired

    Created timestamp (ISO 8601)

    isbnstring

    ISBN

    isbnLockboolean

    Whether ISBN is locked

    lastModifiedstringrequired

    Last modified timestamp (ISO 8601)

    links object[]

    Links

  • Array [
  • labelstringrequired

    Link label

    urlstringrequired

    Link URL

  • ]
  • linksLockboolean

    Whether links are locked

    numberstringrequired

    Book number (display string)

    numberLockboolean

    Whether number is locked

    numberSortnumber<double>required

    Number for sorting (float for chapter ordering)

    numberSortLockboolean

    Whether number_sort is locked

    releaseDatestring | nullnullable

    Release date (YYYY-MM-DD or full ISO 8601)

    releaseDateLockboolean

    Whether release_date is locked

    summarystring

    Book summary

    summaryLockboolean

    Whether summary is locked

    tagsstring[]

    Tags list

    tagsLockboolean

    Whether tags are locked

    titlestringrequired

    Book title

    titleLockboolean

    Whether title is locked

    KomgaBookMetadataDto
    {
    "authors": [
    {
    "name": "string",
    "role": "string"
    }
    ],
    "authorsLock": true,
    "created": "string",
    "isbn": "string",
    "isbnLock": true,
    "lastModified": "string",
    "links": [
    {
    "label": "string",
    "url": "string"
    }
    ],
    "linksLock": true,
    "number": "string",
    "numberLock": true,
    "numberSort": 0,
    "numberSortLock": true,
    "releaseDate": "string",
    "releaseDateLock": true,
    "summary": "string",
    "summaryLock": true,
    "tags": [
    "string"
    ],
    "tagsLock": true,
    "title": "string",
    "titleLock": true
    }