34 lines
1.4 KiB
JSON
34 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:Blog",
|
|
"title": "Blog",
|
|
"description": "A [blog](https://en.wikipedia.org/wiki/Blog), sometimes known as a \"weblog\". Note that the individual posts ([[BlogPosting]]s) in a [[Blog]] are often colloquially referred to by the same term.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
|
|
"$ref": "schema:CreativeWork"
|
|
}
|
|
],
|
|
"properties": {
|
|
"blogPost": {
|
|
"description": "A posting that is part of this blog.",
|
|
"oneOf": [
|
|
{ "$ref": "schema:BlogPosting" },
|
|
{ "type": "array", "items": { "$ref": "schema:BlogPosting" } }
|
|
]
|
|
},
|
|
"blogPosts": {
|
|
"description": "Indicates a post that is part of a [[Blog]]. Note that historically, what we term a \"Blog\" was once known as a \"weblog\", and that what we term a \"BlogPosting\" is now often colloquially referred to as a \"blog\".",
|
|
"oneOf": [
|
|
{ "$ref": "schema:BlogPosting" },
|
|
{ "type": "array", "items": { "$ref": "schema:BlogPosting" } }
|
|
]
|
|
},
|
|
"issn": {
|
|
"description": "The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.",
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|