forked from adewg/ICAR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicarTestDayResource.json
More file actions
30 lines (30 loc) · 881 Bytes
/
icarTestDayResource.json
File metadata and controls
30 lines (30 loc) · 881 Bytes
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
{
"description": "Information about test day for milk sampling.",
"allOf": [
{
"$ref": "icarResource.json"
},
{
"type": "object",
"required": [
"id",
"beginDate",
"endDate"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for this test day."
},
"beginDate": {
"$ref": "../types/icarDateTimeType.json",
"description": "The RFC3339 UTC datetime of the beginning of the milk sampling (see https://ijmacd.github.io/rfc3339-iso8601/ for format guidance)."
},
"endDate": {
"$ref": "../types/icarDateTimeType.json",
"description": "The RFC3339 UTC datetime of the end of the milk sampling (see https://ijmacd.github.io/rfc3339-iso8601/ for format guidance)."
}
}
}
]
}