Download raw schema →

FieldTypeRequiredDescription
idintegerrequiredUnique numeric identifier for this group.
comic_idstringrequiredID of the parent comic.
group_idstringrequiredUnique identifier for this group within its comic (e.g. act-1).
order_indexintegerrequiredSort order among groups in the same comic.
page_countintegerrequiredNumber of pages assigned to this group.
namestring | nulloptionalHuman-readable name (e.g. Act 1).
first_pageinteger | nulloptionalPage number of the first page in this group.
last_pageinteger | nulloptionalPage number of the last page in this group.
created_atstring (date-time)optionalISO 8601 timestamp when this group was created.

Example

{
  "id": 1,
  "comic_id": "my-comic",
  "group_id": "act-1",
  "name": "Act 1",
  "order_index": 1,
  "page_count": 180,
  "first_page": 1,
  "last_page": 180
}