-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patharticle-authoring-schema.json
61 lines (61 loc) · 1.78 KB
/
article-authoring-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
{
"$id": "https://pandoc.org/schema/article-authoring.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "JOSS Article Metadata",
"type": "object",
"properties": {
"authors": {
"type": "array",
"description": "List of all authors.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The full name of an author."
},
"affiliation": {
"oneOf": [
{"type": "string"},
{"type": "number"}
],
"description": "An affiliation index, or a comma separated list of affiliation indices."
}
}
}
},
"affiliations": {
"type": "array",
"description": "List of institutions; each item listed here should relate to at least one author.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The full name of the affiliation; usually the name of an institute or company."
},
"index": {
"type": "number",
"description": "Integer specifying the relative number of this affiliation; see also authors.affiliation."
}
}
}
},
"title": {
"type": "string",
"description": "The document's title."
},
"tags": {
"type": "array",
"description": "List of relevant article tags/keywords.",
"items": {
"type": "string",
"description": "A single tag or key-word; may contain spaces."
}
},
"date": {
"type": "string",
"description": "The date on which the article was written or published. The date format can be chosen freely."
}
}
}