forked from folio-org/mod-eusage-reports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreportTitle.json
52 lines (52 loc) · 1.29 KB
/
reportTitle.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
{
"description": "report title entry",
"type": "object",
"properties": {
"id": {
"type": "string",
"description" : "title identifier",
"format": "uuid"
},
"counterReportTitle": {
"type": "string",
"description": "Title as it appears in counter report"
},
"kbTitleName": {
"type": "string",
"description": "KB title name"
},
"kbTitleId": {
"type": "string",
"description": "KB title identifier. If not given, title is ignored (kbManualMatch=true) or unmatched (kbManualMatch=false)",
"format": "uuid"
},
"kbManualMatch": {
"type": "boolean",
"description": "whether the counter title to kb title is manually set or ignored"
},
"printISSN": {
"type": "string",
"description": "ISSN for print instance"
},
"onlineISSN": {
"type": "string",
"description": "ISSN for online instance"
},
"ISBN": {
"type": "string",
"description": "ISBN-13 with hyphens"
},
"DOI": {
"type": "string",
"description": "Digital Object identifier"
},
"publicationType": {
"type": "string",
"description": "publication type from ERM ('serial', 'monograph')"
}
},
"additionalProperties": false,
"required": [
"id"
]
}