This repository was archived by the owner on Feb 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathskill.json
More file actions
70 lines (70 loc) · 2.45 KB
/
Copy pathskill.json
File metadata and controls
70 lines (70 loc) · 2.45 KB
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
{
"type": "object",
"additionalProperties": false,
"description": "skill person has aquired / learnt",
"required": ["name"],
"properties": {
"name": {
"description": "skill name",
"type": "string"
},
"normalised": {
"$ref": "normalised.json",
"description": "normalised version of skill"
},
"acquiredAt" : {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"role" : {
"$ref" : "role.json#",
"description": "role held"
},
"organisation": {
"$ref": "organisation.json#",
"description": "organisation / institution where the skill was acquired"
},
"weights": {
"type": "array",
"minItems": 1,
"description": "scores given to skill by classification services",
"items": {
"$ref": "skillWeight.json#"
}
},
"kind": {
"description" : "type of place where the skill acquired",
"enum" : [
"education",
"experience",
"personal",
"source",
"unknown"
]
},
"deduced": {
"type":"boolean",
"description": "deduced or provided value"
},
"confidence" : {
"type": "integer",
"minimum": 0,
"maximum": 100
},
"start": {
"type": "string",
"format": "date-time",
"description": "date at which the skill was gained"
},
"end": {
"type": "string",
"format": "date-time",
"description": "date at which the skill was lost"
}
}
}
}
}
}