-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathschema.json
More file actions
146 lines (146 loc) · 3.82 KB
/
Copy pathschema.json
File metadata and controls
146 lines (146 loc) · 3.82 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"@context": {
"dc": "http://purl.org/dc/elements/1.1/",
"dcat": "http://www.w3.org/ns/dcat#",
"dcterms": "http://purl.org/dc/terms/",
"lrmi": "http://purl.org/dcx/lrmi-terms/",
"modalia": "https://purl.org/ontology/modalia#",
"schema": "http://schema.org/",
"skos": "http://www.w3.org/2004/02/skos/core#"
},
"$id": "https://quadriga-dk.github.io/quadriga-schema/v1.0.0/schema.json",
"title": "QUADRIGA Fallstudie",
"description": "Eine in QUADRIGA entwickelte Fallstudie (ein Buch, eine Sammlung von OERs, als Jupyter Book implementiert), die nach dem QUADRIGA-Metadatenschema beschrieben wird.\n\nDieses Schema ist zu finden unter <https://quadriga-dk.github.io/quadriga-schema/v1.0.0/> (diese Seite) bzw. <https://github.com/quadriga-dk/quadriga-schema>.\n\nEs werden Mappings zu gebräuchlichen Metadatenschemata für mehrere hier definierte (Unter-)Felder definiert. Eine Darstellung dieser in einer Matrix-Ansicht existiert ebenfalls: <https://quadriga-dk.github.io/quadriga-schema/v1.0.0/mapping-matrix.html>\n\n(Unter-)Felder können selbst wieder Entitäten sein (so bspw. eine Person, welche die Rolle Autor:in einnimmt.)",
"type": "object",
"required": [
"title",
"authors",
"keywords",
"description",
"table-of-contents",
"discipline",
"research-object-type",
"target-group",
"time-required",
"language",
"contributors",
"identifier",
"git",
"url",
"chapters",
"date-issued",
"date-modified",
"version",
"context-of-creation",
"quality-assurance",
"learning-resource-type",
"schema-version",
"license"
],
"additionalProperties": false,
"properties": {
"title": {
"$ref": "title.json"
},
"authors": {
"$ref": "authors.json"
},
"keywords": {
"$ref": "keywords.json"
},
"description": {
"$ref": "description.json"
},
"table-of-contents": {
"$ref": "table-of-contents.json"
},
"discipline": {
"$ref": "discipline.json"
},
"research-object-type": {
"$ref": "research-object-type.json"
},
"target-group": {
"$ref": "target-group.json"
},
"time-required": {
"$ref": "time-required.json"
},
"language": {
"$ref": "language.json"
},
"contributors": {
"$ref": "contributors.json"
},
"identifier": {
"$ref": "identifier.json"
},
"git": {
"$ref": "git.json"
},
"url": {
"$ref": "url.json"
},
"prerequisites": {
"$ref": "prerequisites.json"
},
"used-tools": {
"$ref": "used-tools.json"
},
"chapters": {
"$ref": "chapters.json"
},
"date-issued": {
"$ref": "date-issued.json"
},
"date-modified": {
"$ref": "date-modified.json"
},
"version": {
"$ref": "version.json"
},
"context-of-creation": {
"$ref": "context-of-creation.json"
},
"quality-assurance": {
"$ref": "quality-assurance.json"
},
"learning-resource-type": {
"$ref": "learning-resource-type.json"
},
"schema-version": {
"$ref": "schema-version.json"
},
"license": {
"$ref": "license.json"
}
},
"x-mappings": {
"dc": null,
"dcat": {
"relation": "skos:closeMatch",
"target": "dcat:Dataset"
},
"dcterms": null,
"hermes": null,
"lrmi": {
"relation": "skos:exactMatch",
"target": "lrmi:LearningResource"
},
"modalia": {
"relation": "skos:exactMatch",
"target": "https://github.com/tibonto/educor#EducationalResource"
},
"schema": [
{
"relation": "skos:exactMatch",
"target": "schema:LearningResource"
},
{
"relation": "skos:exactMatch",
"target": "schema:Book"
}
]
}
}