forked from folio-org/mod-eusage-reports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
titleDataEntry.json
54 lines (54 loc) · 1.39 KB
/
titleDataEntry.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
{
"description": "title data entry from counter reports",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "title data identifier",
"format": "uuid"
},
"titleEntryId": {
"type": "string",
"description": "key to title entries",
"format": "uuid"
},
"counterReportId": {
"type": "string",
"description": "counter report identifier",
"format": "uuid"
},
"counterReportTitle": {
"type": "string",
"description": "counter report title"
},
"providerId": {
"type": "string",
"description": "usage data provider identifier",
"format": "uuid"
},
"publicationDate": {
"type": "string",
"description": "Publication date in ISO format YYYY-MM-DD. example 1988-05-17"
},
"usageYearMonth": {
"type": "string",
"description": "Usage data range (Postgresql daterange). example: [2021-01-01,2021-02-01)"
},
"uniqueAccessCount": {
"type": "integer",
"description": "Unique access count"
},
"totalAccessCount": {
"type": "integer",
"description": "Total access count"
},
"openAccess": {
"type": "boolean",
"description": "Whether open access"
}
},
"additionalProperties": false,
"required": [
"id", "titleEntryId", "counterReportId", "counterReportTitle", "openAccess"
]
}