-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphysical_visits.json
58 lines (58 loc) · 1.59 KB
/
physical_visits.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
{
"fields": [
{
"name": "Local authority",
"description": "Local authority responsible for the library service",
"type": "string",
"format": "default",
"constraints": {
"required": true
}
},
{
"name": "Library name",
"description": "Full public name by which the library is known",
"type": "string",
"format": "default",
"constraints": {
"required": true
}
},
{
"name": "Count start",
"description": "The start date of the count.",
"type": "date",
"format": "default",
"constraints": {
"required": true
}
},
{
"name": "Count end",
"description": "The end date of the count.",
"type": "date",
"format": "default",
"constraints": {
"required": true
}
},
{
"name": "Count type",
"description": "The type of count. Either manual or automatic.",
"type": "string",
"format": "default",
"constraints": {
"required": true
}
},
{
"name": "Visits",
"description": "The number of physical visits within the counting period.",
"type": "integer",
"format": "default",
"constraints": {
"required": true
}
}
]
}