41 lines
1.6 KiB
JSON
41 lines
1.6 KiB
JSON
{
|
|
"$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" } }
|
|
]
|
|
}
|
|
}
|
|
}
|