-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema-course.jsonld
More file actions
64 lines (64 loc) · 1.7 KB
/
schema-course.jsonld
File metadata and controls
64 lines (64 loc) · 1.7 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
{
"@context": "https://schema.org",
"@type": "Course",
"name": "YOUR COURSE TITLE",
"description": "Brief summary of the course aims and topics covered.",
"url": "https://your.site/course-page",
"courseCode": "COURSE123",
"image": "https://your.site/course-image.png",
"provider": {
"@type": "Organization",
"name": "4TU.ResearchData",
"url": "https://data.4tu.nl"
},
"educationalLevel": "Beginner",
"audience": [
"Data stewards",
"Data managers"
],
"timeRequired": "P2D",
"coursePrerequisites": [
{
"@type": "CreativeWork",
"name": "Basic Unix shell knowledge"
},
{
"@type": "Course",
"name": "Introduction to Programming"
}
],
"teaches": [
"Fetching and uploading datasets to 4TU.ResearchData",
"Using curl requests to the API"
],
"hasCourseInstance": [
{
"@type": "CourseInstance",
"name": "API for RDM Workshop",
"description": "Two-day, hands-on introductory workshop on Git and open science best practices.",
"courseMode": "InPerson",
"startDate": "2025-06-17T09:30:00+02:00",
"endDate": "2025-06-18T16:00:00+02:00",
"inLanguage": "en-GB",
"location": {
"@type": "Place",
"name": "TU Delft Library",
"address": {
"@type": "PostalAddress",
"streetAddress": "Campuslaan 99",
"addressLocality": "Eindhoven",
"addressRegion": "North Brabant",
"postalCode": "5612AZ",
"addressCountry": "NL"
}
},
"instructor": [
{
"@type": "Person",
"name": "Dr. Leila Iñigo de la Cruz",
"email": "l.m.inigodelacruz@tudelft.nl"
}
]
}
]
}