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,33 @@
{
"$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"
}
}
}