Issue
BaseIssue
Bases: BaseModel
A data model representing the base issue for most issue responses.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The unique identifier of the issue.
TYPE:
|
series |
The generic series associated with the issue.
TYPE:
|
number |
The number of the issue.
TYPE:
|
cover_date |
The cover date of the issue.
TYPE:
|
store_date |
The store date of the issue.
TYPE:
|
CommonIssue
Bases: GenericIssue
A data model representing a common issue, extending the generic issue model.
| ATTRIBUTE | DESCRIPTION |
|---|---|
name |
The name of the issue.
TYPE:
|
image |
The image URL of the issue.
TYPE:
|
cover_hash |
The hash value of the issue cover.
TYPE:
|
Credit
Bases: BaseModel
A class representing a credit with ID, creator, and role.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The ID of the credit.
TYPE:
|
creator |
The creator associated with the credit.
TYPE:
|
role |
The role of the credit.
TYPE:
|
GenericIssue
Bases: BaseIssue
A data model representing a generic issue, extending the base issue model.
| ATTRIBUTE | DESCRIPTION |
|---|---|
modified |
The date and time when the issue was last modified.
TYPE:
|
Issue
Bases: BaseModel
A data model representing an issue with its full details.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The unique identifier of the issue.
TYPE:
|
publisher |
The publisher of the issue.
TYPE:
|
imprint |
The imprint of the issue or None.
TYPE:
|
series |
The series to which the issue belongs.
TYPE:
|
number |
The number of the issue.
TYPE:
|
alt_number |
The alternative number of the issue.
TYPE:
|
title |
The title of the issue collection.
TYPE:
|
story_titles |
The titles of the stories in the issue.
TYPE:
|
cover_date |
The cover date of the issue.
TYPE:
|
store_date |
The store date of the issue.
TYPE:
|
foc_date |
The Final Order Cutoff date of the issue.
TYPE:
|
price |
The price of the issue.
TYPE:
|
price_currency |
The currency type for the price field.
TYPE:
|
rating |
The rating of the issue.
TYPE:
|
sku |
The stock keeping unit (SKU) of the issue.
TYPE:
|
isbn |
The International Standard Book Number (ISBN) of the issue.
TYPE:
|
upc |
The Universal Product Code (UPC) of the issue.
TYPE:
|
page_count |
The number of pages in the issue.
TYPE:
|
desc |
The description of the issue.
TYPE:
|
image |
The image URL of the issue.
TYPE:
|
cover_hash |
The hash value of the issue cover.
TYPE:
|
arcs |
The arcs associated with the issue.
TYPE:
|
credits |
The credits for the issue.
TYPE:
|
characters |
The characters featured in the issue.
TYPE:
|
teams |
The teams involved in the issue.
TYPE:
|
universes |
The universes related to the issue.
TYPE:
|
reprints |
The reprints of the issue.
TYPE:
|
variants |
The variants of the issue.
TYPE:
|
cv_id |
The Comic Vine ID of the issue.
TYPE:
|
gcd_id |
The Grand Comics Database ID of the issue.
TYPE:
|
resource_url |
The URL of the issue resource.
TYPE:
|
modified |
The date and time when the issue was last modified.
TYPE:
|
ReadingListIssue
Bases: GenericIssue
A data model representing an issue in a reading list.
| ATTRIBUTE | DESCRIPTION |
|---|---|
cv_id |
The Comic Vine ID of the issue.
TYPE:
|
gcd_id |
The Grand Comics Database ID of the issue.
TYPE:
|
Reprint
Bases: BaseModel
A data model representing a reprint.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The unique identifier of the reprint.
TYPE:
|
issue |
The issue being reprinted.
TYPE:
|
Variant
Bases: BaseModel
A data model representing a variant cover.
| ATTRIBUTE | DESCRIPTION |
|---|---|
name |
The name of the variant.
TYPE:
|
price |
The price of the variant.
TYPE:
|
sku |
The stock keeping unit (SKU) of the variant.
TYPE:
|
upc |
The Universal Product Code (UPC) of the variant.
TYPE:
|
image |
The image URL of the variant.
TYPE:
|