big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,109 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:VisualArtwork",
"title": "VisualArtwork",
"description": "A work of art that is primarily visual in character.",
"type": "object",
"allOf": [
{
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"$ref": "schema:CreativeWork"
}
],
"properties": {
"artEdition": {
"description": "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\").",
"anyOf": [{ "type": "integer" }, { "type": "string" }]
},
"artMedium": {
"description": "The material used. (E.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)",
"anyOf": [{ "type": "string", "format": "uri" }, { "type": "string" }]
},
"artform": {
"description": "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.",
"oneOf": [
{
"anyOf": [{ "type": "string", "format": "uri" }, { "type": "string" }]
},
{
"type": "array",
"items": {
"anyOf": [
{ "type": "string", "format": "uri" },
{ "type": "string" }
]
}
}
]
},
"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"
},
"artworkSurface": {
"description": "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.",
"anyOf": [{ "type": "string", "format": "uri" }, { "type": "string" }]
},
"colorist": {
"description": "The individual who adds color to inked drawings.",
"$ref": "schema:Person"
},
"depth": {
"description": "The depth of the item.",
"anyOf": [
{ "type": "string", "$comment": "https://schema.org/Distance" },
{ "$ref": "schema:QuantitativeValue" }
]
},
"height": {
"description": "The height of the item.",
"anyOf": [
{ "type": "string", "$comment": "https://schema.org/Distance" },
{ "$ref": "schema:QuantitativeValue" }
]
},
"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"
},
"surface": {
"description": "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.",
"oneOf": [
{
"anyOf": [{ "type": "string", "format": "uri" }, { "type": "string" }]
},
{
"type": "array",
"items": {
"anyOf": [
{ "type": "string", "format": "uri" },
{ "type": "string" }
]
}
}
]
},
"weight": {
"description": "The weight of the product or person.",
"anyOf": [
{ "type": "string", "$comment": "https://schema.org/Mass" },
{ "$ref": "schema:QuantitativeValue" }
]
},
"width": {
"description": "The width of the item.",
"anyOf": [
{ "type": "string", "$comment": "https://schema.org/Distance" },
{ "$ref": "schema:QuantitativeValue" }
]
}
}
}