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,26 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:HyperToc",
"title": "HyperToc",
"description": "A HyperToc represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. Items in the table of contents are indicated using the [[tocEntry]] property, and typed [[HyperTocEntry]]. For cases where the same larger work is split into multiple files, [[associatedMedia]] can be used on individual [[HyperTocEntry]] items.",
"type": "object",
"allOf": [
{
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"$ref": "schema:CreativeWork"
}
],
"properties": {
"associatedMedia": {
"description": "A media object that encodes this CreativeWork. This property is a synonym for encoding.",
"$ref": "schema:MediaObject"
},
"tocEntry": {
"description": "Indicates a [[HyperTocEntry]] in a [[HyperToc]].",
"oneOf": [
{ "$ref": "schema:HyperTocEntry" },
{ "type": "array", "items": { "$ref": "schema:HyperTocEntry" } }
]
}
}
}