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,40 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:PublicationIssue",
"title": "PublicationIssue",
"description": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\\n\\nSee also [blog post](https://blog-schema.org/2014/09/02/schema-org-support-for-bibliographic-relationships-and-periodicals/).",
"type": "object",
"allOf": [
{
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"$ref": "schema:CreativeWork"
}
],
"properties": {
"issueNumber": {
"description": "Identifies the issue of publication; for example, \"iii\" or \"2\".",
"oneOf": [
{ "anyOf": [{ "type": "integer" }, { "type": "string" }] },
{
"type": "array",
"items": { "anyOf": [{ "type": "integer" }, { "type": "string" }] }
}
]
},
"pageEnd": {
"description": "The page on which the work ends; for example \"138\" or \"xvi\".",
"anyOf": [{ "type": "integer" }, { "type": "string" }]
},
"pageStart": {
"description": "The page on which the work starts; for example \"135\" or \"xiii\".",
"anyOf": [{ "type": "integer" }, { "type": "string" }]
},
"pagination": {
"description": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".",
"oneOf": [
{ "type": "string" },
{ "type": "array", "items": { "type": "string" } }
]
}
}
}