-
Notifications
You must be signed in to change notification settings - Fork 14
/
about.json
37 lines (37 loc) · 1.03 KB
/
about.json
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
{
"$id": "https://w3id.org/kim/amb/20231019/schemas/about.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Subject",
"description": "The subject of the learning resource, taken from Destatis classification or OpenEduHub-Fächersystematik",
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["Concept"]
},
"id": {
"type": "string",
"format": "uri"
},
"prefLabel": {
"title": "The preferred label of the concept",
"description": "A localized string for prefLabel of a SKOS concept",
"$ref": "https://w3id.org/kim/amb/20231019/schemas/localizedString.json"
}
},
"required": ["id"]
},
"contains": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uri",
"pattern": "(^https://w3id.org/kim/hochschulfaechersystematik/.*|http://w3id.org/kim/schulfaecher/.*)"
}
},
"required": ["id"]
}
}