-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusf.schema.json
78 lines (78 loc) · 2.14 KB
/
usf.schema.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/usf.json",
"title": "Universal Schedule Format (USF)",
"description": "A compact and efficient format for storing school schedules.",
"type": "object",
"properties": {
"version": {
"type": "integer",
"description": "USF version"
},
"subjects": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"simplified_name": { "type": "string" },
"teacher": { "type": "string" },
"room": { "type": "string" }
},
"additionalProperties": false
},
"description": "Mapping of subject names to their details."
},
"periods": {
"type": "array",
"items": {
"type": "array",
"items": [
{
"type": "string",
"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$"
},
{
"type": "string",
"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$"
}
],
"minItems": 2,
"maxItems": 2
},
"description": "List of time periods, each containing a start and end time."
},
"timetable": {
"type": "array",
"items": {
"type": "array",
"items": [
{
"type": "integer",
"minimum": 1,
"maximum": 7,
"description": "Day of the week (1=Monday, 7=Sunday)."
},
{
"type": "string",
"enum": ["all", "even", "odd"],
"description": "Week type."
},
{
"type": "string",
"description": "Subject name (must match keys in 'subjects')."
},
{
"type": "integer",
"minimum": 1,
"description": "Class period (1-based index, must match 'periods')."
}
],
"minItems": 4,
"maxItems": 4
},
"description": "Schedule entries, each defining a class occurrence."
}
},
"required": ["version", "subjects", "periods", "timetable"],
"additionalProperties": false
}