forked from folio-org/mod-eusage-reports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.json
88 lines (88 loc) · 2.71 KB
/
report.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
79
80
81
82
83
84
85
86
87
88
{
"description": "Usage report schema",
"type": "object",
"properties": {
"agreementId": {
"type": "string",
"description": "Agreement identifier (UUID)"
},
"accessCountPeriods": {
"description": "List of reporting periods, either a list of months or a list of years, for example [\"2020-03\", \"2020-04\", \"2020-05\"]",
"type": "array",
"items": {
"type": "string"
}
},
"totalItemRequestsTotal": {
"type": "integer",
"nullable": true,
"description": "Access count total for all periods and all items"
},
"totalItemRequestsByPeriod": {
"type": "array",
"description": "Access count per period, total for all items",
"items": {
"type": "integer",
"nullable": true
}
},
"totalRequestsPublicationYearsByPeriod": {
"type": "array",
"description": "Access count per period for each publication year, total for all items",
"items": {
"type": "object",
"description": "object with publication year as key and count as value"
}
},
"totalRequestsPeriodsOfUseByPeriod": {
"type": "array",
"description": "Access count per period for each publication period, total for all items",
"items": {
"type": "object",
"description": "object with publication year as key and count as value"
}
},
"uniqueItemRequestsTotal": {
"type": "integer",
"nullable": true,
"description": "Unique access count total for all periods and all items"
},
"uniqueItemRequestsByPeriod": {
"type": "array",
"description": "Unique access count per period, total for all items",
"items": {
"type": "integer",
"nullable": true
}
},
"uniqueRequestsPublicationYearsByPeriod": {
"type": "array",
"description": "Unique count per period for each publication year, total for all items",
"items": {
"type": "object",
"description": "object with publication year as key and count as value"
}
},
"uniqueRequestsPeriodsOfUseByPeriod": {
"type": "array",
"description": "Unique access count per period for each publication period, total for all items",
"items": {
"type": "object",
"description": "object with publication year as key and count as value"
}
},
"items": {
"description": "List of items, with access data per item",
"type": "array",
"items": {
"type": "object",
"$ref": "reportRow.json"
}
},
"execution": {
"description": "Information about execution, such as various timings",
"type": "object"
}
},
"additionalProperties": false
}