-
Notifications
You must be signed in to change notification settings - Fork 31
/
btcresearch-schema.json
63 lines (63 loc) · 1.8 KB
/
btcresearch-schema.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "bibentry",
"description": "A bibliography entry",
"type": "object",
"properties":{
"id": {
"type": "string",
"description": "Unique entry id used to reference entries."
},
"title": {
"type": "string",
"description": "Paper title"
},
"authors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Full name of the author."
},
"affiliation": {
"type": "string",
"description": "Affiliation of the author."
}
},
"required": ["name"]
},
"minItems": 1,
"uniqueItems": true
},
"year": {
"type": "integer",
"description": "The publication year"
},
"peer-reviewed": {
"type": "boolean",
"description": "Was this publication reviewed for a Conference or Journal?"
},
"venue": {
"type": "string",
"description": "Name of the Conference or Journal this publication was published in (required if peer-reviewed is set)."
},
"abstract": {
"type": "string"
},
"url": {
"type": "string",
"description": "URL where the publication can be downloaded (as PDF if possible)."
},
"type": {
"enum": ["inproceedings", "masterthesis", "article", "book", "techreport", "misc", "phdthesis", "online", "incollection", "inbook"],
"description": "The Bibtex type."
},
"sortkey": {
"type": "integer",
"description": "The key by which publications are sorted. Format is the current date as YYYYMMDD, with unknown parts zeroed out. Notice: this is not always the publication date, instead it is supposed to be an approximation allowing us to sort publications more or less in chronological order."
}
},
"required": ["id", "title", "authors", "year"]
}