-
Notifications
You must be signed in to change notification settings - Fork 19
/
schedule.json
28 lines (28 loc) · 1.01 KB
/
schedule.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "A date range and associated due date, connected with the parent FixedDueDateSchedule.",
"properties": {
"from": {
"type": "string",
"format": "date-time",
"description": "The start of a date range during which materials checked out will be assigned the due date in the 'due' field. Conforms to the ISO 8601 date and time format."
},
"to": {
"type": "string",
"format": "date-time",
"description": "The end of a date range during which materials checked out will be assigned the due date in the 'due' field. Conforms to the ISO 8601 date and time format."
},
"due": {
"type": "string",
"format": "date-time",
"description": "The due date for materials checked out in the date range between the 'from' and 'to' dates. Conforms to the ISO 8601 date and time format."
}
},
"required": [
"from",
"to",
"due"
],
"additionalProperties": false
}