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 patharchetype.json
More file actions
49 lines (49 loc) · 2.16 KB
/
Copy patharchetype.json
File metadata and controls
49 lines (49 loc) · 2.16 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
{
"type": "object",
"additionalProperties": false,
"description": "model of personality traits / personality structure",
"properties": {
"origin": {
"type": "string",
"description": "origin of archetype"
},
"openness": {
"type": "number",
"description": "intellectual, creative, unconventional, innovative, ironic versus shallow, unimaginative, conventional"
},
"conscientiousness": {
"type": "number",
"description": "organized, disciplined, diligent, careful, thorough, precise versus sloppy, negligent, reckless, lazy, irresponsible, absent-minded"
},
"extraversion": {
"type": "number",
"description": "outgoing, lively, extraverted, sociable, talkative, cheerful, active versus shy, passive, withdrawn, introverted, quiet, reserved"
},
"agreeableness": {
"type": "number",
"description": "patient, tolerant, peaceful, mild, agreeable, lenient, gentle versus ill-tempered, quarrelsome, stubborn, choleric"
},
"neuroticism": {
"type": "number",
"description": "The tendency to experience unpleasant emotions easily, such as anger, anxiety, depression, and vulnerability"
},
"emotionality": {
"type": "number",
"description": "emotional, oversensitive, sentimental, fearful, anxious, vulnerable versus brave, tough, independent, self-assured, stable"
},
"honesty": {
"type": "number",
"description": "Honesty-Humility: sincere, honest, faithful, loyal, modest/unassuming versus sly, deceitful, greedy, pretentious, hypocritical, boastful, pompous"
}
},
"oneOf":[
{
"description": "OCEAN Five factors",
"required": ["origin", "openness", "conscientiousness", "extraversion", "agreeableness", "neuroticism"]
},
{
"description": "HEXACO model of personality",
"required": ["origin", "honesty", "emotionality", "extraversion", "agreeableness", "conscientiousness", "openness"]
}
]
}