-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathloans.json
More file actions
49 lines (49 loc) · 1.42 KB
/
loans.json
File metadata and controls
49 lines (49 loc) · 1.42 KB
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
{
"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": "Month",
"description": "The month of the count in the format YYYY-MM",
"type": "date",
"format": "%Y-%m",
"constraints": {
"required": true
}
},
{
"name": "Type",
"description": "The type of item. Will use the item category set by the individual library service e.g. Adult Fiction.",
"type": "string",
"format": "default",
"constraints": {
"required": true
}
},
{
"name": "Loans",
"description": "The number of issues and renewals for that item type in the counting period.",
"type": "integer",
"format": "default",
"constraints": {
"required": true
}
}
]
}