36 lines
1.4 KiB
JSON
36 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:ComicStory",
|
|
"title": "ComicStory",
|
|
"description": "The term \"story\" is any indivisible, re-printable\n \tunit of a comic, including the interior stories, covers, and backmatter. Most\n \tcomics have at least two stories: a cover (ComicCoverArt) and an interior story.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
|
|
"$ref": "schema:CreativeWork"
|
|
}
|
|
],
|
|
"properties": {
|
|
"artist": {
|
|
"description": "The primary artist for a work\n \tin a medium other than pencils or digital line art--for example, if the\n \tprimary artwork is done in watercolors or digital paints.",
|
|
"$ref": "schema:Person"
|
|
},
|
|
"colorist": {
|
|
"description": "The individual who adds color to inked drawings.",
|
|
"$ref": "schema:Person"
|
|
},
|
|
"inker": {
|
|
"description": "The individual who traces over the pencil drawings in ink after pencils are complete.",
|
|
"$ref": "schema:Person"
|
|
},
|
|
"letterer": {
|
|
"description": "The individual who adds lettering, including speech balloons and sound effects, to artwork.",
|
|
"$ref": "schema:Person"
|
|
},
|
|
"penciler": {
|
|
"description": "The individual who draws the primary narrative artwork.",
|
|
"$ref": "schema:Person"
|
|
}
|
|
}
|
|
}
|