forked from sckott/pubpatterns
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaaas.json
116 lines (116 loc) · 3.33 KB
/
aaas.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
112
113
114
115
116
{
"publisher": "aaas",
"publisher_parent": null,
"crossref_member": 221,
"prefixes": ["10.1126"],
"urls": null,
"components": null,
"cookies": false,
"regex": null,
"open_access": false,
"use_crossref_links": false,
"journals": [
{
"journal": "science",
"open_access": false,
"issn": "1095-9203",
"urls": {
"pdf": "http://science.sciencemag.org/content/%s/%s/%s.full.pdf"
},
"components": {
"html": {
"volume": {
"selector": "//meta[@name=\"citation_volume\"]",
"attribute": "content"
},
"issue": {
"selector": "//meta[@name=\"citation_issue\"]",
"attribute": "content"
},
"startpage": {
"selector": "//meta[@name=\"citation_firstpage\"]",
"attribute": "content"
}
},
"doi": null
},
"notes": "need volume, issue, start page - get via Crossref content negotiation, retrieve volume, issue and page fields"
},
{
"name": "science-advances",
"open_access": true,
"issn": "2375-2548",
"urls": {
"pdf": "http://advances.sciencemag.org/content/advances/%s/%s/e%s.full.pdf"
},
"components": {
"html": {
"volume": {
"selector": "//meta[@name=\"citation_volume\"]",
"attribute": "content"
},
"issue": {
"selector": "//meta[@name=\"citation_issue\"]",
"attribute": "content"
}
},
"doi": {
"regex": "(?<=sciadv\\.).+"
}
},
"notes": "need volume, issue, last part of DOI - get via Crossref content negotiation, retrieve volume and issue fields"
},
{
"name": "science-translational-medicine",
"open_access": false,
"issn": "1946-6242",
"urls": {
"pdf": "http://stm.sciencemag.org/content/advances/%s/%s/e%s.full.pdf"
},
"components": {
"html": {
"volume": {
"selector": "//meta[@name=\"citation_volume\"]",
"attribute": "content"
},
"issue": {
"selector": "//meta[@name=\"citation_issue\"]",
"attribute": "content"
},
"startpage": {
"selector": "//meta[@name=\"citation_firstpage\"]",
"attribute": "content"
}
},
"doi": null
},
"notes": "need volume, issue, start page - get via Crossref content negotiation, retrieve volume, issue and page fields"
},
{
"name": "science-signaling",
"open_access": false,
"issn": "1937-9145",
"urls": {
"pdf": "http://stke.sciencemag.org/content/advances/%s/%s/e%s.full.pdf"
},
"components": {
"html": {
"volume": {
"selector": "//meta[@name=\"citation_volume\"]",
"attribute": "content"
},
"issue": {
"selector": "//meta[@name=\"citation_issue\"]",
"attribute": "content"
},
"startpage": {
"selector": "//meta[@name=\"citation_firstpage\"]",
"attribute": "content"
}
},
"doi": null
},
"notes": "need volume, issue, start page - get via Crossref content negotiation, retrieve volume, issue and page fields"
}
]
}