-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecf-teacher-absences.csvts.json
54 lines (54 loc) · 1.26 KB
/
ecf-teacher-absences.csvts.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"title": "Lehrerabwesenheiten",
"description": "ECF-Schema für Lehrerabwesenheiten",
"table": {
"name": "TeacherAbsences.csv",
"type": "unordered",
"columns": [
{
"name": "Id",
"description": "Eindeutige Id",
"type": "string"
},
{
"name": "Description",
"description": "Beschreibung",
"type": "string",
"optional": true,
"nullable": true
},
{
"name": "StartTimepoint",
"description": "Start der Abwesenheit",
"type": "date-time",
"formats": [
"yyyy-MM-dd'T'HH:mm:ss",
"yyyy-MM-dd'T'HH:mm",
"yyyy-MM-dd"
]
},
{
"name": "EndTimepoint",
"description": "Ende der Abwesenheit",
"type": "date-time",
"formats": [
"yyyy-MM-dd'T'HH:mm:ss",
"yyyy-MM-dd'T'HH:mm",
"yyyy-MM-dd"
]
},
{
"name": "TeacherId",
"description": "Lehrer (Verweis auf Teachers.csv)",
"type": "string"
},
{
"name": "ReasonId",
"description": "Abwesenheitsgrund (Verweis auf TeacherAbsenceReasons.csv)",
"type": "string",
"optional": true,
"nullable": true
}
]
}
}