-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathchapter.json
More file actions
130 lines (130 loc) · 3.76 KB
/
Copy pathchapter.json
File metadata and controls
130 lines (130 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://quadriga-dk.github.io/quadriga-schema/v1.0.0/chapter.json",
"title": "chapter – Kapitel",
"description": "Beschreibung eines Kapitels.",
"type": "object",
"additionalProperties": false,
"required": [
"title",
"description",
"url",
"time-required",
"learning-objectives",
"learning-goal"
],
"properties": {
"title": {
"title": "title – Kapitelüberschrift",
"description": "Kapitelüberschrift.\n\nDieser Titel sollte beim Zitieren eine Kapitels genutzt werden.",
"$ref": "multilingual-text.json"
},
"description": {
"title": "description – Kapitelinhaltsbeschreibung",
"description": "Beschreibung des Kapitelinhalts.",
"$ref": "multilingual-text.json"
},
"url": {
"title": "url – URL der Web-Ansicht",
"description": "URL zum direkten Zugriff auf die erste Seite der 'Leseansicht' (Website) des Kapitel.",
"type": "string",
"format": "uri",
"x-mappings": {
"dc": null,
"dcat": null,
"dcterms": null,
"hermes": null,
"lrmi": null,
"modalia": {
"relation": "skos:exactMatch",
"target": "schema:url"
},
"schema": {
"relation": "skos:exactMatch",
"target": "schema:url"
}
}
},
"time-required": {
"title": "time-required – Bearbeitungszeit (Kapitel)",
"description": "Geschätzte Bearbeitungsdauer des Kapitels.",
"$ref": "time-required.json"
},
"learning-goal": {
"$ref": "learning-goal.json"
},
"learning-objectives": {
"$ref": "learning-objectives.json"
},
"supplemented-by": {
"title": "supplemented-by – Ergänzende / Genutzte Materialien",
"description": "Liste von Verweisen und jeweils einer kurzen Beschreibung zu im Kapitel genutzten bzw. erwähnten Werken, Datensätzen, …, die für das Durcharbeiten des Kapitels benötigt werden.",
"x-mappings": {
"$comment": "Die Mappings beziehen sich auf die Beziehung zwischen Kapitel und einzelnem Material. Da `supplemented-by` eine Liste ist, sind die Mappings nur `skos:closeMatch` zu den jeweiligen Per-Item-Prädikaten.",
"dc": null,
"dcat": null,
"dcterms": [
{
"relation": "skos:closeMatch",
"target": "dcterms:relation"
},
{
"relation": "skos:closeMatch",
"target": "dcterms:references"
}
],
"hermes": null,
"lrmi": null,
"modalia": {
"relation": "skos:closeMatch",
"target": "https://w3id.org/citedcat-ap/isSupplementedBy"
},
"schema": null
},
"oneOf": [
{
"type": "array",
"minItems": 1,
"uniqueItems": true,
"items": {
"oneOf": [
{
"$ref": "multilingual-text.json"
},
{
"$ref": "supplemental-material.json"
}
]
}
},
{
"oneOf": [
{
"$ref": "multilingual-text.json"
},
{
"$ref": "supplemental-material.json"
}
]
}
]
},
"language": {
"title": "language – Kapitelsprache",
"description": "Sprache(n) des Kapitels. Überschreibt die auf Buchebene definierte Sprache für dieses Kapitel.",
"$ref": "language.json"
}
},
"x-mappings": {
"dc": null,
"dcat": null,
"dcterms": null,
"hermes": null,
"lrmi": null,
"modalia": null,
"schema": {
"relation": "skos:exactMatch",
"target": "schema:Chapter"
}
}
}