Skip to content

Commit

Permalink
Updated behandling-events.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvind-wedoe committed Dec 13, 2024
1 parent 24e6eb9 commit d9fc860
Showing 1 changed file with 57 additions and 1 deletion.
58 changes: 57 additions & 1 deletion docs/schema/behandling-events.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"ANKEBEHANDLING_AVSLUTTET",
"ANKE_I_TRYGDERETTENBEHANDLING_OPPRETTET",
"BEHANDLING_FEILREGISTRERT",
"BEHANDLING_ETTER_TRYGDERETTEN_OPPHEVET_AVSLUTTET"
"BEHANDLING_ETTER_TRYGDERETTEN_OPPHEVET_AVSLUTTET",
"OMGJOERINGSKRAVBEHANDLING_AVSLUTTET"
],
"description": "Typen event som har skjedd. Matcher et av feltene i BehandlingDetaljer, typen her vil vise hvilket felt som ikke er null. Kan og vil utvides med flere verdier på sikt."
},
Expand Down Expand Up @@ -67,6 +68,9 @@
},
"behandlingEtterTrygderettenOpphevetAvsluttet": {
"$ref": "#/definitions/BehandlingEtterTrygderettenOpphevetAvsluttetDetaljer"
},
"omgjoeringskravbehandlingAvsluttet": {
"$ref": "#/definitions/OmgjoeringskravbehandlingAvsluttetDetaljer"
}
}
},
Expand Down Expand Up @@ -156,6 +160,31 @@
"journalpostReferanser"
]
},
"AnkeITrygderettenbehandlingOpprettetDetaljer": {
"type": "object",
"additionalProperties": false,
"properties": {
"sendtTilTrygderetten": {
"type": "string",
"format": "date-time"
},
"utfall": {
"type": "string",
"enum": [
"TRUKKET",
"OPPHEVET",
"MEDHOLD",
"DELVIS_MEDHOLD",
"INNSTILLING_STADFESTELSE",
"INNSTILLING_AVVIST"
],
"description": "Utfallet av behandlingen."
}
},
"required": [
"sendtTilTrygderetten"
]
},
"BehandlingFeilregistrertDetaljer": {
"type": "object",
"additionalProperties": false,
Expand Down Expand Up @@ -224,6 +253,33 @@
"utfall",
"journalpostReferanser"
]
},
"OmgjoeringskravbehandlingAvsluttetDetaljer": {
"type": "object",
"additionalProperties": false,
"properties": {
"avsluttet": {
"type": "string",
"format": "date-time"
},
"utfall": {
"type": "string",
"enum": [
"MEDHOLD_ETTER_FVL_35",
]
},
"journalpostReferanser": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"avsluttet",
"utfall",
"journalpostReferanser"
]
}
}
}

0 comments on commit d9fc860

Please sign in to comment.