-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_comments.json
111 lines (110 loc) · 3.72 KB
/
test_comments.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// HAL references: https://api.archives-ouvertes.fr/docs/ref
{
"type": "article", // specific type id see: https://api.archives-ouvertes.fr/ref/doctype (article only works, other types could reuires improvments on code)
"title": {"en":"article", "fr":"article"},
"subtitle": "A subtitle",
"abstract": {"en":"a very long abstract", "fr": "un très long résumé"},
"authors": [
{
"firstname": "John",
"lastname": "Doe",
"affiliation": "affiliation",
"affiliationHAL": "affiliation", // must be affiliation id from HAL (see https://api.archives-ouvertes.fr/ref/structure)
"orcid": "orcid",
"email": "email"
},
{
"firstname": "Jane",
"middle": "Middle",
"lastname": "Doe",
"affiliation": ["affiliation", "affiliationB"],
"orcid": "orcid",
"email": "email"
}
],
"file": "file.pdf", // PDF file to include in the record
"license": "cc-by", // cc-by, cc-by-nc, cc-by-nc-nd, cc-by-nc-sa, cc-by-nd, cc-by-sa, cc0 (possible issue here)
"notes":{
"invited": "yes", // invited or not
"audience": "international", // national or international
"popular": "no", // yes for popular science
"peer": "yes", // yes for peer-reviewed
"proceedings": "no", // yes for document in proceedings
"comment": "small comment",
"description": "small description"
},
"ID":{
"isbn": "978-1725183483",
"patentNumber": "xxx",
"reportNumber": "xxx",
"locaRef": "xxx",
"haJournalId": "xxx", // HAL journal id (could be determine bu json2hal)
"journal": "Advanced Modeling and Simulation in Engineering Sciences",
"issn": "xxx",
"eissn": "xxx",
"booktitle": "xxx",
"source": "xxx"
},
"infoDoc":
{
"publisher": "springer",
"volume": "20",
"issue": "1",
"pages": "10-25",
"serie": "a special collection",
"datePub": "2024-01-01",
"dateEPub": "2024-01"
},
"series":{ // for book or proceedings
"editor": "Pr X Yy, Pr A Bb",
"title": "A great series"
},
"extref":{
"doi": "reg",
"arxiv": "ger",
"bibcode": "erg",
"ird": "greger",
"pubmed": "greger",
"ads": "gaergezg",
"pubmedcentral": "gegzefdv",
"irstea": "vvxc",
"sciencespo": "gderg",
"oatao": "gev",
"ensam": "xcvcxv",
"prodinra": "vxcv",
"publisher": "https://publisher.com/ID",
"link1": "https://link1.com/ID",
"link2": "https://link2.com/ID",
"link3": "https://link3.com/ID"
},
"keywords": {
"en": ["keyword1", "keyword2"],
"fr": ["mot-clé1", "mot-clé2"]
},
"codes": {
"classification": " ",
"acm": " ",
"mesh": " ",
"jel": " ",
"halDomain": ["physics", "spi.fluid"] // HAL domains (see https://api.archives-ouvertes.fr/ref/domain?rows=400)
},
"structures":[ // local structures (when no HAL structure id is provided)
{
"id": "affiliation",
"name": "laboratory for MC, university of Yeah",
"acronym": "LMC",
"address": "Blue street 155, 552501 Olso, Norway",
"url": "https://lmc.univ-yeah.com"
},
{
"id": "affiliationB",
"name": "laboratory for MCL, university of Yeah",
"acronym": "LMCL",
"address": {
"line":"Blue street 155, 552501 Olso, Norwa",
"country":"Norway"
},
"url": "https://lmcl.univ-yeah.com"
}
]
}