Skip to content

Concept

BaseConcept

Bases: BaseModel

Contains fields for all Concepts.

ATTRIBUTE DESCRIPTION
aliases

List of names used by the Concept, collected in a string.

TYPE: str | None

api_url

Url to the resource in the Comicvine API.

TYPE: str

date_added

Date and time when the Concept was added.

TYPE: datetime

date_last_updated

Date and time when the Concept was last updated.

TYPE: datetime

description

Long description of the Concept.

TYPE: str | None

first_issue

First issue this concept appears.

TYPE: IssueEntry | None

id

Identifier used by Comicvine.

TYPE: int

image

Different sized images, posters and thumbnails for the Concept.

TYPE: Image

issue_count

Number of issues with the Concept.

TYPE: int

name

Name/Title of the Concept.

TYPE: str

site_url

Url to the resource in Comicvine.

TYPE: str

start_year

Year the Concept first appeared.

TYPE: int | None

summary

Short description of the Concept.

TYPE: str | None

Concept

Bases: BaseConcept

Extends BaseConcept by including all the list references of a concept.

ATTRIBUTE DESCRIPTION
issues

List of issues the Concept appears.

TYPE: list[IssueEntry]

volumes

List of volumes the Concept appears.

TYPE: list[GenericEntry]

ConceptEntry

Bases: BaseConcept

Contains all the fields available when viewing a list of Concepts.