-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_taxonomies.py
95 lines (93 loc) · 3.1 KB
/
example_taxonomies.py
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
BIG_DATA_TAXONOMY = {
"about": [
{
"type": "Concept",
"id": "http://w3id.org/kim/schulfaecher/s1013",
"inScheme": {"id": "http://w3id.org/kim/schulfaecher/"},
}
],
"@context": [
"https://w3id.org/kim/amb/context.jsonld",
"https://schema.org",
],
"dateCreated": "2020-03-17T09:33:15",
"dateModified": "2020-04-30T07:48:36",
"creator": [
{
"type": "Person",
"id": "https://serlo.org/18981",
"name": "wolfgang",
}
],
"description": """In diesem Themenbereich auf Serlo findest du drei kurze Artikel,
die den Begriff „Big Data“ einfach und anschaulich erklären –
die Links dazu findest du unten, am Ende der Einleitung. Viel Spaß!""",
"headline": "Big Data – einfach erklärt",
"id": "https://serlo.org/155948",
"identifier": {"propertyID": "UUID", "type": "PropertyValue", "value": 155948},
"image": "https://assets.serlo.org/5e6d30a60f21a_33bd694cc1e54c7be4a3363277ce1aeec8c5d0c0.jpg",
"inLanguage": ["de"],
"isAccessibleForFree": True,
"isFamilyFriendly": True,
"maintainer": {
"id": "https://serlo.org/organization",
"name": "Serlo Education e.V.",
"type": "Organization",
},
"name": "Big Data – einfach erklärt",
"publisher": [
{
"id": "https://serlo.org/organization",
"name": "Serlo Education e.V.",
"type": "Organization",
}
],
"type": ["LearningResource"],
}
GAME_THEORY_TAXONOMY = {
"about": [
{
"type": "Concept",
"id": "http://w3id.org/kim/schulfaecher/s1013",
"inScheme": {"id": "http://w3id.org/kim/schulfaecher/"},
}
],
"@context": [
"https://w3id.org/kim/amb/context.jsonld",
"https://schema.org",
],
"dateCreated": "2021-02-04T20:08:55",
"dateModified": "2021-02-04T20:13:40",
"creator": [
{
"type": "Person",
"id": "https://serlo.org/18981",
"name": "wolfgang",
}
],
"description": """Spieltheorie ist eine mathematische Disziplin,
die das rationale Verhalten von Entscheidungsträgern in interaktiven Situationen analysiert,
in denen die Ergebnisse von den Entscheidungen anderer abhängen.""",
"headline": "Spieltheorie",
"id": "https://serlo.org/192971",
"identifier": {"propertyID": "UUID", "type": "PropertyValue", "value": 192971},
"image": "https://assets.serlo.org/5e6d30a60f21a_33bd694cc1e54c7be4a3363277ce1aeec8c5d0c0.jpg",
"inLanguage": ["de"],
"isAccessibleForFree": True,
"isFamilyFriendly": True,
"maintainer": {
"id": "https://serlo.org/organization",
"name": "Serlo Education e.V.",
"type": "Organization",
},
"name": "Spieltheorie",
"publisher": [
{
"id": "https://serlo.org/organization",
"name": "Serlo Education e.V.",
"type": "Organization",
}
],
"type": ["LearningResource"],
}
taxonomies = [BIG_DATA_TAXONOMY, GAME_THEORY_TAXONOMY]