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,34 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:Comment",
"title": "Comment",
"description": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks.",
"type": "object",
"allOf": [
{
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"$ref": "schema:CreativeWork"
}
],
"properties": {
"downvoteCount": {
"description": "The number of downvotes this question, answer or comment has received from the community.",
"type": "integer"
},
"parentItem": {
"description": "The parent of a question, answer or item in general. Typically used for Q/A discussion threads e.g. a chain of comments with the first comment being an [[Article]] or other [[CreativeWork]]. See also [[comment]] which points from something to a comment about it.",
"anyOf": [{ "$ref": "schema:Comment" }, { "$ref": "schema:CreativeWork" }]
},
"sharedContent": {
"description": "A CreativeWork such as an image, video, or audio clip shared as part of this posting.",
"oneOf": [
{ "$ref": "schema:CreativeWork" },
{ "type": "array", "items": { "$ref": "schema:CreativeWork" } }
]
},
"upvoteCount": {
"description": "The number of upvotes this question, answer or comment has received from the community.",
"type": "integer"
}
}
}