-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJsonSchemaDetaljer.json
63 lines (63 loc) · 1.8 KB
/
JsonSchemaDetaljer.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "VedtakDetaljerResponse",
"type": "array",
"items": {
"type": "object",
"properties": {
"fom": {
"type": "string",
"format": "date",
"description": "The start date in YYYY-MM-DD format"
},
"tom": {
"type": "string",
"format": "date",
"description": "The end date in YYYY-MM-DD format"
},
"antallDager": {
"type": "number",
"description": "The number of days"
},
"dagsatsTiltakspenger": {
"type": "integer",
"description": "The daily rate for tiltakspenger"
},
"dagsatsBarnetillegg": {
"type": "integer",
"description": "The daily rate for barnetillegg"
},
"antallBarn": {
"type": "integer",
"description": "The number of children"
},
"relaterteTiltak": {
"type": "string",
"description": "Related measures"
},
"rettighet": {
"type": "string",
"enum": ["TILTAKSPENGER", "BARNETILLEGG", "TILTAKSPENGER_OG_BARNETILLEGG", "INGENTING"],
"description": "The right associated with the vedtak"
},
"vedtakId": {
"type": "string",
"description": "The ID of the vedtak"
},
"sakId": {
"type": "string",
"description": "The ID of the case"
},
"saksnummer": {
"type": "string",
"description": "The case number"
},
"kilde": {
"type": "string",
"description": "The source of the vedtak"
}
},
"required": ["fom", "tom", "antallDager", "dagsatsTiltakspenger", "dagsatsBarnetillegg", "antallBarn", "relaterteTiltak", "rettighet", "vedtakId", "sakId", "saksnummer", "kilde"],
"additionalProperties": false
}
}