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 pathworkPattern.json
More file actions
78 lines (78 loc) · 3.03 KB
/
workPattern.json
File metadata and controls
78 lines (78 loc) · 3.03 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
71
72
73
74
75
76
77
78
{
"type": "object",
"additionalProperties": false,
"required": ["code","label"],
"properties": {
"label": {
"type": "string",
"description": "text description"
},
"code": {
"type": "string",
"oneOf": [
{ "$ref": "#/definitions/permanent" },
{ "$ref": "#/definitions/temporary" },
{ "$ref": "#/definitions/contract" },
{ "$ref": "#/definitions/parttime" },
{ "$ref": "#/definitions/weekday" },
{ "$ref": "#/definitions/weekend" },
{ "$ref": "#/definitions/morning" },
{ "$ref": "#/definitions/afternoon" },
{ "$ref": "#/definitions/evening" },
{ "$ref": "#/definitions/night" },
{ "$ref": "#/definitions/volunteering" },
{ "$ref": "#/definitions/unclassified" }
]
}
},
"definitions": {
"permanent" : {
"enum": ["WP0001"],
"description": "regular employees or the directly employed work for an employer and are paid directly by that employer. In addition to their wages, they often receive benefits like subsidized health care, paid vacations, holidays, sick time, or contributions to a retirement plan. Alternatives: full-time / vollzeit / plein_temps"
},
"temporary" : {
"enum": ["WP0002"],
"description": "refers to an employment situation where the working arrangement is limited to a certain period of time based on the needs of the employing organisation. Alternatives: cover"
},
"contract" : {
"enum": ["WP0003"],
"description": "refers to a person who is a independent trade, business, or profession in which they offer their services to the general public"
},
"parttime" : {
"enum": ["WP0004"],
"description": "person who works fewer hours than a full-time employee. Alternatives: deeltijds / temps_partiel / teilzeit"
},
"weekday" : {
"enum": ["WP0005"],
"description": "works Monday to Friday only. Alternatives: Wochentage"
},
"weekend" : {
"enum": ["WP0006"],
"description": "works Saturday and Sunday only. Alternatives: Wochenende"
},
"morning" : {
"enum": ["WP0007"],
"description": "works mornings"
},
"afternoon" : {
"enum": ["WP0008"],
"description": "works afternoons"
},
"evening" : {
"enum": ["WP0009"],
"description": "works evenings"
},
"night" : {
"enum": ["WP0010"],
"description": "works nights"
},
"volunteering" : {
"enum": ["WP001r10"],
"description": "works without renumeration"
},
"unclassified" : {
"enum": ["WP0500"],
"description": "unclassified work pattern"
}
}
}