-
Notifications
You must be signed in to change notification settings - Fork 10
/
schema.json
64 lines (64 loc) · 2.99 KB
/
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
64
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json"
},
{
"type": "object",
"properties": {
"meta": {
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json#/properties/meta"
}
],
"properties": {
"ancv": {
"type": "object",
"description": "ancv-specific (https://ancv.io) properties",
"properties": {
"template": {
"type": "string",
"description": "The template (ordering, alignment, positioning, ...) to use",
"enum": [
"Sequential"
]
},
"theme": {
"type": "string",
"description": "The theme (colors, emphasis, ...) to use",
"enum": [
"basic",
"grayscale",
"hendrix",
"lollipop",
"plain"
]
},
"language": {
"type": "string",
"description": "The language aka translation (for section titles like 'Education' etc.) to use",
"enum": [
"de",
"en",
"es",
"fr"
]
},
"ascii_only": {
"type": "boolean",
"description": "Whether to only use ASCII characters in the template (you are responsible for not using non-ASCII characters in your resume)"
},
"dec31_as_year": {
"type": "boolean",
"description": "Whether to display dates of 'December 31st of some year' as that year only, without month or day info"
}
}
}
}
}
}
}
]
}