-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
402 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"title": "Schüler-Fremdsprachenfolge", | ||
"description": "ECF-Schema für Schüler-Fremdsprachenfolge", | ||
"table": { | ||
"name": "StudentForeignLanguages.csv", | ||
"type": "unordered", | ||
"columns": [ | ||
{ | ||
"name": "Id", | ||
"description": "Eindeutige Id", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "StudentId", | ||
"description": "Schüler (Verweis auf Students.csv)", | ||
"type": "string" | ||
} | ||
{ | ||
"name": "SubjectId", | ||
"description": "Fach mit Kategorie 'Fremdsprache' (Verweis auf Subjects.csv)", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "SequenceNo", | ||
"description": "1., 2., ... Fremdsprache", | ||
"type": "int", | ||
"minValue": "1", | ||
}, | ||
{ | ||
"name": "FromLevel", | ||
"description": "Von Klassenstufe", | ||
"type": "int", | ||
"minValue": "1", | ||
}, | ||
{ | ||
"name": "ToLevel", | ||
"description": "Bis Klassenstufe", | ||
"type": "int", | ||
"minValue": "1", | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,59 @@ | ||
{ | ||
"title": "Schüler-Fachdaten", | ||
"description": "ECF-Schema für Schüler-Fachdaten", | ||
"tables": [ | ||
{ | ||
"name": "StudentSubjects.csv", | ||
"type": "unordered", | ||
"columns": [ | ||
{ | ||
"name": "Id", | ||
"description": "Eindeutige Id", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "SchoolClassId", | ||
"description": "Klasse (Verweis auf SchoolClasses.csv)", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "SubjectId", | ||
"description": "Fach (Verweis auf Subjects.csv)", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "CourseTypeId", | ||
"description": "Kursart (Verweis auf CourseTypes.csv)", | ||
"type": "string", | ||
"optional": true, | ||
"nullable": true | ||
}, | ||
{ | ||
"name": "CourseNo", | ||
"description": "Kursnummer", | ||
"type": "int", | ||
"optional": true, | ||
"nullable": true | ||
}, | ||
{ | ||
"name": "EntryDate", | ||
"description": "Start der Kursteilnahme", | ||
"type": "date", | ||
"formats": [ | ||
"yyyy-MM-dd" | ||
], | ||
"optional": true, | ||
"nullable": true | ||
}, | ||
{ | ||
"name": "ExitDate", | ||
"description": "Ende der Kursteilnahme", | ||
"type": "date", | ||
"formats": [ | ||
"yyyy-MM-dd" | ||
], | ||
"optional": true, | ||
"nullable": true | ||
} | ||
] | ||
} | ||
] | ||
"table": { | ||
"name": "StudentSubjects.csv", | ||
"type": "unordered", | ||
"columns": [ | ||
{ | ||
"name": "Id", | ||
"description": "Eindeutige Id", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "SchoolClassId", | ||
"description": "Klasse (Verweis auf SchoolClasses.csv)", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "SubjectId", | ||
"description": "Fach (Verweis auf Subjects.csv)", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "CourseTypeId", | ||
"description": "Kursart (Verweis auf CourseTypes.csv)", | ||
"type": "string", | ||
"optional": true, | ||
"nullable": true | ||
}, | ||
{ | ||
"name": "CourseNo", | ||
"description": "Kursnummer", | ||
"type": "int", | ||
"optional": true, | ||
"nullable": true | ||
}, | ||
{ | ||
"name": "EntryDate", | ||
"description": "Start der Kursteilnahme", | ||
"type": "date", | ||
"formats": [ | ||
"yyyy-MM-dd" | ||
], | ||
"optional": true, | ||
"nullable": true | ||
}, | ||
{ | ||
"name": "ExitDate", | ||
"description": "Ende der Kursteilnahme", | ||
"type": "date", | ||
"formats": [ | ||
"yyyy-MM-dd" | ||
], | ||
"optional": true, | ||
"nullable": true | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.