From 84064d84a9f94af83821808cd21f0820f14922c8 Mon Sep 17 00:00:00 2001 From: johannbm Date: Mon, 28 Jul 2025 09:50:16 +0200 Subject: [PATCH 01/12] wip --- generate-api-types.sh | 19 + openapi-ts.config.ts | 7 + package.json | 1 + .../OpptjeningVilkarProsessIndex.stories.tsx | 3 +- swagger.json | 15301 ++++++++++++++++ yarn.lock | 227 +- 6 files changed, 15550 insertions(+), 8 deletions(-) create mode 100755 generate-api-types.sh create mode 100644 openapi-ts.config.ts create mode 100644 swagger.json diff --git a/generate-api-types.sh b/generate-api-types.sh new file mode 100755 index 00000000000..6ba3ba0d963 --- /dev/null +++ b/generate-api-types.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# Step 1: Run the command +if ! yarn run openapi-ts; then + echo "❌ Typegenerering feilet. Sjekk error filen som ble generert." + echo "👉 Husk at du må ha autotest kjørende. Dobbeltsjekk at foreldrepengesoknad-api kjører på samme port som gitt i openapi-ts.config.ts" + exit 1 +fi + +# Step 2: Copy the generated file +cp temp-types/types.gen.ts packages/types/src/apiDtoGenerert.ts + +# Step 3: Delete the temp folder +rm -rf temp-types + +# Step 4: Format types +cd packages/types +yarn run prettier +yarn run eslint:fix diff --git a/openapi-ts.config.ts b/openapi-ts.config.ts new file mode 100644 index 00000000000..61e69dcb515 --- /dev/null +++ b/openapi-ts.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from '@hey-api/openapi-ts'; + +export default defineConfig({ + input: './swagger.json', + output: 'temp-types', + plugins: ['@hey-api/client-fetch'], +}); diff --git a/package.json b/package.json index c7b3a2a7234..2683f2554fa 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,7 @@ }, "devDependencies": { "@eslint/js": "9.26.0", + "@hey-api/openapi-ts": "0.79.1", "@navikt/aksel-stylelint": "7.21.1", "@sentry/cli": "2.45.0", "@storybook/addon-essentials": "8.6.12", diff --git a/packages/prosess/vilkar-opptjening/src/OpptjeningVilkarProsessIndex.stories.tsx b/packages/prosess/vilkar-opptjening/src/OpptjeningVilkarProsessIndex.stories.tsx index 73c04658819..c7be17728b6 100644 --- a/packages/prosess/vilkar-opptjening/src/OpptjeningVilkarProsessIndex.stories.tsx +++ b/packages/prosess/vilkar-opptjening/src/OpptjeningVilkarProsessIndex.stories.tsx @@ -55,9 +55,8 @@ export const ÅpentAksjonspunkt: Story = { { definisjon: AksjonspunktKode.SVANGERSKAPSVILKARET, status: AksjonspunktStatus.OPPRETTET, - begrunnelse: null, }, - ] as Aksjonspunkt[], + ] satisfies Aksjonspunkt[], }, }; diff --git a/swagger.json b/swagger.json new file mode 100644 index 00000000000..bee5286a34f --- /dev/null +++ b/swagger.json @@ -0,0 +1,15301 @@ +{ + "openapi" : "3.0.1", + "info" : { + "title" : "FPSAK - Foreldrepenger, engangsstønad og svangerskapspenger", + "description" : "REST grensesnitt for FPSAK.", + "version" : "1.0" + }, + "servers" : [ { + "url" : "/fpsak" + } ], + "tags" : [ { + "name" : "prosesstask", + "description" : "Håndtering av asynkrone oppgaver i form av prosesstask" + } ], + "paths" : { + "/api/registerdata/iay/callback" : { + "post" : { + "tags" : [ "registerdata" ], + "description" : "Callback når registerinnhenting av IAY har blitt fullført i Abakus", + "operationId" : "callback", + "requestBody" : { + "description" : "callbackDto", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/CallbackDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/batch/autorun" : { + "post" : { + "tags" : [ "batch" ], + "description" : "Start task for å kjøre batchjobs", + "operationId" : "autoRunBatch", + "responses" : { + "200" : { + "description" : "Starter batch-scheduler" + }, + "500" : { + "description" : "Feilet pga ukjent feil" + } + } + } + }, + "/api/behandling/backend-root" : { + "get" : { + "tags" : [ "behandlinger" ], + "summary" : "Returnerer behandlingen som er tilknyttet id. Dette er resultat etter at asynkrone operasjoner er utført.", + "description" : "Hent behandling gitt id for backend", + "operationId" : "hentBehandlingResultatForBackend", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer behandling", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BehandlingDto" + } + } + } + } + } + } + }, + "/api/behandlinger/haster" : { + "post" : { + "tags" : [ "behandlinger" ], + "description" : "Merker sak som hastesak basert på åpen behandling", + "operationId" : "behandlingErHasteSak", + "requestBody" : { + "description" : "BehandlingId for behandling som merkes som Haster", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ReåpneBehandlingDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandlinger/bytt-enhet" : { + "post" : { + "tags" : [ "behandlinger" ], + "description" : "Bytte behandlende enhet", + "operationId" : "byttBehandlendeEnhet", + "requestBody" : { + "description" : "Ny enhet som skal byttes", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ByttBehandlendeEnhetDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandlinger/endre-pa-vent" : { + "post" : { + "tags" : [ "behandlinger" ], + "description" : "Endrer ventefrist for behandling på vent", + "operationId" : "endreFristForBehandlingPaVent", + "requestBody" : { + "description" : "Frist for behandling på vent", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SettBehandlingPaVentDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandlinger/gjenoppta" : { + "post" : { + "tags" : [ "behandlinger" ], + "description" : "Gjenopptar behandling som er satt på vent", + "operationId" : "gjenopptaBehandling", + "requestBody" : { + "description" : "BehandlingId for behandling som skal gjenopptas", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/GjenopptaBehandlingDto" + } + } + } + }, + "responses" : { + "200" : { + "description" : "Gjenoppta behandling påstartet i bakgrunnen", + "headers" : { + "Location" : { + "style" : "simple" + } + } + } + } + } + }, + "/api/behandlinger/henlegg" : { + "post" : { + "tags" : [ "behandlinger" ], + "description" : "Henlegger behandling", + "operationId" : "henleggBehandling", + "requestBody" : { + "description" : "Henleggelsesårsak", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/HenleggBehandlingDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandlinger/annen-part-behandling" : { + "get" : { + "tags" : [ "behandlinger" ], + "description" : "Henter annen parts behandling basert på saksnummer", + "operationId" : "hentAnnenPartsGjeldendeBehandling", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer må være et eksisterende saksnummer", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandlinger" : { + "get" : { + "tags" : [ "behandlinger" ], + "summary" : "Returnerer behandlingen som er tilknyttet id. Dette er resultat etter at asynkrone operasjoner er utført.", + "description" : "Hent behandling gitt id", + "operationId" : "hentBehandlingResultat", + "parameters" : [ { + "name" : "behandlingId", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/BehandlingIdDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Behandling", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/UtvidetBehandlingDto" + } + } + } + } + }, + "deprecated" : true + }, + "put" : { + "tags" : [ "behandlinger" ], + "description" : "Opprette ny behandling", + "operationId" : "opprettNyBehandling", + "requestBody" : { + "description" : "Saksnummer og flagg om det er ny behandling etter klage", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/NyBehandlingDto" + } + } + } + }, + "responses" : { + "202" : { + "description" : "Opprett ny behandling pågår", + "headers" : { + "Location" : { + "style" : "simple" + } + } + } + } + }, + "post" : { + "tags" : [ "behandlinger" ], + "description" : "Init hent behandling", + "operationId" : "hentBehandling", + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BehandlingIdDto" + } + } + }, + "required" : true + }, + "responses" : { + "202" : { + "description" : "Hent behandling initiert, Returnerer link til å polle på fremdrift", + "headers" : { + "Location" : { + "style" : "simple" + } + } + }, + "303" : { + "description" : "Behandling tilgjenglig (prosesstasks avsluttet)", + "headers" : { + "Location" : { + "style" : "simple" + } + } + } + }, + "deprecated" : true + } + }, + "/api/behandlinger/alle" : { + "get" : { + "tags" : [ "behandlinger" ], + "summary" : "Returnerer alle behandlinger som er tilknyttet saksnummer.", + "description" : "Henter alle behandlinger basert på saksnummer", + "operationId" : "hentBehandlinger", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer må være et eksisterende saksnummer", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BehandlingDto" + } + } + } + } + } + } + } + }, + "/api/behandlinger/sett-pa-vent" : { + "post" : { + "tags" : [ "behandlinger" ], + "description" : "Setter behandling på vent", + "operationId" : "settBehandlingPaVent", + "requestBody" : { + "description" : "Frist for behandling på vent", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SettBehandlingPaVentDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandlinger/opne-for-endringer" : { + "post" : { + "tags" : [ "behandlinger" ], + "description" : "Åpner behandling for endringer", + "operationId" : "åpneBehandlingForEndringer", + "requestBody" : { + "description" : "BehandlingId for behandling som skal åpnes for endringer", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ReåpneBehandlingDto" + } + } + } + }, + "responses" : { + "200" : { + "description" : "Åpning av behandling for endringer påstartet i bakgrunnen", + "headers" : { + "Location" : { + "style" : "simple" + } + } + } + } + } + }, + "/api/behandling/status" : { + "get" : { + "tags" : [ "behandlinger" ], + "summary" : "Returnerer link til enten samme (hvis ikke ferdig) eller redirecter til /behandlinger dersom asynkrone operasjoner er ferdig.", + "description" : "Url for å polle på behandling mens behandlingprosessen pågår i bakgrunnen(asynkront)", + "operationId" : "hentBehandlingMidlertidigStatus", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + }, { + "name" : "gruppe", + "in" : "query", + "schema" : { + "$ref" : "#/components/schemas/ProsessTaskGruppeIdDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Status", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/AsyncPollingStatus" + } + } + } + }, + "303" : { + "description" : "Behandling tilgjenglig (prosesstasks avsluttet)", + "headers" : { + "Location" : { + "style" : "simple" + } + } + }, + "418" : { + "description" : "ProsessTasks har feilet", + "headers" : { + "Location" : { + "style" : "simple" + } + }, + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/AsyncPollingStatus" + } + } + } + } + } + } + }, + "/api/behandling" : { + "get" : { + "tags" : [ "behandlinger" ], + "summary" : "Returnerer behandlingen som er tilknyttet id. Dette er resultat etter at asynkrone operasjoner er utført.", + "description" : "Hent behandling gitt id", + "operationId" : "hentBehandlingResultat_1", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Behandling", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/UtvidetBehandlingDto" + } + } + } + } + } + } + }, + "/api/behandling/aksjonspunkt" : { + "post" : { + "tags" : [ "aksjonspunkt" ], + "description" : "Lagre endringer gitt av aksjonspunktene og rekjør behandling fra gjeldende steg", + "operationId" : "bekreft", + "requestBody" : { + "description" : "Liste over aksjonspunkt som skal bekreftes, inklusiv data som trengs for å løse de.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BekreftedeAksjonspunkterDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandling/aksjonspunkt/beslutt" : { + "post" : { + "tags" : [ "aksjonspunkt" ], + "description" : "Lagre totrinnsvurdering aksjonspunkt", + "operationId" : "beslutt", + "requestBody" : { + "description" : "Liste over aksjonspunkt som skal bekreftes, inklusiv data som trengs for å løse de.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BekreftedeAksjonspunkterDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandling/aksjonspunkt-v2" : { + "get" : { + "tags" : [ "aksjonspunkt" ], + "description" : "Hent aksjonspunter for en behandling", + "operationId" : "getAksjonspunkter", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "content" : { + "application/json" : { + "schema" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AksjonspunktDto" + } + } + } + } + } + } + } + }, + "/api/behandling/aksjonspunkt/overstyr" : { + "post" : { + "tags" : [ "aksjonspunkt" ], + "description" : "Overstyrer stegene", + "operationId" : "overstyr", + "requestBody" : { + "description" : "Liste over overstyring aksjonspunkter.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/OverstyrteAksjonspunkterDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandling/anke/anke-vurdering-v2" : { + "get" : { + "tags" : [ "anke" ], + "description" : "Hent informasjon om ankevurdering for en ankebehandling", + "operationId" : "getAnkeVurdering", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer vurdering av en anke fra ulike instanser", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/AnkebehandlingDto" + } + } + } + } + } + } + }, + "/api/behandling/arbeid-inntektsmelding/alle-inntektsmeldinger" : { + "get" : { + "tags" : [ "arbeid-intektsmelding" ], + "summary" : "Returnerer liste av alle inntektsmeldinger til saken.", + "description" : "Henter alle inntektsmeldinger som hører til en fagsak", + "operationId" : "getAlleInntektsmeldinger", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/InntektsmeldingDto" + } + } + } + } + } + } + }, + "/api/behandling/arbeid-inntektsmelding" : { + "get" : { + "tags" : [ "arbeid-intektsmelding" ], + "summary" : "Returnerer info om arbeidsforhold og inntektsmeldinger tilknyttet saken.", + "description" : "Hent informasjon arbeidsforhold og tilhørende inntektsmeldinger", + "operationId" : "getArbeidOgInntektsmeldinger", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer ArbeidOgInntektsmeldingDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ArbeidOgInntektsmeldingDto" + } + } + } + } + } + } + }, + "/api/behandling/arbeid-inntektsmelding/lagre-arbeidsforhold" : { + "post" : { + "tags" : [ "arbeid-intektsmelding" ], + "summary" : "Lagrer registrering av arbeidsforhold fra saksbehandler", + "description" : "Lagre registrering av arbeidsforhold", + "operationId" : "lagreManuelleArbeidsforhold", + "requestBody" : { + "description" : "Registrering av arbeidsforhold.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ManueltArbeidsforholdDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandling/arbeid-inntektsmelding/lagre-vurdering" : { + "post" : { + "tags" : [ "arbeid-intektsmelding" ], + "summary" : "Lagrer vurdering av manglende inntektsmelding for et enkelt arbeidsforhold, eller manglende arbeidsforhold for en enkelt inntektsmelding.", + "description" : "Lagre vurdering av arbeidsforhold som mangler inntektsmelding, eller inntektsmelding som mangler arbeidsforhold", + "operationId" : "lagreVurderingAvManglendeOpplysninger", + "requestBody" : { + "description" : "Vurdering av opplysning som mangler.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ManglendeOpplysningerVurderingDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandling/arbeid-inntektsmelding/apne-for-ny-vurdering" : { + "post" : { + "tags" : [ "arbeid-intektsmelding" ], + "summary" : "Åpner behandling for endring ved å rulle saken tilbake til korrekt steg", + "description" : "Åpner behandling for endring av vurdering i arbeid og inntektsmelding, hvis dette er mulig.", + "operationId" : "åpneForEndring", + "requestBody" : { + "description" : "BehandlingUID og versjon på behadlingen.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BehandlingIdVersjonDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandling/inntektsmeldinger-alle" : { + "get" : { + "tags" : [ "inntekt-arbeid-ytelse" ], + "summary" : "Returnerer info om alle inntektsmeldinger.", + "description" : "Hent informasjon om inntektsmelding", + "operationId" : "getAlleInntektsmeldinger_1", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer InntektsmeldingerDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/InntektsmeldingerDto" + } + } + } + } + } + } + }, + "/api/behandling/arbeidsgivere-opplysninger" : { + "get" : { + "tags" : [ "inntekt-arbeid-ytelse" ], + "summary" : "Returnerer info om innhentet og avklart inntekter/arbeid og ytelser for bruker, inkludert hva bruker har vedlagt søknad.", + "description" : "Hent informasjon om innhentet og avklart inntekter, arbeid og ytelser", + "operationId" : "getArbeidsgiverOpplysninger", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer InntektArbeidYtelseDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ArbeidsgiverOversiktDto" + } + } + } + } + } + } + }, + "/api/behandling/inntekt-arbeid-ytelse" : { + "get" : { + "tags" : [ "inntekt-arbeid-ytelse" ], + "summary" : "Returnerer info om innhentet og avklart inntekter/arbeid og ytelser for bruker, inkludert hva bruker har vedlagt søknad.", + "description" : "Hent informasjon om innhentet og avklart inntekter, arbeid og ytelser", + "operationId" : "getInntektArbeidYtelser", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer InntektArbeidYtelseDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/IAYYtelseDto" + } + } + } + } + } + } + }, + "/api/behandling/beregningsgrunnlag" : { + "get" : { + "tags" : [ "beregningsgrunnlag" ], + "summary" : "Returnerer beregningsgrunnlag for behandling.", + "description" : "Hent beregningsgrunnlag for angitt behandling", + "operationId" : "hentBeregningsgrunnlag", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagDto" + } + } + } + } + } + } + }, + "/api/behandling/beregningsresultat/dagytelse" : { + "get" : { + "tags" : [ "beregningsresultat" ], + "summary" : "Returnerer beregningsresultat med uttaksplan for behandling.", + "description" : "Hent beregningsresultat med uttaksplan for ytelser med daglig sats (svangerskapspenger og foreldrepenger)", + "operationId" : "hentBeregningsresultatDagytelse", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BeregningsresultatMedUttaksplanDto" + } + } + } + } + } + } + }, + "/api/behandling/beregningsresultat/engangsstonad" : { + "get" : { + "tags" : [ "beregningsresultat" ], + "summary" : "Returnerer beregningsresultat med uttaksplan for behandling.", + "description" : "Hent beregningsresultat med uttaksplan for engangsstønad behandling", + "operationId" : "hentBeregningsresultatEngangsstønad", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BeregningsresultatEngangsstønadDto" + } + } + } + } + } + } + }, + "/api/behandling/feriepengegrunnlag" : { + "get" : { + "tags" : [ "feriepengegrunnlag" ], + "summary" : "Returnerer feriepengegrunnlaget for behandling.", + "description" : "Hent feriepengegrunnlaget for en gitt behandling om det finnes", + "operationId" : "hentFeriepenger", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/FeriepengegrunnlagDto" + } + } + } + } + } + } + }, + "/api/behandling/fodsel/fakta-fodsel" : { + "get" : { + "tags" : [ "behandling - fødsel" ], + "description" : "Hent fakta om fødsel i behandling", + "operationId" : "hentFødsel", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Fakta om fødsel og termin)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/FødselDto" + } + } + } + } + } + } + }, + "/api/historikk" : { + "get" : { + "tags" : [ "historikk" ], + "description" : "Henter alle historikkinnslag for en gitt sak.", + "operationId" : "hentAlleInnslag", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer må være et eksisterende saksnummer", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json;charset=utf-8" : { } + } + } + } + } + }, + "/api/behandling/innsyn" : { + "get" : { + "tags" : [ "innsyn" ], + "summary" : "Returnerer info om innsynsbehandling", + "description" : "Hent diverse informasjon om innsynsbehandlingen", + "operationId" : "getInnsynsbehandling", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer innsynsbehandling eller ingenting hvis uuid ikke peker på en innsynsbehandling", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/InnsynsbehandlingDto" + } + } + } + } + } + } + }, + "/api/behandling/klage-v2" : { + "get" : { + "tags" : [ "klage" ], + "description" : "Hent informasjon om klagevurdering for en klagebehandling", + "operationId" : "getKlageVurdering", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer vurdering av en klage fra ulike instanser", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/KlagebehandlingDto" + } + } + } + } + } + } + }, + "/api/behandling/klage/mottatt-klagedokument-v2" : { + "get" : { + "tags" : [ "klage" ], + "summary" : "Kan returnere dokument uten verdier i hvis det ikke finnes noe klagedokument på behandlingen", + "description" : "Hent mottatt klagedokument for en klagebehandling", + "operationId" : "getMottattKlagedokument", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer mottatt klagedokument", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/MottattKlagedokumentDto" + } + } + } + } + } + } + }, + "/api/behandling/klage/mellomlagre-formkrav-klage" : { + "post" : { + "tags" : [ "klage" ], + "description" : "Mellomlagring av fritekst til brev for avvist formkrav", + "operationId" : "mellomlagreAvvistFormKrav", + "requestBody" : { + "description" : "KlageVurderingAdapter tilpasset til mellomlagring.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/KlageFormKravAksjonspunktMellomlagringDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandling/klage/mellomlagre-klage" : { + "post" : { + "tags" : [ "klage" ], + "description" : "Mellomlagring av vurderingstekst for klagebehandling", + "operationId" : "mellomlagreKlage", + "requestBody" : { + "description" : "KlageVurderingAdapter tilpasset til mellomlagring.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/KlageVurderingResultatAksjonspunktMellomlagringDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandling/oppdrag/oppdraginfo" : { + "get" : { + "tags" : [ "oppdrag" ], + "description" : "Hent oppdrags-info for behandlingen", + "operationId" : "hentOppdrag", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/OppdragDto" + } + } + } + } + } + } + }, + "/api/behandling/opptjening/utlanddokstatus" : { + "get" : { + "tags" : [ "opptjening" ], + "description" : "Henters saksbehandlers valg om det skal innhentes dok fra utland", + "operationId" : "getDokStatus", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Om dok skal hentes eller ikke", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/OpptjeningIUtlandDokStatusDto" + } + } + } + } + } + } + }, + "/api/behandling/opptjening" : { + "get" : { + "tags" : [ "opptjening" ], + "description" : "Hent informasjon om opptjening", + "operationId" : "getOpptjening", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Opptjening, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/OpptjeningDto" + } + } + } + } + } + } + }, + "/api/behandling/person/personopplysninger-tilbake" : { + "get" : { + "tags" : [ "behandling - person" ], + "description" : "Hent informasjon om personopplysninger søker for tilbakekreving", + "operationId" : "getPersonopplysningerTilbake", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Personopplysninger, null hvis ikke finnes (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PersonopplysningTilbakeDto" + } + } + } + } + } + } + }, + "/api/behandling/person/personoversikt" : { + "get" : { + "tags" : [ "behandling - person" ], + "description" : "Hent oversikt over personopplysninger søker i behandling", + "operationId" : "getPersonoversikt", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Personopplysninger, null hvis ikke finnes (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PersonoversiktDto" + } + } + } + } + } + } + }, + "/api/behandling/person/medlemskap-v3" : { + "get" : { + "tags" : [ "behandling - person" ], + "description" : "Hent informasjon relatert til medlemskap for søker i behandling", + "operationId" : "hentMedlemskapV3", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Medlemskap, null hvis ikke finnes (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/MedlemskapDto" + } + } + } + } + } + } + }, + "/api/behandling/svangerskapspenger/tilrettelegging-v2" : { + "get" : { + "tags" : [ "svangerskapspenger" ], + "summary" : "Returnerer termindato og liste med tilretteleggingsinfo pr. arbeidsforhold ved svangerskapspenger", + "description" : "Hent informasjon om tilretteleggingbehov ved svangerskapspenger", + "operationId" : "tilrettelegging", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SvpTilretteleggingDto" + } + } + } + } + } + } + }, + "/api/behandling/soknad" : { + "get" : { + "tags" : [ "søknad" ], + "description" : "Hent informasjon om søknad", + "operationId" : "getSøknad", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Søknad, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SoknadDto" + } + } + } + } + } + } + }, + "/api/behandling/soknad-backend" : { + "get" : { + "tags" : [ "søknad" ], + "description" : "Hent informasjon om søknad", + "operationId" : "getSøknadBackend", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "RReturnerer forenklet søknad til andre applikasjoner", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SoknadDto" + } + } + } + } + } + } + }, + "/api/behandling/tilbakekreving/simulering-resultat" : { + "get" : { + "tags" : [ "tilbakekrevingsvalg" ], + "description" : "Hent detaljert resultat av simulering mot økonomi med og uten inntrekk", + "operationId" : "hentSimuleringResultat", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SimuleringDto" + } + } + } + } + } + } + }, + "/api/behandling/tilbakekreving/valg" : { + "get" : { + "tags" : [ "tilbakekrevingsvalg" ], + "description" : "Hent tilbakekrevingsvalg for behandlingen", + "operationId" : "hentTilbakekrevingValg", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/TilbakekrevingValgDto" + } + } + } + } + } + } + }, + "/api/behandling/tilbakekreving/varseltekst" : { + "get" : { + "tags" : [ "tilbakekrevingsvalg" ], + "description" : "Henter varseltekst for tilbakekreving", + "operationId" : "hentVarseltekst", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/VarseltekstDto" + } + } + } + } + } + } + }, + "/api/behandling/uttak/stonadskontoer" : { + "get" : { + "tags" : [ "uttak" ], + "summary" : "Returnerer stønadskontoer for behandling", + "description" : "Hent informasjon om stønadskontoer for behandling", + "operationId" : "getStonadskontoer", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SaldoerDto" + } + } + } + } + } + } + }, + "/api/behandling/uttak/stonadskontoerGittUttaksperioder" : { + "post" : { + "tags" : [ "uttak" ], + "summary" : "Returnerer stønadskontoer for behandling", + "description" : "Hent informasjon om stønadskontoer for behandling gitt uttaksperioder", + "operationId" : "getStonadskontoerGittUttaksperioder", + "requestBody" : { + "description" : "Behandling og liste med uttaksperioder", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BehandlingMedUttaksperioderDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SaldoerDto" + } + } + } + } + } + } + }, + "/api/behandling/uttak/fakta-arbeidsforhold" : { + "get" : { + "tags" : [ "uttak" ], + "summary" : "Henter arbeidsforhold som er relevant for fakta uttak", + "description" : "Henter arbeidsforhold som er relevant for fakta uttak", + "operationId" : "hentArbeidsforhold", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ArbeidsforholdDto" + } + } + } + } + } + } + } + }, + "/api/behandling/uttak/vurder-dokumentasjon" : { + "get" : { + "tags" : [ "uttak" ], + "description" : "Hent perioder med behov for dokumentasjon", + "operationId" : "hentDokumentasjonVurderingBehov", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/DokumentasjonVurderingBehovDto" + } + } + } + } + } + } + } + }, + "/api/behandling/uttak/kontroller-fakta-perioder-v2" : { + "get" : { + "tags" : [ "uttak" ], + "description" : "Hent perioder for fakta om uttak", + "operationId" : "hentFaktaUttakPerioder", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FaktaUttakPeriodeDto" + } + } + } + } + } + } + } + }, + "/api/behandling/uttak/resultat-svangerskapspenger" : { + "get" : { + "tags" : [ "uttak" ], + "summary" : "Returnerer svangerskapspenger uttaksresultat", + "description" : "Henter svangerskapspenger uttaksresultat", + "operationId" : "hentSvangerskapspengerUttakResultat", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SvangerskapspengerUttakResultatDto" + } + } + } + } + } + } + }, + "/api/behandling/uttak/resultat-perioder" : { + "get" : { + "tags" : [ "uttak" ], + "summary" : "Returnerer uttaksresultatperioder", + "description" : "Henter uttaksresultatperioder", + "operationId" : "hentUttakResultatPerioder", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/UttakResultatPerioderDto" + } + } + } + } + } + } + }, + "/api/behandling/vedtak/ferdigstill-oppgave" : { + "post" : { + "tags" : [ "vedtak" ], + "description" : "Ferdigstiller valgt oppgave", + "operationId" : "ferdigstillOppgave", + "requestBody" : { + "description" : "OppgaveId for oppgave som skal ferdigstilles", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/behandling/vedtak/hent-oppgaver" : { + "get" : { + "tags" : [ "vedtak" ], + "description" : "Henter åpne oppgaver", + "operationId" : "hentOppgaver", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OppgaveDto" + } + } + } + } + } + } + } + }, + "/api/verge/fjern" : { + "post" : { + "tags" : [ "verge" ], + "description" : "Fjerner verge/fullmektig på behandlingen", + "operationId" : "fjernVerge", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "Behandling uuid", + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Verge/fullmektig fjernet", + "headers" : { + "Location" : { + "style" : "simple" + } + } + } + } + } + }, + "/api/verge/backend" : { + "get" : { + "tags" : [ "verge" ], + "description" : "Henter verge/fullmektig på behandlingen for bruk backend", + "operationId" : "getVergeBackend", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Verge hvis eksisterer ellers null", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/VergeBackendDto" + } + } + } + } + } + } + }, + "/api/verge" : { + "get" : { + "tags" : [ "verge" ], + "description" : "Henter verge/fullmektig på behandlingen", + "operationId" : "hentVerge", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "Behandling uuid", + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Verge/fullmektig funnet" + }, + "204" : { + "description" : "Ingen verge/fullmektig" + } + } + } + }, + "/api/verge/opprett" : { + "post" : { + "tags" : [ "verge" ], + "description" : "Oppretter verge/fullmektig på behandlingen", + "operationId" : "opprettVerge", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "Behandling uuid", + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/VergeDto" + } + } + } + }, + "responses" : { + "200" : { + "description" : "Verge/fullmektig opprettes", + "headers" : { + "Location" : { + "style" : "simple" + } + } + } + } + } + }, + "/api/behandling/ytelsefordeling" : { + "get" : { + "tags" : [ "ytelsefordeling" ], + "description" : "Hent informasjon om ytelsefordeling", + "operationId" : "getYtelsefordeling", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Ytelsefordeling mellom parter, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/YtelseFordelingDto" + } + } + } + } + } + } + }, + "/api/behandling/omsorg-og-rett" : { + "get" : { + "description" : "Hent informasjon om omsorg og rett", + "operationId" : "hentRettOgOmsorg", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer informasjon fra søknad og registerdata som omhandler brukers og annen parts rett og omsorg i behandlingen", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/OmsorgOgRettDto" + } + } + } + } + } + } + }, + "/api/brev/bestill" : { + "post" : { + "tags" : [ "brev" ], + "description" : "Bestiller generering og sending av brevet", + "operationId" : "bestillDokument", + "requestBody" : { + "description" : "Inneholder kode til brevmal og data som skal flettes inn i brevet", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BestillDokumentDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/brev/forhandsvis" : { + "post" : { + "tags" : [ "brev" ], + "description" : "Returnerer en pdf som er en forhåndsvisning av brevet", + "operationId" : "forhåndsvisDokument", + "requestBody" : { + "description" : "Inneholder kode til brevmal og bestillingsdetaljer.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ForhåndsvisDokumentDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/brev/varsel/revurdering" : { + "get" : { + "tags" : [ "brev" ], + "description" : "Sjekk har varsel sendt om revurdering", + "operationId" : "harSendtVarselOmRevurdering", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json;charset=utf-8" : { + "schema" : { + "type" : "boolean" + } + } + } + } + } + } + }, + "/api/brev/overstyring" : { + "get" : { + "tags" : [ "brev" ], + "description" : "Henter html representasjon av brevet som brukes i overstyring av vedtaksbrev med mellomlagret overstyring", + "operationId" : "hentOverstyringAvBrevMedOrginaltBrevPåHtmlFormat", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/brev/kvittering/v3" : { + "post" : { + "tags" : [ "brev" ], + "description" : "Kvitterer at brevet ble produsert og sendt. BREV_SENT historikk blir lagt og behandling dokument blir oppdatert med journalpostId.", + "operationId" : "kvitteringV3", + "requestBody" : { + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/DokumentKvitteringDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/brev/overstyring/mellomlagring" : { + "post" : { + "tags" : [ "brev" ], + "description" : "Lagrer ned overstyrt html-representasjon av brevet som brukes ved foreslå vedtak aksjonspunktet", + "operationId" : "mellomlagringAvOverstyring", + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/MellomlagreHtmlDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/datavarehus/regenerer_vedtaksdokument" : { + "post" : { + "tags" : [ "datavarehus" ], + "description" : "Generer vedtaksxml på nytt for gitt behandlingid.", + "operationId" : "regenererVedtaksXml", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/dokument/hent-dokumentliste" : { + "get" : { + "tags" : [ "dokument" ], + "summary" : "Oversikt over alle pdf dokumenter fra dokumentarkiv registrert for saksnummer.", + "description" : "Henter dokumentlisten knyttet til en sak", + "operationId" : "hentAlleDokumenterForSak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/DokumentDto" + } + } + } + } + } + } + } + }, + "/api/dokument/hent-mottattdokumentliste" : { + "get" : { + "tags" : [ "dokument" ], + "description" : "Henter listen av mottatte dokumenter knyttet til en fagsak", + "operationId" : "hentAlleMottatteDokumenterForBehandling", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/MottattDokumentDto" + } + } + } + } + } + } + } + }, + "/api/dokument/hent-dokument" : { + "get" : { + "tags" : [ "dokument" ], + "summary" : "Retunerer dokument som er tilknyttet saksnummer, journalpostId og dokumentId (bare pdf)", + "description" : "Søk etter dokument på JOARK-identifikatorene journalpostId og dokumentId", + "operationId" : "hentDokument", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + }, { + "name" : "journalpostId", + "in" : "query", + "description" : "Unik identifikator av journalposten (forsendelsenivå)", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/JournalpostIdDto" + } + }, { + "name" : "dokumentId", + "in" : "query", + "description" : "Unik identifikator av DokumentInfo/Dokumentbeskrivelse (dokumentnivå)", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/DokumentIdDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/aktoer-info" : { + "get" : { + "tags" : [ "aktoer" ], + "description" : "Henter informasjon om en aktør", + "operationId" : "getAktoerInfo", + "parameters" : [ { + "name" : "aktoerId", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/AktoerIdDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer basisinformasjon om en aktør og hvilke fagsaker vedkommede har i fpsak.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/AktoerInfoDto" + } + } + } + } + } + } + }, + "/api/fagsak/endre-utland" : { + "post" : { + "tags" : [ "fagsak" ], + "summary" : "Endre merking fra tidligere verdi.", + "description" : "Endre merking (utland) av sak", + "operationId" : "endreFagsakMerking", + "requestBody" : { + "description" : "Saksnummer og markering", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/EndreUtlandMarkeringDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/fagsak" : { + "get" : { + "tags" : [ "fagsak" ], + "description" : "Hent fagsak for saksnummer", + "operationId" : "hentFagsak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer fagsak", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/FagsakBackendDto" + } + } + } + }, + "404" : { + "description" : "Fagsak ikke tilgjengelig" + } + } + } + }, + "/api/fagsak/status" : { + "get" : { + "tags" : [ "fagsak" ], + "summary" : "Returnerer link til enten samme (hvis ikke ferdig) eller redirecter til /fagsak dersom asynkrone operasjoner er ferdig.", + "description" : "Url for å polle på fagsak mens behandlingprosessen pågår i bakgrunnen(asynkront)", + "operationId" : "hentFagsakMidlertidigStatus", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + }, { + "name" : "gruppe", + "in" : "query", + "schema" : { + "$ref" : "#/components/schemas/ProsessTaskGruppeIdDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer Status", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/AsyncPollingStatus" + } + } + } + }, + "303" : { + "description" : "Pågående prosesstasks avsluttet", + "headers" : { + "Location" : { + "style" : "simple" + } + } + }, + "418" : { + "description" : "ProsessTasks har feilet", + "headers" : { + "Location" : { + "style" : "simple" + } + }, + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/AsyncPollingStatus" + } + } + } + } + } + } + }, + "/api/fagsak/full" : { + "get" : { + "tags" : [ "fagsak" ], + "description" : "Hent full fagsaksaksinformasjon for saksnummer", + "operationId" : "hentFullFagsak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer fagsak", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/FagsakFullDto" + } + } + } + }, + "404" : { + "description" : "Fagsak ikke tilgjengelig" + } + } + } + }, + "/api/fagsak/notat" : { + "post" : { + "tags" : [ "fagsak" ], + "summary" : "Lagre nytt notat.", + "description" : "Lagre nytt notat for sak", + "operationId" : "lagreFagsakNotat", + "requestBody" : { + "description" : "Saksnummer og nytt notat", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/LagreFagsakNotatDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/fagsak/sok" : { + "post" : { + "tags" : [ "fagsak" ], + "summary" : "Spesifikke saker kan søkes via saksnummer. Oversikt over saker knyttet til en bruker kan søkes via fødselsnummer eller d-nummer.", + "description" : "Søk etter saker på saksnummer eller fødselsnummer", + "operationId" : "sokFagsaker", + "requestBody" : { + "description" : "Søkestreng kan være saksnummer, fødselsnummer eller D-nummer.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SokefeltDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FagsakSøkDto" + } + } + } + } + } + } + } + }, + "/api/behandling/familiehendelse" : { + "get" : { + "tags" : [ "familiehendelse" ], + "description" : "Hent informasjon om familiehendelse til grunn for ytelse", + "operationId" : "getAvklartFamiliehendelseDto", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer info om familiehendelse, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/FamiliehendelseDto" + } + } + } + } + } + } + }, + "/api/behandling/familiehendelse/v2" : { + "get" : { + "tags" : [ "familiehendelse" ], + "description" : "Hent informasjon om familiehendelse til grunn for ytelse", + "operationId" : "getFamiliehendelseGrunnlagDto", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer hele FamilieHendelse grunnlaget", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/FamilieHendelseGrunnlagDto" + } + } + } + } + } + } + }, + "/api/fordel/fagsak/informasjon" : { + "post" : { + "tags" : [ "fordel" ], + "summary" : "Varsel om en ny journalpost som skal behandles i systemet.", + "description" : "Informasjon om en fagsak", + "operationId" : "fagsak", + "requestBody" : { + "description" : "Saksnummeret det skal hentes saksinformasjon om", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/FagsakInfomasjonDto" + } + } + } + } + } + } + }, + "/api/fordel/finnFagsaker/v2" : { + "post" : { + "tags" : [ "fordel" ], + "summary" : "Finn alle saker for en bruker", + "description" : "Finn alle saker for en bruker.", + "operationId" : "finnAlleSakerForBrukerV2", + "requestBody" : { + "description" : "AktørId", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/AktørIdDto" + } + } + } + }, + "responses" : { + "200" : { + "description" : "Liste av alle brukers saker, ellers tom liste", + "content" : { + "application/json" : { + "schema" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SakInfoV2Dto" + } + } + } + } + } + } + } + }, + "/api/fordel/infoOmSakInntektsmelding" : { + "post" : { + "tags" : [ "fordel" ], + "description" : "Returnerer informasjon om sak til fpinntektsmelding for å avgjøre om innsending av inntektsmelding er tillatt", + "operationId" : "infoOmSakForInntektsmelding", + "requestBody" : { + "description" : "AktørId", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SakInntektsmeldingDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/fordel/fagsak/knyttJournalpost" : { + "post" : { + "tags" : [ "fordel" ], + "summary" : "Før en journalpost journalføres på en fagsak skal fagsaken oppdateres med journalposten.", + "description" : "Knytt journalpost til fagsak.", + "operationId" : "knyttSakOgJournalpost", + "requestBody" : { + "description" : "Saksnummer og JournalpostId som skal knyttes sammen", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/JournalpostKnyttningDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/fordel/journalpost" : { + "post" : { + "tags" : [ "fordel" ], + "summary" : "Varsel om en ny journalpost som skal behandles i systemet.", + "description" : "Ny journalpost skal behandles.", + "operationId" : "mottaJournalpost", + "requestBody" : { + "description" : "Krever saksnummer, journalpostId og behandlingstemaOffisiellKode", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/JournalpostMottakDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/fordel/fagsak/opprett" : { + "post" : { + "tags" : [ "fordel" ], + "summary" : "Varsel om en ny journalpost som skal behandles i systemet.", + "description" : "Ny journalpost skal behandles.", + "operationId" : "opprettSak", + "requestBody" : { + "description" : "Oppretter fagsak", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/OpprettSakDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } + } + } + }, + "deprecated" : true + } + }, + "/api/fordel/fagsak/opprett/v2" : { + "post" : { + "tags" : [ "fordel" ], + "summary" : "Varsel om en ny journalpost som skal behandles i systemet.", + "description" : "Ny journalpost skal behandles.", + "operationId" : "opprettSakv2", + "requestBody" : { + "description" : "Oppretter fagsak", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/OpprettSakV2Dto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } + } + } + } + } + }, + "/api/fordel/sakInntektsmelding" : { + "post" : { + "tags" : [ "fordel" ], + "description" : "Sjekker om det finnes en sak som potensielt kan knyttes til inntektsmelding med gitt startdato", + "operationId" : "sjekkSakForInntektsmelding", + "requestBody" : { + "description" : "AktørId", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SakInntektsmeldingDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/fordel/vurderFagsystem" : { + "post" : { + "tags" : [ "fordel" ], + "description" : "Informasjon om en fagsak", + "operationId" : "vurderFagsystem", + "requestBody" : { + "description" : "Krever behandlingstemaOffisiellKode", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/VurderFagsystemDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BehandlendeFagsystemDto" + } + } + } + } + } + } + }, + "/api/fordel/klageinstans" : { + "post" : { + "tags" : [ "fordel" ], + "description" : "Informasjon om en fagsak klageinstansrelatert", + "operationId" : "vurderForKlageinstans", + "requestBody" : { + "description" : "Krever behandlingstemaOffisiellKode", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/VurderFagsystemDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/BehandlendeFagsystemDto" + } + } + } + } + } + } + }, + "/api/formidling/ressurser" : { + "get" : { + "tags" : [ "formidling" ], + "description" : "Hent behandling med tilhørende ressurslenker for bruk i formidling", + "operationId" : "hentBehandlingDtoForBrev", + "parameters" : [ { + "name" : "behandlingId", + "in" : "query", + "description" : "UUID for behandlingen", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/BehandlingIdDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json;charset=utf-8" : { } + } + } + } + } + }, + "/api/formidling/motattDatoSøknad" : { + "get" : { + "tags" : [ "formidling" ], + "description" : "Hent gjeldende mottatt dato for søknad", + "operationId" : "mottattDatoSøknad", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json;charset=utf-8" : { } + } + } + } + } + }, + "/api/formidling/utsattstart" : { + "get" : { + "tags" : [ "formidling" ], + "description" : "Hent informasjon om sak er utsatt fra start og evt ny dato", + "operationId" : "utsattStartdato", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json;charset=utf-8" : { } + } + } + } + } + }, + "/api/formidling/arbeidInntektsmelding/inntektsmelding-status" : { + "get" : { + "tags" : [ "formidling" ], + "summary" : "Returnerer status for inntektsmeldinger for behandling for formidlingsbruk.", + "description" : "Hent status for inntektsmeldinger for angitt behandling for formidlingsbruk", + "operationId" : "hentStatusInntektsmeldinger", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/formidling/beregningsgrunnlag/v2" : { + "get" : { + "tags" : [ "formidling" ], + "summary" : "Returnerer beregningsgrunnlag for behandling for formidlingsbruk.", + "description" : "Hent beregningsgrunnlag for angitt behandling for formidlingsbruk", + "operationId" : "hentBeregningsgrunnlagFormidlingV2", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/formidling/tilkjentytelse/dagytelse" : { + "get" : { + "tags" : [ "formidling" ], + "summary" : "Returnerer tilkjent ytelse (dagytelse) for behandling for formidlingsbruk.", + "description" : "Hent tilkjent ytelse (dagytelse) for angitt behandling for formidlingsbruk", + "operationId" : "hentTilkjentYtelseDagytelseFormidling", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/formidling/tilkjentytelse/engangsstonad" : { + "get" : { + "tags" : [ "formidling" ], + "summary" : "Returnerer tilkjent ytelse (engangsstønad) for behandling for formidlingsbruk.", + "description" : "Hent tilkjent ytelse (engangsstønad) for angitt behandling for formidlingsbruk", + "operationId" : "hentTilkjentYtelseEngangsstonadFormidling", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningBehandling/fjernOverstyrtGrunnlagSvpBehandling" : { + "post" : { + "tags" : [ "FORVALTNING-behandling" ], + "description" : "Fjerner overstyrt grunnlag for svp behandling", + "operationId" : "fjernOverstyrtGrunnlagSvpBehandling", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/BehandlingIdDto" + } + } ], + "responses" : { + "200" : { + "description" : "Overstyrt grunnlag for behandling er fjernet.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Oppgitt behandlinguuid er ukjent, ikke under behandling, svangerskapspenger eller avsluttet." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningBehandling/henleggBehandlingTeknisk" : { + "post" : { + "tags" : [ "FORVALTNING-behandling" ], + "description" : "Ta en gitt behandling av vent og henlegg", + "operationId" : "henleggBehandlingTeknisk", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "200" : { + "description" : "Avslutter fagsak.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Ukjent fagsak oppgitt." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningBehandling/henleggVentendeBehandling" : { + "post" : { + "tags" : [ "FORVALTNING-behandling" ], + "description" : "Ta alle behandlinger for sak av vent og henlegg", + "operationId" : "henleggVentendeBehandling", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Avslutter fagsak.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Ukjent fagsak oppgitt." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningBehandling/henleggÅpenFørstegangsbehandlingOgOpprettNy" : { + "post" : { + "tags" : [ "FORVALTNING-behandling" ], + "description" : "Henlegger en åpen førstegangsbehandling og oppretter ny basert på siste søknad", + "operationId" : "henleggÅpenFørstegangsbehandlingOgOpprettNy", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Ny behandling er opprettet.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Oppgitt fagsak er ukjent, ikke under behandling, eller engangsstønad." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningBehandling/behandlingsresultat" : { + "post" : { + "tags" : [ "FORVALTNING-behandling" ], + "description" : "Oppdaterer vedtaksbrev typen på et eksisterende behandlingsresultat", + "operationId" : "oppdaterBehandlingresultatMedVedtaksbrevType", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/BehandlingIdDto" + } + }, { + "name" : "vedtaksbrev", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "enum" : [ "AUTOMATISK", "FRITEKST", "INGEN", "-" ] + } + }, { + "name" : "dryRun", + "in" : "query", + "required" : true, + "schema" : { + "type" : "boolean" + } + } ], + "responses" : { + "200" : { + "description" : "Oppdatert behandlingsresultat.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Oppgitt behandlinguuid er ukjent" + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningBehandling/startNyRevurderingBerørtBehandling" : { + "post" : { + "tags" : [ "FORVALTNING-behandling" ], + "description" : "Starter ny revurdering (berørt)", + "operationId" : "opprettNyRevurderingBerørtBehandling", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Ny behandling er opprettet.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Oppgitt fagsak er ukjent, ikke under behandling, eller engangsstønad." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningBehandling/reInnsendInntektsmelding" : { + "post" : { + "tags" : [ "FORVALTNING-behandling" ], + "description" : "Angi hvilken inntektsmelding som skal brukes ved samtidig mottatt. Send inn hvis åpen behandling.", + "operationId" : "reInnsendInntektsmelding", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string" + } + }, { + "name" : "journalpostid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string" + } + } ], + "responses" : { + "200" : { + "description" : "Inntektsmelding reinnsendt.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Oppgitt fagsak er ukjent, ikke under behandling, eller engangsstønad." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/behandlingskontroll/taskFortsettBehandling" : { + "post" : { + "tags" : [ "FORVALTNING-behandlingskontroll" ], + "summary" : "Oppretter en FortsettBehandlingTask som vil prosessere behandlingen. For håndtering av tilfelle der behandlingen har endt i limbo uten automtisk gjenoppliving.", + "description" : "DRIFT: Opprett en manuell FortsettBehandlingTask for en behandling.", + "operationId" : "lagFortsettBehandling", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningBeregning/hentBeregningsgrunnlagInput" : { + "post" : { + "tags" : [ "FORVALTNING-beregning" ], + "description" : "Henter input for beregning som sendes til kalkulus", + "operationId" : "hentBeregningsgrunnlagInput", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningBeregning/hentBeregningsgrunnlagInputLegacy" : { + "post" : { + "tags" : [ "FORVALTNING-beregning" ], + "description" : "Henter input for beregning (legacy, avvikles når vi ikke lenger beregner noen saker i fpsak)", + "operationId" : "hentBeregningsgrunnlagInputLegacy", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningBeregning/satsHentGjeldende" : { + "get" : { + "tags" : [ "FORVALTNING-beregning" ], + "description" : "Hent liste av gjeldende eller nyeste sats", + "operationId" : "hentGjeldendeSatser", + "responses" : { + "200" : { + "description" : "Gjeldende satser", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BeregningSatsDto" + } + } + } + } + } + } + } + }, + "/api/forvaltningBeregning/sjekkDiffInntektRegisterMotInntektsmelding" : { + "post" : { + "tags" : [ "FORVALTNING-beregning" ], + "description" : "Henter ut behandlinger med diff på inntekt register og IM for en periode", + "operationId" : "hentInfOmBehandlingerMedDiff", + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningBeregning/hentMigreringInput" : { + "post" : { + "tags" : [ "FORVALTNING-beregning" ], + "description" : "Migrerer en sak over til kalkulus", + "operationId" : "hentMigreringInput", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningBeregning/hentRefusjonskravperioderInput" : { + "post" : { + "tags" : [ "FORVALTNING-beregning" ], + "description" : "Henter input for beregning", + "operationId" : "hentRefusjonskravperioderInput", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningBeregning/satsLagreNy" : { + "post" : { + "tags" : [ "FORVALTNING-beregning" ], + "description" : "Lagre ny sats", + "operationId" : "lagreNySats", + "parameters" : [ { + "name" : "satsType", + "in" : "query", + "required" : true, + "schema" : { + "pattern" : "^(?:ENGANG|GRUNNBELØP|GSNITT)$", + "type" : "string", + "enum" : [ "ENGANG", "GRUNNBELØP", "GSNITT" ] + } + }, { + "name" : "satsFom", + "in" : "query", + "description" : "YYYY-MM-DD", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "satsTom", + "in" : "query", + "description" : "YYYY-MM-DD", + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "satsVerdi", + "in" : "query", + "description" : "Minumum satsverdi er satt til 75000", + "required" : true, + "schema" : { + "maximum" : 9223372036854775807, + "minimum" : 75000, + "type" : "integer", + "format" : "int64", + "default" : 75000 + } + } ], + "responses" : { + "200" : { + "description" : "Gjeldende satser", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BeregningSatsDto" + } + } + } + } + } + } + } + }, + "/api/forvaltningBeregning/migrerSak" : { + "post" : { + "tags" : [ "FORVALTNING-beregning" ], + "description" : "Migrerer en sak over til kalkulus", + "operationId" : "migrerSak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningBeregning/stoppRefusjon" : { + "post" : { + "tags" : [ "FORVALTNING-beregning" ], + "description" : "Endrer refusjon på inntektsmelding for en gitt journalpost", + "operationId" : "opphørRefusjonInntektsmelding", + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/EndreInntektsmeldingDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningBeregning/opprettGreguleringEnkeltSak" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Steng fagsak og flytt til Infotrygd", + "operationId" : "opprettGreguleringEnkeltSak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Flyttet fagsak.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Ukjent fagsak oppgitt." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningFagsak/avsluttFagsakUtenBehandling" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Avslutt fagsak uten noen behandlinger", + "operationId" : "avsluttFagsakUtenBehandling", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Avslutter fagsak.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Ukjent fagsak oppgitt." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningFagsak/fagsak/flyttJournalpostFagsak" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Knytt journalpost til fagsak. Før en journalpost journalføres på en fagsak skal fagsaken oppdateres med journalposten.", + "operationId" : "flyttJournalpostTilFagsak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string" + } + }, { + "name" : "journalpostid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string" + } + } ], + "responses" : { + "200" : { + "description" : "Task satt til ferdig." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningFagsak/gjenAapneFagsakForVidereBruk" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Gjenåpner fagsak for videre bruk", + "operationId" : "gjenaapneFagsak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Fagsak stengt.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Ukjent fagsak oppgitt." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningFagsak/fagsak/{fagsakId}" : { + "get" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Finner fagsak informasjon for et gitt fagsakId", + "operationId" : "hentFagsakInformasjon", + "parameters" : [ { + "name" : "fagsakId", + "in" : "path", + "required" : true, + "schema" : { + "type" : "integer", + "format" : "int64" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningFagsak/fagsak/identhistorikk" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Finner identhistorikk gitt en aktørId eller personident", + "operationId" : "identhistorikk", + "requestBody" : { + "description" : "Søkestreng kan være aktørId, fødselsnummer eller D-nummer.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SokefeltDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningFagsak/kobleFraFagsaker" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Kobler fra hverandre angitte fagsaker", + "operationId" : "kobleFraFagsaker", + "parameters" : [ { + "name" : "saksnummer1", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string" + } + }, { + "name" : "saksnummer2", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string" + } + } ], + "responses" : { + "200" : { + "description" : "Fagsaker frakoblet.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Ukjent fagsak oppgitt." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningFagsak/kobleSammenFagsaker" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Kobler sammen angitte fagsaker", + "operationId" : "kobleSammenFagsaker", + "parameters" : [ { + "name" : "saksnummer1", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string" + } + }, { + "name" : "saksnummer2", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string" + } + } ], + "responses" : { + "200" : { + "description" : "Fagsaker koblet.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Ukjent fagsak oppgitt." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningFagsak/fagsak/oppdaterAktoerId" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Setter ny aktørid for bruker og oppdaterer nødvendige tabeller", + "operationId" : "oppdaterAktoerId", + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ByttAktørRequestDto" + } + } + }, + "required" : true + }, + "responses" : { + "200" : { + "description" : "Task satt til ferdig." + }, + "400" : { + "description" : "AktørId er uendret." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningFagsak/fagsak/oppdaterAktoerIdFraPdl" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Henter ny aktørid for bruker og oppdaterer nødvendige tabeller", + "operationId" : "oppdaterAktoerIdFraPdl", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Task satt til ferdig." + }, + "400" : { + "description" : "Saksnummer er ugyldig." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningFagsak/fagsak/oppdater-personer-tilgang" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Avslutt fagsak uten noen behandlinger", + "operationId" : "oppdaterPersongalleriForTilgang", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Avslutter fagsak.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Ukjent fagsak oppgitt." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningFagsak/settFagsakFraAvsluttetTilUnderBehandling" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Setter status for fagsak fra avsluttet til under behandling", + "operationId" : "settFagsakFraAvsluttetTilUnderBehandling", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Fagsak endret.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Ukjent fagsak oppgitt, eller fagsak i feil tilstand" + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningFagsak/stengFagsakForVidereBruk" : { + "post" : { + "tags" : [ "FORVALTNING-fagsak" ], + "description" : "Stenger fagsak for videre bruk", + "operationId" : "stengFagsak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Fagsak stengt.", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Ukjent fagsak oppgitt." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningOppdrag/kvitter-oppdrag-ok" : { + "post" : { + "tags" : [ "FORVALTNING-oppdrag" ], + "description" : "Kvitterer oppdrag manuelt. Brukes kun når det er avklart at oppdrag har gått OK, og kvittering ikke kommer til å komme fra Oppdragsystemet. Sjekk med Team Ukelønn hvis i tvil", + "operationId" : "kvitterOK", + "requestBody" : { + "description" : "Identifikasjon av oppdrag som kvitteres OK. Sett oppdaterProsessTask til false kun når prosesstasken allerede er flyttet til FERDIG", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/KvitteringDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningOppdrag/patch-k27" : { + "post" : { + "tags" : [ "FORVALTNING-oppdrag" ], + "description" : "Patcher oppdrag som har feil i maks dato ved refusjon til AG, og sender over til oppdragsysstemet. Sjekk med Team FP hvis i tvil. Viktig at det sjekkes i Oppdragsystemet etter oversending at alt har gått som forventet", + "operationId" : "patchK27", + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/K27PatchDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningOppdrag/patch-oppdrag" : { + "post" : { + "tags" : [ "FORVALTNING-oppdrag" ], + "description" : "Patcher oppdrag som har feilet fordi fpsak har generert det på feil måte, og sender over til oppdragsysstemet. Sjekk med Team Ukelønn hvis i tvil. Viktig at det sjekkes i Oppdragsystemet etter oversending at alt har gått som forventet", + "operationId" : "patchOppdrag", + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/OppdragPatchDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningOppdrag/patch-oppdrag-hardt-og-rekjoer" : { + "post" : { + "tags" : [ "FORVALTNING-oppdrag" ], + "description" : "Som /patch-oppdrag, men kan også patche når behandling er ferdig. Sjekk med Team Foreldrepenger hvis i tvil. Viktig at det sjekkes i Oppdragsystemet etter oversending at alt har gått som forventet", + "operationId" : "patchOppdragOgRekjør", + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/OppdragPatchDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningOpptjening/hentOppgittOpptjening" : { + "get" : { + "tags" : [ "FORVALTNING-opptjening" ], + "description" : "Hent oppgitt opptjening for behandling", + "operationId" : "hentOppgittOpptjening", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/OppgittOpptjeningDto" + } + } + } + } + } + } + }, + "/api/forvaltningOpptjening/leggTilOppgittFrilans" : { + "post" : { + "tags" : [ "FORVALTNING-opptjening" ], + "description" : "Legg til innslag for oppgitt frilansaktivitet", + "operationId" : "leggTilOppgittFrilans", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + }, { + "name" : "frilansFom", + "in" : "query", + "description" : "YYYY-MM-DD", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "frilansTom", + "in" : "query", + "description" : "YYYY-MM-DD", + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "stpOpptjening", + "in" : "query", + "description" : "YYYY-MM-DD", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningOpptjening/leggTilOppgittNæring" : { + "post" : { + "tags" : [ "FORVALTNING-opptjening" ], + "description" : "Legg til innslag for oppgitt næring som fisker", + "operationId" : "leggTilOppgittNæring", + "requestBody" : { + "content" : { + "application/x-www-form-urlencoded" : { + "schema" : { + "required" : [ "behandlingUuid", "fom", "typeKode" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "typeKode" : { + "pattern" : "^(?:ANNEN|DAGMAMMA|FISKE|JORDBRUK_SKOGBRUK)$", + "type" : "string", + "enum" : [ "ANNEN", "DAGMAMMA", "FISKE", "JORDBRUK_SKOGBRUK" ] + }, + "fom" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "description" : "YYYY-MM-DD" + }, + "tom" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "description" : "YYYY-MM-DD" + }, + "orgnummer" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "regnskapNavn" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "regnskapTlf" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "nyoppstartet" : { + "type" : "string", + "default" : "NEI", + "enum" : [ "JA", "NEI" ] + }, + "varigEndring" : { + "type" : "string", + "default" : "NEI", + "enum" : [ "JA", "NEI" ] + }, + "nyIArbeidslivet" : { + "type" : "string", + "default" : "NEI", + "enum" : [ "JA", "NEI" ] + }, + "erRelasjon" : { + "type" : "string", + "default" : "NEI", + "enum" : [ "JA", "NEI" ] + }, + "endringsDato" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "description" : "YYYY-MM-DD" + }, + "begrunnelse" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "bruttoBeløp" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningOpptjening/leggTilOppgittNæringFjerneAndreOppgitteOrgnummer" : { + "post" : { + "tags" : [ "FORVALTNING-opptjening" ], + "description" : "Legg til innslag for oppgitt næring og fjern andre orgnummer", + "operationId" : "leggTilOppgittNæringFjerneAndreOppgitteOrgnummer", + "requestBody" : { + "content" : { + "application/x-www-form-urlencoded" : { + "schema" : { + "required" : [ "behandlingUuid", "fom", "typeKode" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "typeKode" : { + "pattern" : "^(?:ANNEN|DAGMAMMA|FISKE|JORDBRUK_SKOGBRUK)$", + "type" : "string", + "enum" : [ "ANNEN", "DAGMAMMA", "FISKE", "JORDBRUK_SKOGBRUK" ] + }, + "fom" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "description" : "YYYY-MM-DD" + }, + "tom" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "description" : "YYYY-MM-DD" + }, + "orgnummer" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "regnskapNavn" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "regnskapTlf" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "nyoppstartet" : { + "type" : "string", + "default" : "NEI", + "enum" : [ "JA", "NEI" ] + }, + "varigEndring" : { + "type" : "string", + "default" : "NEI", + "enum" : [ "JA", "NEI" ] + }, + "nyIArbeidslivet" : { + "type" : "string", + "default" : "NEI", + "enum" : [ "JA", "NEI" ] + }, + "erRelasjon" : { + "type" : "string", + "default" : "NEI", + "enum" : [ "JA", "NEI" ] + }, + "endringsDato" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "description" : "YYYY-MM-DD" + }, + "begrunnelse" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "bruttoBeløp" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningOpptjening/reInnhentAlleIAYRegisterData" : { + "post" : { + "tags" : [ "FORVALTNING-opptjening" ], + "description" : "Tvinger full registeroppdatering av IAY på åpen behandling", + "operationId" : "reInnhentAlleIAYRegisterData", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningSteg/fjernFHValgHoppTilbake" : { + "post" : { + "tags" : [ "FORVALTNING-steg-hopp" ], + "description" : "Fjerner overstyring av familiehendelse og hopper tilbake til KOFAK", + "operationId" : "fjernOverstyrtFH", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningSteg/fjernStartpunkt" : { + "post" : { + "tags" : [ "FORVALTNING-steg-hopp" ], + "description" : "Fjerner startpunkt i revurdering og går tilbake til KOFAK", + "operationId" : "fjernStartpunkt", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningSteg/generell" : { + "post" : { + "tags" : [ "FORVALTNING-steg-hopp" ], + "description" : "Generelt tilbakehopp", + "operationId" : "hoppTilbake", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + }, { + "name" : "målSteg", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "enum" : [ "REGSØK", "INSØK", "VURDERKOMPLETT", "INREG", "VURDERKOMPLETTBEH", "INREG_AVSL", "KOFAK", "VURDEROP", "VURDERMV", "VURDERSAMLET", "BERYT", "FORBRES", "SIMOPP", "VURDER_FARESIGNALER", "FORVEDSTEG", "FVEDSTEG", "IVEDSTEG", "VURDER_FK_UI", "KLAGEUI", "VURDER_FK_OI", "KLAGEOI", "ANKE", "ANKE_MERKNADER", "VURDINNSYN", "INPER", "VURDERSFV", "DEKNINGSGRAD", "FORS_BESTEBEREGNING", "KONTROLLER_OMSORG_RETT", "FAKTA_LØPENDE_OMSORG", "GRUNNLAG_UTTAK", "KOFAKUT", "KONTROLLER_AKTIVITETSKRAV", "FAKTA_UTTAK", "FAKTA_UTTAK_DOKUMENTASJON", "VURDER_TLRG", "VURDERSPV", "VRSLREV", "VURDERSRB", "KO_ARB_IM", "VURDER_ARB_FORHOLD_PERMISJON", "VURDER_OPPTJ_PERIODE", "VURDER_OPPTJ_FAKTA", "VURDER_OPPTJ", "FASTSETT_STP_BER", "KOFAKBER", "FORS_BERGRUNN", "FORS_BERGRUNN_2", "VURDER_VILKAR_BERGRUNN", "VURDER_REF_BERGRUNN", "FORDEL_BERGRUNN", "FAST_BERGRUNN", "KOFAK_LOP_MEDL", "SØKNADSFRIST_FP", "VURDER_UTTAK", "VURDER_TILBAKETREKK", "BERYT_OPPDRAG", "KOARB", "VURDER_FORUTGÅENDE_MEDLEMSKAPVILKÅR", "VULOMED" ] + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningSteg/5085" : { + "post" : { + "tags" : [ "FORVALTNING-steg-hopp" ], + "description" : "Hopp tilbake til 5085", + "operationId" : "hoppTilbakeTil5085", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningSvangerskapspenger/beregnTilretteleggingsperioder" : { + "post" : { + "tags" : [ "FORVALTNING-svangerskapspenger" ], + "description" : "Finner saker som kan ha fått beregnet feil feriepenger", + "operationId" : "beregnTilretteleggingsperioder", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningSoknad/endreTermindato" : { + "post" : { + "tags" : [ "FORVALTNING-søknad" ], + "description" : "Oppdater termindato åpen/siste behandling ifm prematur situasjons", + "operationId" : "endreTermindato", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer", + "required" : true, + "schema" : { + "type" : "string" + } + }, { + "name" : "termindato", + "in" : "query", + "description" : "Termindato (YYYY-MM-DD)", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "utstedtdato", + "in" : "query", + "description" : "Utstedt dato (YYYY-MM-DD)", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + } ], + "requestBody" : { + "content" : { + "application/x-www-form-urlencoded" : { + "schema" : { + "type" : "object", + "properties" : { + "begrunnelse" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string", + "description" : "Begrunnelse, fx FAGSYSTEM-nr" + } + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningSoknad/manglendeFødselsdato" : { + "post" : { + "tags" : [ "FORVALTNING-søknad" ], + "description" : "Legg til fødsels/dødsdato på åpen/siste behandling", + "operationId" : "manglendeFødselsdato", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer", + "required" : true, + "schema" : { + "type" : "string" + } + }, { + "name" : "fødselsdato", + "in" : "query", + "description" : "Fødselsdato (YYYY-MM-DD)", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "dødsdato", + "in" : "query", + "description" : "Dødsdato (YYYY-MM-DD)", + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + } ], + "requestBody" : { + "content" : { + "application/x-www-form-urlencoded" : { + "schema" : { + "type" : "object", + "properties" : { + "begrunnelse" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string", + "description" : "Begrunnelse, fx FAGSYSTEM-nr" + } + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningSoknad/manglendeTermindato" : { + "post" : { + "tags" : [ "FORVALTNING-søknad" ], + "description" : "Legg til terminbekreftelse på åpen/siste behandling ifm prematur situasjons", + "operationId" : "manglendeTermindato", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer", + "required" : true, + "schema" : { + "type" : "string" + } + }, { + "name" : "termindato", + "in" : "query", + "description" : "Termindato (YYYY-MM-DD)", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "utstedtdato", + "in" : "query", + "description" : "Utstedt dato (YYYY-MM-DD)", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + } ], + "requestBody" : { + "content" : { + "application/x-www-form-urlencoded" : { + "schema" : { + "type" : "object", + "properties" : { + "begrunnelse" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string", + "description" : "Begrunnelse, fx FAGSYSTEM-nr" + } + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningSoknad/settNorskIdentAnnenpart" : { + "post" : { + "tags" : [ "FORVALTNING-søknad" ], + "description" : "Oppdater annen part men kun hvis oppgitt = bruker", + "operationId" : "settNorskIdentAnnenpart", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer", + "required" : true, + "schema" : { + "type" : "string" + } + }, { + "name" : "identAnnenPart", + "in" : "query", + "description" : "FNR annen part", + "required" : true, + "schema" : { + "type" : "string" + } + } ], + "requestBody" : { + "content" : { + "application/x-www-form-urlencoded" : { + "schema" : { + "type" : "object", + "properties" : { + "begrunnelse" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string", + "description" : "Begrunnelse, fx FAGSYSTEM-nr" + } + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningSoknad/settUtlandskIdentAnnenpart" : { + "post" : { + "tags" : [ "FORVALTNING-søknad" ], + "description" : "Oppdater annen part men kun hvis oppgitt = bruker", + "operationId" : "settUtlandskIdentAnnenpart", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer", + "required" : true, + "schema" : { + "type" : "string" + } + }, { + "name" : "identAnnenPart", + "in" : "query", + "description" : "FNR annen part", + "required" : true, + "schema" : { + "type" : "string" + } + } ], + "requestBody" : { + "content" : { + "application/x-www-form-urlencoded" : { + "schema" : { + "type" : "object", + "properties" : { + "begrunnelse" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string", + "description" : "Begrunnelse, fx FAGSYSTEM-nr" + } + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltningTeknisk/sett-oppgave-ferdigstilt" : { + "post" : { + "tags" : [ "FORVALTNING-teknisk" ], + "description" : "Ferdigstill Gosys-oppgave", + "operationId" : "ferdigstillOppgave_1", + "requestBody" : { + "description" : "Oppgave som skal settes ferdig", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ProsessTaskIdDto" + } + } + }, + "required" : true + }, + "responses" : { + "200" : { + "description" : "Oppgave satt til ferdig." + }, + "400" : { + "description" : "Fant ikke aktuell oppgave." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningTeknisk/fjern-fagsak-prosesstask-avsluttet" : { + "post" : { + "tags" : [ "FORVALTNING-teknisk" ], + "description" : "Fjern fagsakprosesstask for avsluttede behandlinger", + "operationId" : "fjernFagsakProsesstaskAvsluttetBehandling", + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningTeknisk/hent-alle-aapne-oppgaver" : { + "post" : { + "tags" : [ "FORVALTNING-teknisk" ], + "description" : "Ferdigstill Gosys-oppgave", + "operationId" : "hentAlleÅpneOppgaver", + "responses" : { + "200" : { + "description" : "Oppgave satt til ferdig." + }, + "400" : { + "description" : "Fant ikke aktuell oppgave." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningTeknisk/sett-aksjonspunkt-avbrutt" : { + "post" : { + "tags" : [ "FORVALTNING-teknisk" ], + "description" : "Setter åpent aksjonspunkt til status AVBR", + "operationId" : "setAksjonspunktAvbrutt", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + }, { + "name" : "aksjonspunktKode", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string" + } + } ], + "responses" : { + "200" : { + "description" : "Aksjonspunkt avbrutt." + }, + "400" : { + "description" : "Fant ikke aktuelt aksjonspunkt." + }, + "500" : { + "description" : "Feilet pga ukjent feil." + } + } + } + }, + "/api/forvaltningTeknisk/synk-postnummer" : { + "post" : { + "tags" : [ "FORVALTNING-teknisk" ], + "description" : "Hente og lagre kodeverk Postnummer", + "operationId" : "synkPostnummer", + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningUttak/beregn-kontoer" : { + "post" : { + "tags" : [ "FORVALTNING-uttak" ], + "description" : "Beregner kontoer basert på data fra behandlingen. Husk å revurdere begge foreldre", + "operationId" : "beregnKontoer", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "text/plain" : { } + } + } + } + } + }, + "/api/forvaltningUttak/startdato" : { + "post" : { + "tags" : [ "FORVALTNING-uttak" ], + "description" : "Setter overstyrt startdato for saken (ved manglende uttak)", + "operationId" : "settStartdato", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "requestBody" : { + "content" : { + "*/*" : { + "schema" : { + "required" : [ "startdato" ], + "type" : "object", + "properties" : { + "startdato" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "description" : "YYYY-MM-DD" + } + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "text/plain" : { } + } + } + } + } + }, + "/api/forvaltningUttrekk/avstemOverlappForPeriode" : { + "post" : { + "tags" : [ "FORVALTNING-uttrekk" ], + "description" : "Lagrer task for å finne overlapp. Resultat i overlapp_vedtak", + "operationId" : "avstemOverlappForPeriode", + "parameters" : [ { + "name" : "fom", + "in" : "query", + "description" : "fom (YYYY-MM-DD)", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "tom", + "in" : "query", + "description" : "tom (YYYY-MM-DD)", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "tidsrom", + "in" : "query", + "description" : "tidsrom for avstemming av 1 dag (sekunder)", + "required" : true, + "schema" : { + "maximum" : 3600, + "minimum" : 0, + "type" : "integer", + "format" : "int32" + } + }, { + "name" : "vedtak", + "in" : "query", + "description" : "true gir saker med vedtak fattet i periode, false gir saker opprettet i periode", + "schema" : { + "type" : "boolean" + } + } ], + "requestBody" : { + "content" : { + "application/x-www-form-urlencoded" : { + "schema" : { + "required" : [ "key" ], + "type" : "object", + "properties" : { + "key" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string", + "description" : "key (secret)" + } + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningUttrekk/avstemSakOverlapp" : { + "post" : { + "tags" : [ "FORVALTNING-uttrekk" ], + "description" : "Lagrer task for å finne overlapp. Resultat i app-logg", + "operationId" : "avstemSakForOverlapp", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningUttrekk/flyttBehandlingTilSteg" : { + "post" : { + "tags" : [ "FORVALTNING-uttrekk" ], + "description" : "Flytt behandling til steg", + "operationId" : "flyttBehandlingTilSteg", + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningUttrekk/hentAvstemtSakOverlapp" : { + "get" : { + "tags" : [ "FORVALTNING-uttrekk" ], + "description" : "Prøver å finne overlapp og returnere resultat", + "operationId" : "hentAvstemtSakOverlappTrex", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningUttrekk/infotrygdRestanseFP" : { + "get" : { + "tags" : [ "FORVALTNING-uttrekk" ], + "description" : "Restanse FP", + "operationId" : "infotrygdRestanseFP", + "responses" : { + "200" : { + "description" : "Restanse", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InfotrygdRestanseDto" + } + } + } + } + } + } + } + }, + "/api/forvaltningUttrekk/infotrygdRestanseSVP" : { + "get" : { + "tags" : [ "FORVALTNING-uttrekk" ], + "description" : "Restanse SVP", + "operationId" : "infotrygdRestanseSVP", + "responses" : { + "200" : { + "description" : "Restanse", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InfotrygdRestanseDto" + } + } + } + } + } + } + } + }, + "/api/forvaltningUttrekk/listFagsakUtenBehandling" : { + "get" : { + "tags" : [ "FORVALTNING-uttrekk" ], + "description" : "Hent liste av saknumre for fagsak uten noen behandlinger", + "operationId" : "listFagsakUtenBehandling", + "responses" : { + "200" : { + "description" : "Fagsaker uten behandling", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } + } + } + } + } + } + }, + "/api/forvaltningUttrekk/openAutopunkt" : { + "post" : { + "tags" : [ "FORVALTNING-uttrekk" ], + "description" : "Gir åpne aksjonspunkter med angitt kode", + "operationId" : "openAutopunkt", + "parameters" : [ { + "name" : "aksjonspunktKode", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningUttrekk/openIkkeLopendeSaker" : { + "post" : { + "tags" : [ "FORVALTNING-uttrekk" ], + "description" : "Setter saker med revurdering til under behandling", + "operationId" : "openIkkeLopendeSaker", + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/forvaltningUttrekk/slettTidligereAvstemmingOverlapp" : { + "post" : { + "tags" : [ "FORVALTNING-uttrekk" ], + "description" : "Sletter tidligere avstemming som er eldre enn fom (dd + 1 sletter alle)", + "operationId" : "slettTidligereAvstemming", + "parameters" : [ { + "name" : "fom", + "in" : "query", + "description" : "fom (YYYY-MM-DD)", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "tom", + "in" : "query", + "description" : "tom (YYYY-MM-DD)", + "required" : true, + "schema" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string" + } + }, { + "name" : "tidsrom", + "in" : "query", + "description" : "tidsrom for avstemming av 1 dag (sekunder)", + "required" : true, + "schema" : { + "maximum" : 3600, + "minimum" : 0, + "type" : "integer", + "format" : "int32" + } + }, { + "name" : "vedtak", + "in" : "query", + "description" : "true gir saker med vedtak fattet i periode, false gir saker opprettet i periode", + "schema" : { + "type" : "boolean" + } + } ], + "requestBody" : { + "content" : { + "application/x-www-form-urlencoded" : { + "schema" : { + "required" : [ "key" ], + "type" : "object", + "properties" : { + "key" : { + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string", + "description" : "key (secret)" + } + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/fpoversiktMigrering/opprettTask" : { + "post" : { + "tags" : [ "FORVALTNING-fpoversikt" ], + "description" : "Oppretter task for migrering", + "operationId" : "opprettTask", + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/TaskInput" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/forvaltning-stonadsstatistikk/for-behandling" : { + "post" : { + "tags" : [ "FORVALTNING-stønadsstatistikk" ], + "description" : "Genereres vedtak json for en behandling", + "operationId" : "genererVedtakJson", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/StønadsstatistikkVedtak" + } + } + } + } + } + } + }, + "/api/forvaltning-stonadsstatistikk/opprettTaskForPeriode" : { + "post" : { + "tags" : [ "FORVALTNING-stønadsstatistikk" ], + "description" : "Oppretter task for migrering for vedtak opprettet etter fom dato", + "operationId" : "opprettTaskForPeriode", + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/MigreringTaskInput" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/fpoversikt/inntektsmeldinger" : { + "get" : { + "tags" : [ "fpoversikt" ], + "description" : "Henter inntektsmeldinger på sak", + "operationId" : "hentInntektsmeldinger", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer for fagsak", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FpSakInntektsmeldingDto" + } + } + } + } + } + } + } + }, + "/api/fpoversikt/sak" : { + "get" : { + "tags" : [ "fpoversikt" ], + "description" : "Hent sak for bruk i fpoversikt", + "operationId" : "hentSak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer for fagsak", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/Sak" + } + } + } + } + } + } + }, + "/api/fpoversikt/manglendeVedlegg" : { + "get" : { + "tags" : [ "fpoversikt" ], + "description" : "Henter manglede vedlegg på sak", + "operationId" : "hentmanglendeVedlegg", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "description" : "Saksnummer for fagsak", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "I000007", "I000023", "I000032", "I000036", "I000037", "I000038", "I000039", "I000041", "I000042", "I000044", "I000045", "I000051", "I000060", "I000061", "I000062", "I000063", "I000065", "I000066", "I000109", "I000110", "I000111", "I000112", "I000114", "I000116", "I000117", "I000118", "I000119", "I000120", "I000121", "I000122", "I000123", "I000124", "I000130", "I000131", "I000132", "I000133", "I000140", "I000141" ] + } + } + } + } + } + } + } + }, + "/api/hendelser/grovsorter" : { + "post" : { + "tags" : [ "hendelser" ], + "description" : "Grovsortering av aktørID-er. Returnerer aktørID-er i listen som har en sak.", + "operationId" : "grovSorter", + "requestBody" : { + "description" : "Liste med aktør IDer som skal sorteres", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AktørIdDto" + } + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "type" : "string" + } + } + } + } + } + } + } + }, + "/api/hendelser/motta" : { + "post" : { + "tags" : [ "hendelser" ], + "description" : "Mottak av hendelser", + "operationId" : "mottaHendelse", + "requestBody" : { + "description" : "Hendelse fra Fpabonnent", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/HendelseWrapperDto" + } + } + } + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/EnkelRespons" + } + } + } + } + } + } + }, + "/api/hendelser/ping" : { + "post" : { + "tags" : [ "hendelser" ], + "description" : "Ping", + "operationId" : "ping", + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/EnkelRespons" + } + } + } + } + } + } + }, + "/api/infotrygd/sok" : { + "post" : { + "tags" : [ "infotrygd" ], + "summary" : "Oversikt over utbetalinger knyttet til en bruker kan søkes via fødselsnummer eller d-nummer.", + "description" : "Søk etter utbetalinger i Infotrygd for fødselsnummer", + "operationId" : "sokInfotrygd", + "requestBody" : { + "description" : "Søkestreng kan være aktørId, fødselsnummer eller D-nummer.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SokefeltDto" + } + } + } + }, + "responses" : { + "200" : { + "description" : "Returnerer grunnlag", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/InfotrygdVedtakDto" + } + } + } + } + } + } + }, + "/api/kodeverk" : { + "get" : { + "tags" : [ "kodeverk" ], + "description" : "Henter kodeliste", + "operationId" : "hentGruppertKodeliste", + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { } + } + } + } + } + }, + "/api/los/los-behandling" : { + "get" : { + "tags" : [ "los-data" ], + "summary" : "Returnerer behandlingen som er tilknyttet uuid.", + "description" : "Hent behandling gitt id for LOS", + "operationId" : "hentBehandlingResultatForBackend_1", + "parameters" : [ { + "name" : "uuid", + "in" : "query", + "description" : "behandlingUUID", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer behandling", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/LosBehandlingDto" + } + } + } + } + } + } + }, + "/api/los/los-egenskap" : { + "get" : { + "tags" : [ "los-data" ], + "summary" : "Returnerer saksegenskaper som er tilknyttet saksnummer.", + "description" : "Hent egenskaper for fagsak gitt saksnummer for LOS", + "operationId" : "hentFagsakEgenskaper", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer behandling", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/LosFagsakEgenskaperDto" + } + } + } + } + } + } + }, + "/api/los/los-fristutlop" : { + "get" : { + "tags" : [ "los-data" ], + "description" : "Tilbyr data over når førstegangsbehandlinger går av vent", + "operationId" : "nøkkeltallFristUtløper", + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/NøkkeltallBehandlingVentefristUtløper" + } + } + } + } + } + } + } + }, + "/api/los/los-nokkeltall" : { + "get" : { + "tags" : [ "los-data" ], + "description" : "Tilbyr første søkte uttaksdato for åpne foreldrepenge-behandlinger med info om venting", + "operationId" : "nøkkeltallFørsteUttakPrMåned", + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/NøkkeltallBehandlingFørsteUttak" + } + } + } + } + } + } + } + }, + "/api/register/redirect-to/a-inntekt" : { + "get" : { + "tags" : [ "aktoer" ], + "description" : "Redirecter til a-inntekt for arbeidstakeren forhåndsvalgt nasjonal enhet og filter 8-30", + "operationId" : "getAInntektSammenligningUrl", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "307" : { + "description" : "Redirecter til a-inntekt for arbeidstakeren" + } + } + } + }, + "/api/register/redirect-to/aa-reg" : { + "get" : { + "tags" : [ "aktoer" ], + "description" : "Redirecter til aa-reg for arbeidstakeren", + "operationId" : "getAaregUrl", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "307" : { + "description" : "Redirecter til aa-reg for arbeidstakeren" + } + } + } + }, + "/api/init-fetch" : { + "get" : { + "tags" : [ "init-fetch" ], + "description" : "Returnerer ", + "operationId" : "hentInitielleRessurser", + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/InitLinksDto" + } + } + } + } + } + } + }, + "/api/vedtak/hent-vedtaksdokument" : { + "get" : { + "tags" : [ "vedtak" ], + "summary" : "Returnerer vedtaksdokument som er tilknyttet behandlingId.", + "description" : "Hent vedtaksdokument gitt behandlingId", + "operationId" : "hentVedtaksdokument", + "parameters" : [ { + "name" : "behandlingId", + "in" : "query", + "description" : "BehandlingId for vedtaksdokument", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/BehandlingIdDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/vedtak/regenerer" : { + "post" : { + "tags" : [ "vedtak" ], + "description" : "Generer vedtaksxmler som ikke er gyldige på nytt", + "operationId" : "regenererIkkeGyldigeVedtaksXml", + "requestBody" : { + "description" : "Datointervall i vedtak tabell for hvor det skal genereres ny vedtaksxml og maksAntall som behandles", + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/GenererVedtaksXmlDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/vedtak/validate" : { + "post" : { + "tags" : [ "vedtak" ], + "description" : "Validerer vedtaksxml", + "operationId" : "validerVedtaksXml", + "requestBody" : { + "description" : "Datointervall i vedtak tabell for hvilke vedtakxml som skal valideres og maksAntall som behandles", + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/GenererVedtaksXmlDto" + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "*/*" : { } + } + } + } + } + }, + "/api/feed/vedtak/foreldrepenger" : { + "get" : { + "tags" : [ "feed" ], + "description" : "Henter ut hendelser om foreldrepenger-vedtak", + "operationId" : "fpVedtakHendelser", + "parameters" : [ { + "name" : "sistLesteSekvensId", + "in" : "query", + "description" : "Siste sekvensId lest", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SekvensIdParam" + } + }, { + "name" : "maxAntall", + "in" : "query", + "description" : "max antall returnert", + "schema" : { + "$ref" : "#/components/schemas/MaxAntallParam" + } + }, { + "name" : "type", + "in" : "query", + "description" : "Filtrerer på type hendelse", + "schema" : { + "$ref" : "#/components/schemas/HendelseTypeParam" + } + }, { + "name" : "aktoerId", + "in" : "query", + "description" : "aktoerId", + "schema" : { + "$ref" : "#/components/schemas/AktørParam" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer hendelser om foreldrepenger-vedtak", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/FeedDto" + } + } + } + } + } + } + }, + "/api/feed/vedtak/svangerskapspenger" : { + "get" : { + "tags" : [ "feed" ], + "description" : "Henter ut hendelser om svangerskapspenger-vedtak", + "operationId" : "svpVedtakHendelser", + "parameters" : [ { + "name" : "sistLesteSekvensId", + "in" : "query", + "description" : "Siste sekvensId lest", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SekvensIdParam" + } + }, { + "name" : "maxAntall", + "in" : "query", + "description" : "max antall returnert", + "schema" : { + "$ref" : "#/components/schemas/MaxAntallParam" + } + }, { + "name" : "type", + "in" : "query", + "description" : "Filtrerer på type hendelse", + "schema" : { + "$ref" : "#/components/schemas/HendelseTypeParam" + } + }, { + "name" : "aktoerId", + "in" : "query", + "description" : "aktoerId", + "schema" : { + "$ref" : "#/components/schemas/AktørParam" + } + } ], + "responses" : { + "200" : { + "description" : "Returnerer hendelser om svangerskapspenger-vedtak", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/FeedDto" + } + } + } + } + } + } + }, + "/api/pip/aktoer-for-sak" : { + "get" : { + "tags" : [ "pip" ], + "description" : "Henter alle aktørId tilknyttet en fagsak", + "operationId" : "hentAktørIdListeTilknyttetSak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "type" : "string" + } + } + } + } + } + } + } + }, + "/api/pip/full-for-sak" : { + "get" : { + "tags" : [ "pip" ], + "description" : "Henter saksnummer, saksident og tilknyttede identer for en fagsak", + "operationId" : "hentFullInfoForSak", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SakOgPersonerDto" + } + } + } + } + } + }, + "post" : { + "tags" : [ "pip" ], + "description" : "Henter saksnummer, saksident og tilknyttede identer for en gruppe saker", + "operationId" : "hentFullInfoForSakEr", + "requestBody" : { + "content" : { + "*/*" : { + "schema" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "type" : "string" + } + } + } + }, + "required" : true + }, + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SakOgPersonerDto" + } + } + } + } + } + } + } + }, + "/api/pip/ident-for-sak" : { + "get" : { + "tags" : [ "pip" ], + "description" : "Henter saksident for en fagsak", + "operationId" : "hentSaksIdent", + "parameters" : [ { + "name" : "saksnummer", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + } + } + } + }, + "/api/pip/saksnummer-for-behandling" : { + "get" : { + "tags" : [ "pip" ], + "description" : "Henter saksnummer for en behandling", + "operationId" : "hentSaksnummerTilknyttetBehandling", + "parameters" : [ { + "name" : "behandlingUuid", + "in" : "query", + "required" : true, + "schema" : { + "$ref" : "#/components/schemas/UuidDto" + } + } ], + "responses" : { + "default" : { + "description" : "default response", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } + } + } + } + }, + "/api/prosesstask/create" : { + "post" : { + "tags" : [ "prosesstask" ], + "summary" : "Oppretter en ny task klar for kjøring.", + "description" : "Oppretter en prosess task i henhold til request", + "operationId" : "createProsessTask", + "requestBody" : { + "description" : "Informasjon for restart en eksisterende prosesstask", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ProsessTaskOpprettInputDto" + } + } + } + }, + "responses" : { + "202" : { + "description" : "Prosesstaskens oppdatert informasjon", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ProsessTaskDataDto" + } + } + } + }, + "500" : { + "description" : "Feilet pga ukjent feil eller tekniske/funksjonelle feil" + } + } + } + }, + "/api/prosesstask/feil/{prosessTaskId}" : { + "post" : { + "tags" : [ "prosesstask" ], + "description" : "Henter informasjon om feilet prosesstask med angitt prosesstask-id", + "operationId" : "finnFeiletProsessTask", + "parameters" : [ { + "name" : "prosessTaskId", + "in" : "path", + "required" : true, + "schema" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } ], + "responses" : { + "200" : { + "description" : "Angitt prosesstask-id finnes", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/FeiletProsessTaskDataDto" + } + } + } + }, + "404" : { + "description" : "Tom respons når angitt prosesstask-id ikke finnes" + }, + "400" : { + "description" : "Feil input" + } + } + } + }, + "/api/prosesstask/list/{prosessTaskStatus}" : { + "post" : { + "tags" : [ "prosesstask" ], + "description" : "Lister prosesstasker med angitt status.", + "operationId" : "finnProsessTasks", + "parameters" : [ { + "name" : "prosessTaskStatus", + "in" : "path", + "description" : "Liste av statuser som skal hentes.", + "required" : true, + "schema" : { + "type" : "string", + "enum" : [ "FEILET", "VENTER_SVAR", "SUSPENDERT", "VETO", "KLAR" ] + } + } ], + "responses" : { + "200" : { + "description" : "Liste over prosesstasker, eller tom liste når angitt/default søkefilter ikke finner noen prosesstasker", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ProsessTaskDataDto" + } + } + } + } + } + } + }, + "/api/prosesstask/launch/{prosessTaskId}/{prosessTaskStatus}" : { + "post" : { + "tags" : [ "prosesstask" ], + "summary" : "En allerede FERDIG prosesstask kan ikke restartes. Dette endepunktet vil tvinge tasken til å trigge uavhengig av maks antall forsøk", + "description" : "Restarter en eksisterende prosesstask.", + "operationId" : "restartProsessTask", + "parameters" : [ { + "name" : "prosessTaskId", + "in" : "path", + "required" : true, + "schema" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + }, { + "name" : "prosessTaskStatus", + "in" : "path", + "required" : true, + "schema" : { + "type" : "string", + "enum" : [ "FEILET", "VENTER_SVAR", "SUSPENDERT" ] + } + } ], + "responses" : { + "200" : { + "description" : "Prosesstaskens oppdatert informasjon", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ProsessTaskRestartResultatDto" + } + } + } + }, + "500" : { + "description" : "Feilet pga ukjent feil eller tekniske/funksjonelle feil" + } + } + } + }, + "/api/prosesstask/retryall" : { + "post" : { + "tags" : [ "prosesstask" ], + "summary" : "Dette endepunktet vil tvinge feilede tasks til å trigge ett forsøk uavhengig av maks antall forsøk", + "description" : "Restarter alle prosesstask med status FEILET.", + "operationId" : "retryAllProsessTask", + "responses" : { + "200" : { + "description" : "Response med liste av prosesstasks som restartes", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ProsessTaskRetryAllResultatDto" + } + } + } + }, + "500" : { + "description" : "Feilet pga ukjent feil eller tekniske/funksjonelle feil" + } + } + } + }, + "/api/prosesstask/search" : { + "post" : { + "tags" : [ "prosesstask" ], + "description" : "Søker etter prosesstask med angitt tekst i properties.", + "operationId" : "searchProsessTasks", + "requestBody" : { + "description" : "Søkefilter for å begrense resultatet av returnerte prosesstask.", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/SokeFilterDto" + } + } + } + }, + "responses" : { + "200" : { + "description" : "Liste over prosesstasker, eller tom liste når angitt/default søkefilter ikke finner noen prosesstasker", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ProsessTaskDataDto" + } + } + } + } + } + } + }, + "/api/prosesstask/setferdig/{prosessTaskId}/{prosessTaskStatus}" : { + "post" : { + "tags" : [ "prosesstask" ], + "description" : "Setter feilet prosesstask med angitt prosesstask-id til FERDIG (kjøres ikke)", + "operationId" : "setFeiletProsessTaskFerdig", + "parameters" : [ { + "name" : "prosessTaskId", + "in" : "path", + "required" : true, + "schema" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + }, { + "name" : "prosessTaskStatus", + "in" : "path", + "required" : true, + "schema" : { + "type" : "string", + "enum" : [ "FEILET", "VENTER_SVAR", "SUSPENDERT", "VETO", "KLAR" ] + } + } ], + "responses" : { + "200" : { + "description" : "Angitt prosesstask-id satt til status FERDIG" + }, + "500" : { + "description" : "Feilet pga ukjent feil eller tekniske/funksjonelle feil" + } + } + } + } + }, + "components" : { + "schemas" : { + "CallbackDto" : { + "required" : [ "avsenderRef", "opprettetTidspunkt" ], + "type" : "object", + "properties" : { + "opprettetTidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "avsenderRef" : { + "$ref" : "#/components/schemas/ReferanseDto" + }, + "opprinneligGrunnlagRef" : { + "$ref" : "#/components/schemas/ReferanseDto" + }, + "oppdatertGrunnlagRef" : { + "$ref" : "#/components/schemas/ReferanseDto" + } + } + }, + "ReferanseDto" : { + "required" : [ "referanse" ], + "type" : "object", + "properties" : { + "referanse" : { + "type" : "string", + "format" : "uuid" + } + } + }, + "BehandlingDto" : { + "type" : "object", + "properties" : { + "id" : { + "type" : "integer", + "format" : "int64" + }, + "uuid" : { + "type" : "string", + "format" : "uuid" + }, + "versjon" : { + "type" : "integer", + "format" : "int64" + }, + "type" : { + "type" : "string", + "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] + }, + "status" : { + "type" : "string", + "enum" : [ "AVSLU", "FVED", "IVED", "OPPRE", "UTRED" ] + }, + "fagsakId" : { + "type" : "integer", + "format" : "int64" + }, + "opprettet" : { + "type" : "string", + "format" : "date-time" + }, + "avsluttet" : { + "type" : "string", + "format" : "date-time" + }, + "endret" : { + "type" : "string", + "format" : "date-time" + }, + "endretAvBrukernavn" : { + "type" : "string" + }, + "behandlendeEnhetId" : { + "type" : "string" + }, + "behandlendeEnhetNavn" : { + "type" : "string" + }, + "erAktivPapirsoknad" : { + "type" : "boolean" + }, + "førsteÅrsak" : { + "$ref" : "#/components/schemas/BehandlingÅrsakDto" + }, + "behandlingsfristTid" : { + "type" : "string", + "format" : "date" + }, + "gjeldendeVedtak" : { + "type" : "boolean" + }, + "erPaaVent" : { + "type" : "boolean" + }, + "originalVedtaksDato" : { + "type" : "string", + "format" : "date" + }, + "behandlingHenlagt" : { + "type" : "boolean" + }, + "behandlingPaaVent" : { + "type" : "boolean" + }, + "behandlingPåVent" : { + "type" : "boolean" + }, + "fristBehandlingPåVent" : { + "type" : "string" + }, + "fristBehandlingPaaVent" : { + "type" : "string" + }, + "venteArsakKode" : { + "type" : "string" + }, + "venteÅrsakKode" : { + "type" : "string" + }, + "sprakkode" : { + "type" : "string", + "enum" : [ "NB", "NN", "EN", "-" ] + }, + "språkkode" : { + "type" : "string", + "enum" : [ "NB", "NN", "EN", "-" ] + }, + "behandlingKøet" : { + "type" : "boolean" + }, + "ansvarligSaksbehandler" : { + "type" : "string" + }, + "toTrinnsBehandling" : { + "type" : "boolean" + }, + "behandlingsresultat" : { + "$ref" : "#/components/schemas/BehandlingsresultatDto" + }, + "behandlingÅrsaker" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BehandlingÅrsakDto" + } + }, + "vilkår" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/VilkårDto" + } + }, + "links" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ResourceLink" + } + }, + "behandlingKoet" : { + "type" : "boolean" + } + } + }, + "BehandlingsresultatDto" : { + "type" : "object", + "properties" : { + "id" : { + "type" : "integer", + "format" : "int64" + }, + "type" : { + "type" : "string", + "enum" : [ "IKKE_FASTSATT", "INNVILGET", "AVSLÅTT", "OPPHØR", "HENLAGT_SØKNAD_TRUKKET", "HENLAGT_FEILOPPRETTET", "HENLAGT_BRUKER_DØD", "MERGET_OG_HENLAGT", "HENLAGT_SØKNAD_MANGLER", "FORELDREPENGER_ENDRET", "FORELDREPENGER_SENERE", "INGEN_ENDRING", "MANGLER_BEREGNINGSREGLER", "KLAGE_AVVIST", "KLAGE_MEDHOLD", "KLAGE_DELVIS_MEDHOLD", "KLAGE_OMGJORT_UGUNST", "KLAGE_YTELSESVEDTAK_OPPHEVET", "KLAGE_YTELSESVEDTAK_STADFESTET", "KLAGE_TILBAKEKREVING_VEDTAK_STADFESTET", "HENLAGT_KLAGE_TRUKKET", "HJEMSENDE_UTEN_OPPHEVE", "ANKE_AVVIST", "ANKE_MEDHOLD", "ANKE_DELVIS_MEDHOLD", "ANKE_OMGJORT_UGUNST", "ANKE_OPPHEVE_OG_HJEMSENDE", "ANKE_HJEMSENDE_UTEN_OPPHEV", "ANKE_YTELSESVEDTAK_STADFESTET", "HENLAGT_ANKE_TRUKKET", "INNSYN_INNVILGET", "INNSYN_DELVIS_INNVILGET", "INNSYN_AVVIST", "HENLAGT_INNSYN_TRUKKET" ] + }, + "avslagsarsak" : { + "type" : "string", + "enum" : [ "1001", "1002", "1003", "1004", "1005", "1006", "1007", "1008", "1009", "1010", "1011", "1012", "1013", "1014", "1015", "1016", "1017", "1018", "1019", "1020", "1021", "1023", "1024", "1025", "1026", "1027", "1028", "1029", "1031", "1032", "1033", "1034", "1035", "1041", "1051", "1052", "1060", "1061", "1062", "1063", "1064", "1065", "1066", "1099", "-" ] + }, + "avslagsarsakFritekst" : { + "type" : "string" + }, + "rettenTil" : { + "type" : "string", + "enum" : [ "HAR_RETT_TIL_FP", "HAR_IKKE_RETT_TIL_FP", "-" ] + }, + "konsekvenserForYtelsen" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "FORELDREPENGER_OPPHØRER", "ENDRING_I_BEREGNING", "ENDRING_I_UTTAK", "ENDRING_I_FORDELING_AV_YTELSEN", "INGEN_ENDRING", "-" ] + } + }, + "vedtaksbrev" : { + "type" : "string", + "enum" : [ "AUTOMATISK", "FRITEKST", "INGEN", "-" ] + }, + "vedtaksbrevStatus" : { + "type" : "string", + "enum" : [ "VEDTAKSBREV_PRODUSERES", "INGEN_VEDTAKSBREV", "INGEN_VEDTAKSBREV_ANKE", "INGEN_VEDTAKSBREV_KLAGEBEHANDLING", "INGEN_VEDTAKSBREV_BEHANDLING_ETTER_KLAGE", "INGEN_VEDTAKSBREV_JUSTERING_AV_FERIEPENGER", "INGEN_VEDTAKSBREV_INGEN_KONSEKVENS_FOR_YTELSE" ] + }, + "overskrift" : { + "type" : "string" + }, + "fritekstbrev" : { + "type" : "string" + }, + "harRedigertVedtaksbrev" : { + "type" : "boolean" + }, + "erRevurderingMedUendretUtfall" : { + "type" : "boolean" + }, + "skjæringstidspunkt" : { + "$ref" : "#/components/schemas/SkjæringstidspunktDto" + }, + "endretDekningsgrad" : { + "type" : "boolean" + }, + "opphørsdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "BehandlingÅrsakDto" : { + "type" : "object", + "properties" : { + "erAutomatiskRevurdering" : { + "type" : "boolean" + }, + "behandlingArsakType" : { + "type" : "string", + "enum" : [ "RE-LOV", "RE-RGLF", "RE-FEFAKTA", "RE-PRSSL", "RE-ANNET", "RE-MDL", "RE-OPTJ", "RE-FRDLING", "RE-INNTK", "RE-FØDSEL", "RE-DØD", "RE-SRTB", "RE-FRIST", "RE-BER-GRUN", "RE-KLAG-U-INNTK", "RE-KLAG-M-INNTK", "ETTER_KLAGE", "RE-MF", "RE-MFIP", "RE-AVAB", "RE-END-FRA-BRUKER", "RE-END-INNTEKTSMELD", "BERØRT-BEHANDLING", "REBEREGN-FERIEPENGER", "RE-UTSATT-START", "RE-SATS-REGULERING", "ENDRE-DEKNINGSGRAD", "INFOBREV_BEHANDLING", "INFOBREV_OPPHOLD", "INFOBREV_PÅMINNELSE", "OPPHØR-NYTT-BARN", "RE-HENDELSE-FØDSEL", "RE-HENDELSE-DØD-F", "RE-HENDELSE-DØD-B", "RE-HENDELSE-DØDFØD", "RE-HENDELSE-UTFLYTTING", "RE-VEDTAK-PSB", "FEIL_PRAKSIS_UTSETTELSE", "FEIL_PRAKSIS_IVERKS_UTSET", "KLAGE_TILBAKE", "RE-YTELSE", "RE-REGISTEROPPL", "KØET-BEHANDLING", "RE-TILST-YT-INNVIL", "RE-TILST-YT-OPPH", "-" ] + }, + "manueltOpprettet" : { + "type" : "boolean" + } + } + }, + "ResourceLink" : { + "required" : [ "href", "rel", "type" ], + "type" : "object", + "properties" : { + "href" : { + "type" : "string", + "format" : "uri" + }, + "rel" : { + "type" : "string" + }, + "requestPayload" : { + "type" : "object" + }, + "type" : { + "type" : "string", + "enum" : [ "DELETE", "GET", "PATCH", "POST", "PUT" ] + } + } + }, + "SkjæringstidspunktDto" : { + "type" : "object", + "properties" : { + "dato" : { + "type" : "string", + "format" : "date" + }, + "utenMinsterett" : { + "type" : "boolean" + } + } + }, + "VilkårDto" : { + "type" : "object", + "properties" : { + "vilkarType" : { + "type" : "string", + "enum" : [ "FP_VK_1", "FP_VK_11", "FP_VK_16", "FP_VK_2", "FP_VK_2_F", "FP_VK_2_L", "FP_VK_3", "FP_VK_4", "FP_VK_5", "FP_VK_8", "FP_VK_33", "FP_VK_34", "FP_VK_21", "FP_VK_23", "FP_VK_41", "SVP_VK_1", "-" ] + }, + "vilkarStatus" : { + "type" : "string", + "enum" : [ "OPPFYLT", "IKKE_OPPFYLT", "IKKE_VURDERT", "-" ] + }, + "avslagKode" : { + "type" : "string" + }, + "lovReferanse" : { + "type" : "string" + }, + "overstyrbar" : { + "type" : "boolean" + }, + "evaluering" : { + "type" : "string" + }, + "input" : { + "type" : "string" + } + } + }, + "UuidDto" : { + "type" : "object", + "properties" : { + "uuid" : { + "type" : "string", + "format" : "uuid" + } + } + }, + "ReåpneBehandlingDto" : { + "required" : [ "behandlingUuid", "behandlingVersjon" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "behandlingVersjon" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + }, + "ByttBehandlendeEnhetDto" : { + "required" : [ "behandlingUuid" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "enhetNavn" : { + "maxLength" : 256, + "minLength" : 1, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "enhetId" : { + "maxLength" : 10, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-\\–0-9]*$", + "type" : "string" + }, + "begrunnelse" : { + "maxLength" : 4000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "behandlingVersjon" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + }, + "SettBehandlingPaVentDto" : { + "required" : [ "behandlingUuid", "behandlingVersjon" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "behandlingVersjon" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "frist" : { + "type" : "string", + "format" : "date" + }, + "ventearsak" : { + "type" : "string", + "enum" : [ "-", "AVV_DOK", "AVV_FODSEL", "FOR_TIDLIG_SOKNAD", "SCANN", "UTV_FRIST", "VENT_PÅ_BRUKERTILBAKEMELDING", "VENT_UTLAND_TRYGD", "VENT_INNTEKT_RAPPORTERINGSFRIST", "VENT_MANGLENDE_SYKEMELDING", "VENT_OPDT_INNTEKTSMELDING", "VENT_OPPTJENING_OPPLYSNINGER", "VENT_PÅ_SISTE_AAP_MELDEKORT", "VENT_SØKNAD_SENDT_INFORMASJONSBREV", "VENT_ÅPEN_BEHANDLING", "VENT_KABAL", "ANKE_OVERSENDT_TIL_TRYGDERETTEN", "ANKE_VENTER_PAA_MERKNADER_FRA_BRUKER", "AVV_RESPONS_REVURDERING", "VENT_TIDLIGERE_BEHANDLING", "AAP_DP_SISTE_10_MND_SVP", "AAP_DP_ENESTE_AKTIVITET_SVP", "DELVIS_TILRETTELEGGING_OG_REFUSJON_SVP", "FLERE_ARBEIDSFORHOLD_SAMME_ORG_SVP", "FL_SN_IKKE_STOTTET_FOR_SVP", "GRADERING_FLERE_ARBEIDSFORHOLD", "OPPD_ÅPEN_BEH", "REFUSJON_3_MÅNEDER", "VENTELØNN_ELLER_MILITÆR_MED_FLERE_AKTIVITETER", "VENT_BEREGNING_TILBAKE_I_TID", "VENT_DEKGRAD_REGEL", "VENT_DØDFØDSEL_80P_DEKNINGSGRAD", "VENT_FEIL_ENDRINGSSØKNAD", "VENT_GRADERING_UTEN_BEREGNINGSGRUNNLAG", "VENT_INFOTRYGD", "VENT_MANGLENDE_ARBEIDSFORHOLD", "VENT_MILITÆR_OG_BG_UNDER_3G", "ULIKE_STARTDATOER_SVP", "VENT_LOVENDRING_8_41", "VENT_PÅ_KORRIGERT_BESTEBEREGNING", "VENT_PÅ_NY_INNTEKTSMELDING_MED_GYLDIG_ARB_ID", "VENT_REGISTERINNHENTING", "VENT_ØKONOMI" ] + } + } + }, + "GjenopptaBehandlingDto" : { + "required" : [ "behandlingUuid", "behandlingVersjon" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "behandlingVersjon" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + }, + "HenleggBehandlingDto" : { + "required" : [ "behandlingUuid", "årsakKode" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "årsakKode" : { + "maxLength" : 100, + "minLength" : 1, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-\\–0-9]*$", + "type" : "string" + }, + "begrunnelse" : { + "maxLength" : 4000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "behandlingVersjon" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + }, + "SaksnummerDto" : { + "required" : [ "saksnummer" ], + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + } + } + }, + "BehandlingIdDto" : { + "required" : [ "behandlingUuid" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + } + } + }, + "AksjonspunktDto" : { + "required" : [ "begrunnelse", "definisjon", "erAktivt", "kanLoses", "status", "toTrinnsBehandling" ], + "type" : "object", + "properties" : { + "definisjon" : { + "type" : "string", + "enum" : [ "5001", "5027", "5004", "5005", "5006", "5007", "5008", "5011", "5012", "5013", "5014", "5015", "5016", "5017", "5002", "5026", "5028", "5030", "5031", "5033", "5034", "5003", "5035", "5037", "5038", "5039", "5040", "5043", "5046", "5047", "5049", "5051", "5052", "5054", "5055", "5057", "5058", "5059", "5060", "5061", "5068", "5064", "5065", "5063", "5066", "5071", "5072", "5069", "5073", "5076", "5077", "5085", "5082", "5084", "5029", "5086", "5089", "5041", "5062", "5091", "5092", "5095", "5096", "5074", "5101", "5102", "6002", "6003", "6004", "6005", "6006", "6008", "6009", "6010", "6011", "6065", "6014", "6015", "6045", "6016", "6018", "6017", "7001", "7002", "7003", "7005", "7007", "7008", "7011", "7013", "7014", "7020", "7030", "7033", "7037", "7039", "7040", "UNDEFINED('null')", "5009", "5019", "5020", "5021", "5022", "5023", "5024", "5025", "5032", "5036", "5042", "5044", "5045", "5048", "5050", "5053", "5056", "5067", "5070", "5075", "5078", "5079", "5080", "5081", "5083", "5087", "5088", "5090", "5093", "5094", "5097", "5098", "5099", "6007", "6012", "6013", "6068", "6070", "7004", "7006", "7009", "7015", "7016", "7017", "7018", "7019", "7021", "7022", "7023", "7024", "7025", "7026", "7027", "7028", "7029", "7032", "7034", "7035", "7036", "7038", "7041" ] + }, + "status" : { + "type" : "string", + "enum" : [ "AVBR", "OPPR", "UTFO" ] + }, + "begrunnelse" : { + "type" : "string", + "nullable" : true + }, + "vilkarType" : { + "type" : "string", + "nullable" : true, + "enum" : [ "FP_VK_1", "FP_VK_11", "FP_VK_16", "FP_VK_2", "FP_VK_2_F", "FP_VK_2_L", "FP_VK_3", "FP_VK_4", "FP_VK_5", "FP_VK_8", "FP_VK_33", "FP_VK_34", "FP_VK_21", "FP_VK_23", "FP_VK_41", "SVP_VK_1", "-" ] + }, + "toTrinnsBehandling" : { + "type" : "boolean" + }, + "toTrinnsBehandlingGodkjent" : { + "type" : "boolean", + "nullable" : true + }, + "vurderPaNyttArsaker" : { + "uniqueItems" : true, + "type" : "array", + "nullable" : true, + "items" : { + "type" : "string", + "nullable" : true, + "enum" : [ "FEIL_FAKTA", "FEIL_LOV", "SKJØNN", "UTREDNING", "SAKSFLYT", "BEGRUNNELSE", "-", "ANNET", "FEIL_REGEL" ] + } + }, + "besluttersBegrunnelse" : { + "type" : "string", + "nullable" : true + }, + "aksjonspunktType" : { + "type" : "string", + "nullable" : true, + "enum" : [ "AUTO", "MANU", "OVST", "SAOV", "-" ] + }, + "kanLoses" : { + "type" : "boolean" + }, + "erAktivt" : { + "type" : "boolean" + }, + "fristTid" : { + "type" : "string", + "format" : "date-time", + "nullable" : true + }, + "endretTidspunkt" : { + "type" : "string", + "format" : "date-time", + "nullable" : true + }, + "endretAv" : { + "type" : "string", + "nullable" : true + } + } + }, + "AsyncPollingStatus" : { + "type" : "object", + "properties" : { + "status" : { + "type" : "string", + "enum" : [ "PENDING", "COMPLETE", "DELAYED", "CANCELLED", "HALTED" ] + }, + "eta" : { + "type" : "string", + "format" : "date-time" + }, + "message" : { + "type" : "string" + }, + "pollIntervalMillis" : { + "type" : "integer", + "format" : "int64" + }, + "location" : { + "type" : "string", + "format" : "uri" + }, + "cancelUri" : { + "type" : "string", + "format" : "uri" + }, + "readOnly" : { + "type" : "boolean" + }, + "pending" : { + "type" : "boolean" + } + } + }, + "UtvidetBehandlingDto" : { + "type" : "object", + "properties" : { + "id" : { + "type" : "integer", + "format" : "int64" + }, + "uuid" : { + "type" : "string", + "format" : "uuid" + }, + "versjon" : { + "type" : "integer", + "format" : "int64" + }, + "type" : { + "type" : "string", + "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] + }, + "status" : { + "type" : "string", + "enum" : [ "AVSLU", "FVED", "IVED", "OPPRE", "UTRED" ] + }, + "fagsakId" : { + "type" : "integer", + "format" : "int64" + }, + "opprettet" : { + "type" : "string", + "format" : "date-time" + }, + "avsluttet" : { + "type" : "string", + "format" : "date-time" + }, + "endret" : { + "type" : "string", + "format" : "date-time" + }, + "endretAvBrukernavn" : { + "type" : "string" + }, + "behandlendeEnhetId" : { + "type" : "string" + }, + "behandlendeEnhetNavn" : { + "type" : "string" + }, + "erAktivPapirsoknad" : { + "type" : "boolean" + }, + "førsteÅrsak" : { + "$ref" : "#/components/schemas/BehandlingÅrsakDto" + }, + "behandlingsfristTid" : { + "type" : "string", + "format" : "date" + }, + "gjeldendeVedtak" : { + "type" : "boolean" + }, + "erPaaVent" : { + "type" : "boolean" + }, + "originalVedtaksDato" : { + "type" : "string", + "format" : "date" + }, + "behandlingHenlagt" : { + "type" : "boolean" + }, + "behandlingPaaVent" : { + "type" : "boolean" + }, + "behandlingPåVent" : { + "type" : "boolean" + }, + "fristBehandlingPåVent" : { + "type" : "string" + }, + "fristBehandlingPaaVent" : { + "type" : "string" + }, + "venteArsakKode" : { + "type" : "string" + }, + "venteÅrsakKode" : { + "type" : "string" + }, + "sprakkode" : { + "type" : "string", + "enum" : [ "NB", "NN", "EN", "-" ] + }, + "språkkode" : { + "type" : "string", + "enum" : [ "NB", "NN", "EN", "-" ] + }, + "behandlingKøet" : { + "type" : "boolean" + }, + "ansvarligSaksbehandler" : { + "type" : "string" + }, + "toTrinnsBehandling" : { + "type" : "boolean" + }, + "behandlingsresultat" : { + "$ref" : "#/components/schemas/BehandlingsresultatDto" + }, + "behandlingÅrsaker" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BehandlingÅrsakDto" + } + }, + "vilkår" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/VilkårDto" + } + }, + "links" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ResourceLink" + } + }, + "ansvarligBeslutter" : { + "type" : "string" + }, + "aksjonspunkt" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AksjonspunktDto" + } + }, + "harSøknad" : { + "type" : "boolean" + }, + "harRegisterdata" : { + "type" : "boolean" + }, + "harSattEndringsdato" : { + "type" : "boolean" + }, + "alleUttaksperioderAvslått" : { + "type" : "boolean" + }, + "sjekkSimuleringResultat" : { + "type" : "boolean" + }, + "taskStatus" : { + "$ref" : "#/components/schemas/AsyncPollingStatus" + }, + "behandlingKoet" : { + "type" : "boolean" + } + } + }, + "NyBehandlingDto" : { + "required" : [ "behandlingType", "saksnummer" ], + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "behandlingType" : { + "type" : "string", + "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] + }, + "behandlingArsakType" : { + "type" : "string", + "enum" : [ "RE-LOV", "RE-RGLF", "RE-FEFAKTA", "RE-PRSSL", "RE-ANNET", "RE-MDL", "RE-OPTJ", "RE-FRDLING", "RE-INNTK", "RE-FØDSEL", "RE-DØD", "RE-SRTB", "RE-FRIST", "RE-BER-GRUN", "RE-KLAG-U-INNTK", "RE-KLAG-M-INNTK", "ETTER_KLAGE", "RE-MF", "RE-MFIP", "RE-AVAB", "RE-END-FRA-BRUKER", "RE-END-INNTEKTSMELD", "BERØRT-BEHANDLING", "REBEREGN-FERIEPENGER", "RE-UTSATT-START", "RE-SATS-REGULERING", "ENDRE-DEKNINGSGRAD", "INFOBREV_BEHANDLING", "INFOBREV_OPPHOLD", "INFOBREV_PÅMINNELSE", "OPPHØR-NYTT-BARN", "RE-HENDELSE-FØDSEL", "RE-HENDELSE-DØD-F", "RE-HENDELSE-DØD-B", "RE-HENDELSE-DØDFØD", "RE-HENDELSE-UTFLYTTING", "RE-VEDTAK-PSB", "FEIL_PRAKSIS_UTSETTELSE", "FEIL_PRAKSIS_IVERKS_UTSET", "KLAGE_TILBAKE", "RE-YTELSE", "RE-REGISTEROPPL", "KØET-BEHANDLING", "RE-TILST-YT-INNVIL", "RE-TILST-YT-OPPH", "-" ] + }, + "nyBehandlingEtterKlage" : { + "type" : "boolean" + } + } + }, + "ProsessTaskGruppeIdDto" : { + "type" : "object", + "properties" : { + "gruppe" : { + "maxLength" : 250, + "minLength" : 1, + "pattern" : "[a-zA-Z0-9-.]+", + "type" : "string" + } + } + }, + "BekreftedeAksjonspunkterDto" : { + "required" : [ "behandlingUuid", "behandlingVersjon" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "behandlingVersjon" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "bekreftedeAksjonspunktDtoer" : { + "maxItems" : 10, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BekreftetAksjonspunktDto" + } + } + } + }, + "BekreftetAksjonspunktDto" : { + "type" : "object", + "properties" : { + "begrunnelse" : { + "maxLength" : 4000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + } + } + }, + "OverstyringAksjonspunktDto" : { + "type" : "object", + "properties" : { + "begrunnelse" : { + "maxLength" : 4000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + } + } + }, + "OverstyrteAksjonspunkterDto" : { + "required" : [ "behandlingUuid", "behandlingVersjon" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "behandlingVersjon" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "overstyrteAksjonspunktDtoer" : { + "maxItems" : 10, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OverstyringAksjonspunktDto" + } + } + } + }, + "AnkeVurderingResultatDto" : { + "type" : "object", + "properties" : { + "ankeVurdering" : { + "type" : "string", + "enum" : [ "ANKE_STADFESTE_YTELSESVEDTAK", "ANKE_HJEMSENDE_UTEN_OPPHEV", "ANKE_OPPHEVE_OG_HJEMSENDE", "ANKE_OMGJOER", "ANKE_AVVIS", "-" ] + }, + "begrunnelse" : { + "type" : "string" + }, + "fritekstTilBrev" : { + "type" : "string" + }, + "ankeOmgjoerArsak" : { + "type" : "string", + "enum" : [ "NYE_OPPLYSNINGER", "ULIK_REGELVERKSTOLKNING", "ULIK_VURDERING", "PROSESSUELL_FEIL", "-" ] + }, + "ankeVurderingOmgjoer" : { + "type" : "string", + "enum" : [ "ANKE_TIL_GUNST", "ANKE_DELVIS_OMGJOERING_TIL_GUNST", "ANKE_TIL_UGUNST", "-" ] + }, + "erAnkerIkkePart" : { + "type" : "boolean" + }, + "erFristIkkeOverholdt" : { + "type" : "boolean" + }, + "erIkkeKonkret" : { + "type" : "boolean" + }, + "erIkkeSignert" : { + "type" : "boolean" + }, + "erSubsidiartRealitetsbehandles" : { + "type" : "boolean" + }, + "erMerknaderMottatt" : { + "type" : "boolean" + }, + "merknadKommentar" : { + "type" : "string" + }, + "påAnketKlageBehandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "trygderettVurdering" : { + "type" : "string", + "enum" : [ "ANKE_STADFESTE_YTELSESVEDTAK", "ANKE_HJEMSENDE_UTEN_OPPHEV", "ANKE_OPPHEVE_OG_HJEMSENDE", "ANKE_OMGJOER", "ANKE_AVVIS", "-" ] + }, + "trygderettOmgjoerArsak" : { + "type" : "string", + "enum" : [ "NYE_OPPLYSNINGER", "ULIK_REGELVERKSTOLKNING", "ULIK_VURDERING", "PROSESSUELL_FEIL", "-" ] + }, + "trygderettVurderingOmgjoer" : { + "type" : "string", + "enum" : [ "ANKE_TIL_GUNST", "ANKE_DELVIS_OMGJOERING_TIL_GUNST", "ANKE_TIL_UGUNST", "-" ] + }, + "sendtTilTrygderettenDato" : { + "type" : "string", + "format" : "date" + } + } + }, + "AnkebehandlingDto" : { + "type" : "object", + "properties" : { + "ankeVurderingResultat" : { + "$ref" : "#/components/schemas/AnkeVurderingResultatDto" + }, + "underBehandlingKabal" : { + "type" : "boolean" + }, + "underBehandlingKabalTrygderett" : { + "type" : "boolean" + }, + "behandletAvKabal" : { + "type" : "boolean" + } + } + }, + "Beløp" : { + "type" : "object", + "properties" : { + "verdi" : { + "type" : "number" + }, + "indexKey" : { + "type" : "string" + } + } + }, + "DatoIntervallEntitet" : { + "type" : "object", + "properties" : { + "fomDato" : { + "type" : "string", + "format" : "date" + }, + "tomDato" : { + "type" : "string", + "format" : "date" + } + } + }, + "InntektsmeldingDto" : { + "type" : "object", + "properties" : { + "arbeidsgiverReferanse" : { + "type" : "string" + }, + "arbeidsgiver" : { + "type" : "string" + }, + "arbeidsgiverOrgnr" : { + "type" : "string" + }, + "arbeidsgiverStartdato" : { + "type" : "string", + "format" : "date" + }, + "innsendingstidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "utsettelsePerioder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/UtsettelsePeriodeDto" + } + }, + "graderingPerioder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/GraderingPeriodeDto" + } + }, + "getRefusjonBeløpPerMnd" : { + "$ref" : "#/components/schemas/Beløp" + } + } + }, + "NaturalYtelse" : { + "type" : "object", + "properties" : { + "periode" : { + "$ref" : "#/components/schemas/DatoIntervallEntitet" + }, + "beloepPerMnd" : { + "$ref" : "#/components/schemas/Beløp" + }, + "type" : { + "type" : "string", + "enum" : [ "ELEKTRISK_KOMMUNIKASJON", "AKSJER_UNDERKURS", "LOSJI", "KOST_DOEGN", "BESOEKSREISER_HJEM", "KOSTBESPARELSE_HJEM", "RENTEFORDEL_LAAN", "BIL", "KOST_DAGER", "BOLIG", "FORSIKRINGER", "FRI_TRANSPORT", "OPSJONER", "TILSKUDD_BARNEHAGE", "ANNET", "BEDRIFTSBARNEHAGE", "YRKESBIL_KILOMETER", "YRKESBIL_LISTEPRIS", "UTENLANDSK_PENSJONSORDNING", "-" ] + }, + "indexKey" : { + "type" : "string" + } + } + }, + "Refusjon" : { + "type" : "object", + "properties" : { + "refusjonsbeløpMnd" : { + "type" : "number" + }, + "fomDato" : { + "type" : "string", + "format" : "date" + } + } + }, + "ArbeidOgInntektsmeldingDto" : { + "type" : "object", + "properties" : { + "inntektsmeldinger" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InntektsmeldingDto" + } + }, + "arbeidsforhold" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ArbeidsforholdDto" + } + }, + "inntekter" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InntektDto" + } + }, + "skjæringstidspunkt" : { + "type" : "string", + "format" : "date" + } + } + }, + "ArbeidsforholdDto" : { + "type" : "object", + "properties" : { + "arbeidsgiverReferanse" : { + "pattern" : "^\\d{9}$|^\\d{13}$", + "type" : "string" + }, + "arbeidType" : { + "type" : "string", + "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] + } + } + }, + "InntektDto" : { + "type" : "object", + "properties" : { + "arbeidsgiverIdent" : { + "type" : "string" + }, + "inntekter" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InntektspostDto" + } + } + } + }, + "InntektspostDto" : { + "type" : "object", + "properties" : { + "beløp" : { + "type" : "number" + }, + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "type" : { + "type" : "string", + "enum" : [ "-", "LØNN", "YTELSE", "VANLIG", "SELVSTENDIG_NÆRINGSDRIVENDE", "NÆRING_FISKE_FANGST_FAMBARNEHAGE" ] + } + } + }, + "PermisjonOgMangelDto" : { + "type" : "object", + "properties" : { + "permisjonFom" : { + "type" : "string", + "format" : "date" + }, + "permisjonTom" : { + "type" : "string", + "format" : "date" + }, + "type" : { + "type" : "string", + "enum" : [ "-", "PERMISJON", "UTDANNINGSPERMISJON", "UTDANNINGSPERMISJON_IKKE_LOVFESTET", "UTDANNINGSPERMISJON_LOVFESTET", "VELFERDSPERMISJON", "ANNEN_PERMISJON_IKKE_LOVFESTET", "ANNEN_PERMISJON_LOVFESTET", "PERMISJON_MED_FORELDREPENGER", "PERMITTERING", "PERMISJON_VED_MILITÆRTJENESTE" ] + }, + "årsak" : { + "type" : "string", + "enum" : [ "PERMISJON", "MANGLENDE_INNTEKTSMELDING", "INNTEKTSMELDING_UTEN_ARBEIDSFORHOLD", "ENDRING_I_ARBEIDSFORHOLDS_ID", "PERMISJON_UTEN_SLUTTDATO" ] + }, + "permisjonStatus" : { + "type" : "string", + "enum" : [ "-", "BRUK_PERMISJON", "IKKE_BRUK_PERMISJON", "UGYLDIGE_PERIODER" ] + } + } + }, + "ManueltArbeidsforholdDto" : { + "required" : [ "arbeidsgiverIdent", "behandlingUuid", "behandlingVersjon", "fom", "stillingsprosent", "vurdering" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "begrunnelse" : { + "maxLength" : 2000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "arbeidsgiverIdent" : { + "pattern" : "^\\d{9}$|^\\d{13}$", + "type" : "string" + }, + "internArbeidsforholdRef" : { + "maxLength" : 100, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "arbeidsgiverNavn" : { + "maxLength" : 200, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "stillingsprosent" : { + "maximum" : 100, + "minimum" : 0, + "type" : "integer", + "format" : "int32" + }, + "vurdering" : { + "type" : "string", + "enum" : [ "KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_INNTEKTSMELDING", "FORTSETT_UTEN_INNTEKTSMELDING", "MELDING_TIL_ARBEIDSGIVER_NAV_NO", "KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_ARBEIDSFORHOLD", "IKKE_OPPRETT_BASERT_PÅ_INNTEKTSMELDING", "OPPRETT_BASERT_PÅ_INNTEKTSMELDING", "MANUELT_OPPRETTET_AV_SAKSBEHANDLER", "FJERN_FRA_BEHANDLINGEN", "SLÅTT_SAMMEN_MED_ANNET", "BRUK_MED_OVERSTYRT_PERIODE", "INNTEKT_IKKE_MED_I_BG", "BRUK", "NYTT_ARBEIDSFORHOLD", "-" ] + }, + "behandlingVersjon" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + }, + "ManglendeOpplysningerVurderingDto" : { + "required" : [ "arbeidsgiverIdent", "behandlingUuid", "behandlingVersjon" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "vurdering" : { + "type" : "string", + "enum" : [ "KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_INNTEKTSMELDING", "FORTSETT_UTEN_INNTEKTSMELDING", "MELDING_TIL_ARBEIDSGIVER_NAV_NO", "KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_ARBEIDSFORHOLD", "IKKE_OPPRETT_BASERT_PÅ_INNTEKTSMELDING", "OPPRETT_BASERT_PÅ_INNTEKTSMELDING", "MANUELT_OPPRETTET_AV_SAKSBEHANDLER", "FJERN_FRA_BEHANDLINGEN", "SLÅTT_SAMMEN_MED_ANNET", "BRUK_MED_OVERSTYRT_PERIODE", "INNTEKT_IKKE_MED_I_BG", "BRUK", "NYTT_ARBEIDSFORHOLD", "-" ] + }, + "begrunnelse" : { + "maxLength" : 100000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "arbeidsgiverIdent" : { + "pattern" : "^\\d{9}$|^\\d{13}$", + "type" : "string" + }, + "internArbeidsforholdRef" : { + "maxLength" : 100, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "behandlingVersjon" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + }, + "BehandlingIdVersjonDto" : { + "required" : [ "behandlingUuid", "behandlingVersjon" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "behandlingVersjon" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + }, + "GraderingPeriodeDto" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "arbeidsprosent" : { + "type" : "number" + } + } + }, + "InntektsmeldingerDto" : { + "type" : "object", + "properties" : { + "inntektsmeldinger" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InntektsmeldingDto" + } + } + } + }, + "UtsettelsePeriodeDto" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "utsettelseArsak" : { + "type" : "string", + "enum" : [ "ARBEID", "LOVBESTEMT_FERIE", "SYKDOM", "INSTITUSJONSOPPHOLD_SØKER", "INSTITUSJONSOPPHOLD_BARNET", "HV_OVELSE", "NAV_TILTAK", "FRI", "-" ] + } + } + }, + "ArbeidsgiverOpplysningerDto" : { + "type" : "object", + "properties" : { + "referanse" : { + "type" : "string" + }, + "identifikator" : { + "type" : "string" + }, + "navn" : { + "type" : "string" + }, + "fødselsdato" : { + "type" : "string", + "format" : "date" + }, + "erPrivatPerson" : { + "type" : "boolean" + } + } + }, + "ArbeidsgiverOversiktDto" : { + "type" : "object", + "properties" : { + "arbeidsgivere" : { + "type" : "object", + "additionalProperties" : { + "$ref" : "#/components/schemas/ArbeidsgiverOpplysningerDto" + } + } + } + }, + "IAYYtelseDto" : { + "type" : "object", + "properties" : { + "relatertTilgrensendeYtelserForSoker" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/RelaterteYtelserDto" + } + }, + "relatertTilgrensendeYtelserForAnnenForelder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/RelaterteYtelserDto" + } + }, + "innvilgetRelatertTilgrensendeYtelserForAnnenForelder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/RelaterteYtelserDto" + } + } + } + }, + "RelaterteYtelserDto" : { + "type" : "object", + "properties" : { + "relatertYtelseNavn" : { + "type" : "string" + }, + "tilgrensendeYtelserListe" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/TilgrensendeYtelserDto" + } + } + } + }, + "TilgrensendeYtelserDto" : { + "type" : "object", + "properties" : { + "periodeFraDato" : { + "type" : "string", + "format" : "date" + }, + "periodeTilDato" : { + "type" : "string", + "format" : "date" + }, + "statusNavn" : { + "type" : "string" + }, + "saksNummer" : { + "type" : "string" + } + } + }, + "ATogFLISammeOrganisasjonDto" : { + "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "inntektskategori", "kilde" ], + "type" : "object", + "properties" : { + "andelsnr" : { + "maximum" : 1000, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "arbeidsforhold" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" + }, + "inntektskategori" : { + "type" : "string", + "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] + }, + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + }, + "kilde" : { + "type" : "string", + "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] + }, + "lagtTilAvSaksbehandler" : { + "type" : "boolean" + }, + "fastsattAvSaksbehandler" : { + "type" : "boolean" + }, + "andelIArbeid" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "type" : "number" + } + }, + "inntektPrMnd" : { + "type" : "number" + } + } + }, + "AktivitetTomDatoMappingDto" : { + "required" : [ "aktiviteter", "tom" ], + "type" : "object", + "properties" : { + "tom" : { + "type" : "string", + "format" : "date" + }, + "aktiviteter" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BeregningAktivitetDto" + } + } + } + }, + "AndelForFaktaOmBeregningDto" : { + "type" : "object", + "properties" : { + "belopReadOnly" : { + "type" : "number" + }, + "fastsattBelop" : { + "type" : "number" + }, + "inntektskategori" : { + "type" : "string", + "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] + }, + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + }, + "refusjonskrav" : { + "type" : "number" + }, + "arbeidsforhold" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" + }, + "andelsnr" : { + "maximum" : 1000, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "skalKunneEndreAktivitet" : { + "type" : "boolean" + }, + "lagtTilAvSaksbehandler" : { + "type" : "boolean" + } + } + }, + "AndelMedBeløpDto" : { + "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "inntektskategori", "kilde" ], + "type" : "object", + "properties" : { + "andelsnr" : { + "maximum" : 1000, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "arbeidsforhold" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" + }, + "inntektskategori" : { + "type" : "string", + "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] + }, + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + }, + "kilde" : { + "type" : "string", + "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] + }, + "lagtTilAvSaksbehandler" : { + "type" : "boolean" + }, + "fastsattAvSaksbehandler" : { + "type" : "boolean" + }, + "andelIArbeid" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "type" : "number" + } + }, + "fastsattBelopPrMnd" : { + "type" : "number" + } + } + }, + "Arbeidsgiver" : { + "type" : "object", + "properties" : { + "aktørId" : { + "type" : "string" + }, + "indexKey" : { + "type" : "string" + }, + "orgnr" : { + "type" : "string" + }, + "identifikator" : { + "type" : "string" + }, + "erVirksomhet" : { + "type" : "boolean" + } + } + }, + "ArbeidstakerUtenInntektsmeldingAndelDto" : { + "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "inntektskategori", "kilde" ], + "type" : "object", + "properties" : { + "andelsnr" : { + "maximum" : 1000, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "arbeidsforhold" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" + }, + "inntektskategori" : { + "type" : "string", + "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] + }, + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + }, + "kilde" : { + "type" : "string", + "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] + }, + "lagtTilAvSaksbehandler" : { + "type" : "boolean" + }, + "fastsattAvSaksbehandler" : { + "type" : "boolean" + }, + "andelIArbeid" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "type" : "number" + } + }, + "mottarYtelse" : { + "type" : "boolean" + }, + "inntektPrMnd" : { + "type" : "number" + } + } + }, + "AvklarAktiviteterDto" : { + "required" : [ "skjæringstidspunkt" ], + "type" : "object", + "properties" : { + "aktiviteterTomDatoMapping" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AktivitetTomDatoMappingDto" + } + }, + "skjæringstidspunkt" : { + "type" : "string", + "format" : "date" + } + } + }, + "AvklaringsbehovDto" : { + "required" : [ "definisjon", "erTrukket", "kanLoses", "status" ], + "type" : "object", + "properties" : { + "definisjon" : { + "type" : "string", + "enum" : [ "FASTSETT_BG_AT_FL", "VURDER_VARIG_ENDRT_NYOPPSTR_NAERNG_SN", "VURDER_VARIG_ENDRT_ARB_SITSJN_MDL_INAKTV", "FORDEL_BG", "FASTSETT_BG_TB_ARB", "VURDER_NYTT_INNTKTSFRHLD", "VURDER_REPRSNTR_STORTNGT", "FASTSETT_BG_SN_NY_I_ARB_LIVT", "AVKLAR_AKTIVITETER", "VURDER_FAKTA_ATFL_SN", "VURDER_REFUSJONSKRAV", "OVST_BEREGNINGSAKTIVITETER", "OVST_INNTEKT", "AUTO_VENT_PAA_INNTKT_RAP_FRST", "AUTO_VENT_PAA_SISTE_AAP_DP_MELDKRT", "AUTO_VENT_FRISINN", "INGEN_AKTIVITETER" ] + }, + "status" : { + "type" : "string", + "enum" : [ "OPPR", "UTFO", "AVBR" ] + }, + "kanLoses" : { + "type" : "boolean" + }, + "erTrukket" : { + "type" : "boolean" + }, + "begrunnelse" : { + "maxLength" : 5000, + "minLength" : 0, + "type" : "string" + }, + "vurdertAv" : { + "maxLength" : 20, + "minLength" : 0, + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}§]+$", + "type" : "string" + }, + "vurdertTidspunkt" : { + "type" : "string", + "format" : "date-time" + } + } + }, + "AvslagsårsakPrPeriodeDto" : { + "required" : [ "avslagsårsak", "fom", "tom" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "avslagsårsak" : { + "type" : "string", + "enum" : [ "FOR_LAVT_BG", "INGEN_FRILANS_I_PERIODE_UTEN_YTELSE", "AVKORTET_GRUNNET_LØPENDE_INNTEKT", "AVKORTET_GRUNNET_ANNEN_INNTEKT" ] + } + } + }, + "BeregningAktivitetDto" : { + "required" : [ "arbeidsforholdType", "fom", "tom" ], + "type" : "object", + "properties" : { + "arbeidsgiverIdent" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "eksternArbeidsforholdId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "arbeidsforholdId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "arbeidsforholdType" : { + "type" : "string", + "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "SYKEPENGER_AV_DAGPENGER", "PLEIEPENGER_AV_DAGPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] + }, + "skalBrukes" : { + "type" : "boolean" + } + } + }, + "BeregningsgrunnlagArbeidsforholdDto" : { + "type" : "object", + "properties" : { + "arbeidsgiverIdent" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "startdato" : { + "type" : "string", + "format" : "date" + }, + "opphoersdato" : { + "type" : "string", + "format" : "date" + }, + "arbeidsforholdId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "eksternArbeidsforholdId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "arbeidsforholdType" : { + "type" : "string", + "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "SYKEPENGER_AV_DAGPENGER", "PLEIEPENGER_AV_DAGPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] + }, + "refusjonPrAar" : { + "type" : "number" + }, + "belopFraInntektsmeldingPrMnd" : { + "type" : "number" + }, + "organisasjonstype" : { + "type" : "string", + "enum" : [ "JURIDISK_ENHET", "VIRKSOMHET", "KUNSTIG", "-" ] + }, + "naturalytelseBortfaltPrÅr" : { + "type" : "number" + }, + "naturalytelseTilkommetPrÅr" : { + "type" : "number" + } + } + }, + "BeregningsgrunnlagDto" : { + "required" : [ "avklaringsbehov", "erOverstyrtInntekt", "sammenligningsgrunnlag", "skjaeringstidspunktBeregning", "skjæringstidspunkt" ], + "type" : "object", + "properties" : { + "avklaringsbehov" : { + "maxItems" : 10, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AvklaringsbehovDto" + } + }, + "skjaeringstidspunktBeregning" : { + "type" : "string", + "format" : "date" + }, + "skjæringstidspunkt" : { + "type" : "string", + "format" : "date" + }, + "aktivitetStatus" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + } + }, + "beregningsgrunnlagPeriode" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagPeriodeDto" + } + }, + "sammenligningsgrunnlag" : { + "$ref" : "#/components/schemas/SammenligningsgrunnlagDto" + }, + "sammenligningsgrunnlagPrStatus" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SammenligningsgrunnlagDto" + } + }, + "halvG" : { + "type" : "number" + }, + "grunnbeløp" : { + "type" : "number" + }, + "faktaOmBeregning" : { + "$ref" : "#/components/schemas/FaktaOmBeregningDto" + }, + "andelerMedGraderingUtenBG" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" + } + }, + "hjemmel" : { + "type" : "string", + "enum" : [ "F_9_9", "F_9_8_8_28", "F_9_9_8_28_8_30", "F_9_9_8_35", "F_9_9_8_38", "F_9_9_8_40", "F_9_9_8_41", "F_9_9_8_42", "F_9_9_8_43", "F_9_9_8_47", "F_9_9_8_49", "F_14_7", "F_14_7_8_30", "F_14_7_8_28_8_30", "F_14_7_8_35", "F_14_7_8_38", "F_14_7_8_40", "F_14_7_8_41", "F_14_7_8_42", "F_14_7_8_43", "F_14_7_8_47", "F_14_7_8_49", "F_22_13_6", "COV_1_5", "KORONALOVEN_3", "-" ] + }, + "faktaOmFordeling" : { + "$ref" : "#/components/schemas/FordelingDto" + }, + "dekningsgrad" : { + "maximum" : 100, + "minimum" : 0, + "type" : "integer", + "format" : "int32" + }, + "ytelsesspesifiktGrunnlag" : { + "$ref" : "#/components/schemas/YtelsespesifiktGrunnlagDto" + }, + "refusjonTilVurdering" : { + "$ref" : "#/components/schemas/RefusjonTilVurderingDto" + }, + "erOverstyrtInntekt" : { + "type" : "boolean" + }, + "vilkårsperiodeFom" : { + "type" : "string", + "format" : "date" + }, + "inntektsgrunnlag" : { + "$ref" : "#/components/schemas/InntektsgrunnlagDto" + }, + "forlengelseperioder" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Periode" + } + } + } + }, + "BeregningsgrunnlagPeriodeDto" : { + "type" : "object", + "properties" : { + "beregningsgrunnlagPeriodeFom" : { + "type" : "string", + "format" : "date" + }, + "beregningsgrunnlagPeriodeTom" : { + "type" : "string", + "format" : "date" + }, + "beregnetPrAar" : { + "type" : "number" + }, + "bruttoPrAar" : { + "type" : "number" + }, + "bruttoInkludertBortfaltNaturalytelsePrAar" : { + "type" : "number" + }, + "avkortetPrAar" : { + "type" : "number" + }, + "redusertPrAar" : { + "type" : "number" + }, + "periodeAarsaker" : { + "maxItems" : 2147483647, + "minItems" : 0, + "uniqueItems" : true, + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "NATURALYTELSE_BORTFALT", "ARBEIDSFORHOLD_AVSLUTTET", "NATURALYTELSE_TILKOMMER", "ENDRING_I_REFUSJONSKRAV", "REFUSJON_OPPHØRER", "GRADERING", "GRADERING_OPPHØRER", "ENDRING_I_AKTIVITETER_SØKT_FOR", "TILKOMMET_INNTEKT", "TILKOMMET_INNTEKT_MANUELT", "TILKOMMET_INNTEKT_AVSLUTTET", "REFUSJON_AVSLÅTT", "REPRESENTERER_STORTINGET", "REPRESENTERER_STORTINGET_AVSLUTTET", "-" ] + } + }, + "dagsats" : { + "maximum" : 10000000.00, + "exclusiveMaximum" : false, + "minimum" : 0.00, + "exclusiveMinimum" : false, + "type" : "integer", + "format" : "int64" + }, + "beregningsgrunnlagPrStatusOgAndel" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" + } + } + } + }, + "BeregningsgrunnlagPrStatusOgAndelATDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" + }, { + "type" : "object", + "properties" : { + "bortfaltNaturalytelse" : { + "type" : "number" + } + } + } ] + }, + "BeregningsgrunnlagPrStatusOgAndelDto" : { + "required" : [ "dtoType" ], + "type" : "object", + "properties" : { + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + }, + "beregningsperiodeFom" : { + "type" : "string", + "format" : "date" + }, + "beregningsperiodeTom" : { + "type" : "string", + "format" : "date" + }, + "beregnetPrAar" : { + "type" : "number" + }, + "overstyrtPrAar" : { + "type" : "number" + }, + "bruttoPrAar" : { + "type" : "number" + }, + "avkortetPrAar" : { + "type" : "number" + }, + "redusertPrAar" : { + "type" : "number" + }, + "erTidsbegrensetArbeidsforhold" : { + "type" : "boolean" + }, + "erNyIArbeidslivet" : { + "type" : "boolean" + }, + "lonnsendringIBeregningsperioden" : { + "type" : "boolean" + }, + "andelsnr" : { + "maximum" : 1000, + "minimum" : 1, + "type" : "integer", + "format" : "int64" + }, + "besteberegningPrAar" : { + "type" : "number" + }, + "inntektskategori" : { + "type" : "string", + "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] + }, + "arbeidsforhold" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" + }, + "fastsattAvSaksbehandler" : { + "type" : "boolean" + }, + "lagtTilAvSaksbehandler" : { + "type" : "boolean" + }, + "belopPrMndEtterAOrdningen" : { + "type" : "number" + }, + "belopPrAarEtterAOrdningen" : { + "type" : "number" + }, + "dagsats" : { + "maximum" : 1000000, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "originalDagsatsFraTilstøtendeYtelse" : { + "maximum" : 1000000, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "fordeltPrAar" : { + "type" : "number" + }, + "erTilkommetAndel" : { + "type" : "boolean" + }, + "skalFastsetteGrunnlag" : { + "type" : "boolean" + }, + "dtoType" : { + "type" : "string" + } + }, + "discriminator" : { + "propertyName" : "dtoType" + } + }, + "BeregningsgrunnlagPrStatusOgAndelDtoFelles" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" + } ] + }, + "BeregningsgrunnlagPrStatusOgAndelFLDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" + }, { + "type" : "object", + "properties" : { + "erNyoppstartet" : { + "type" : "boolean" + } + } + } ] + }, + "BeregningsgrunnlagPrStatusOgAndelSNDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" + }, { + "type" : "object", + "properties" : { + "pgiSnitt" : { + "type" : "number" + }, + "pgiVerdier" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PgiDto" + } + }, + "næringer" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/EgenNæringDto" + } + } + } + } ] + }, + "BeregningsgrunnlagPrStatusOgAndelYtelseDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" + }, { + "type" : "object", + "properties" : { + "belopFraMeldekortPrMnd" : { + "type" : "number" + }, + "belopFraMeldekortPrAar" : { + "type" : "number" + }, + "oppjustertGrunnlag" : { + "type" : "number" + } + } + } ] + }, + "BesteberegningInntektDto" : { + "required" : [ "inntekt", "opptjeningAktivitetType" ], + "type" : "object", + "properties" : { + "arbeidsgiverId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "arbeidsgiverIdent" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "arbeidsforholdId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "opptjeningAktivitetType" : { + "type" : "string", + "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "SYKEPENGER_AV_DAGPENGER", "PLEIEPENGER_AV_DAGPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] + }, + "inntekt" : { + "type" : "number" + } + } + }, + "BesteberegningMånedGrunnlagDto" : { + "required" : [ "fom", "tom" ], + "type" : "object", + "properties" : { + "inntekter" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BesteberegningInntektDto" + } + }, + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + } + } + }, + "BesteberegninggrunnlagDto" : { + "type" : "object", + "properties" : { + "besteMåneder" : { + "maxItems" : 6, + "minItems" : 6, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BesteberegningMånedGrunnlagDto" + } + }, + "avvik" : { + "type" : "number" + } + } + }, + "EgenNæringDto" : { + "type" : "object", + "properties" : { + "utenlandskvirksomhetsnavn" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "orgnr" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "erVarigEndret" : { + "type" : "boolean" + }, + "erNyoppstartet" : { + "type" : "boolean" + }, + "virksomhetType" : { + "type" : "string", + "enum" : [ "DAGMAMMA", "FISKE", "FRILANSER", "JORDBRUK_SKOGBRUK", "ANNEN", "-" ] + }, + "begrunnelse" : { + "type" : "string" + }, + "endringsdato" : { + "type" : "string", + "format" : "date" + }, + "oppstartsdato" : { + "type" : "string", + "format" : "date" + }, + "opphørsdato" : { + "type" : "string", + "format" : "date" + }, + "regnskapsførerNavn" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "regnskapsførerTlf" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "kanRegnskapsførerKontaktes" : { + "type" : "boolean" + }, + "erNyIArbeidslivet" : { + "type" : "boolean" + }, + "oppgittInntekt" : { + "type" : "number" + } + } + }, + "FaktaOmBeregningAndelDto" : { + "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "inntektskategori", "kilde" ], + "type" : "object", + "properties" : { + "andelsnr" : { + "maximum" : 1000, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "arbeidsforhold" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" + }, + "inntektskategori" : { + "type" : "string", + "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] + }, + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + }, + "kilde" : { + "type" : "string", + "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] + }, + "lagtTilAvSaksbehandler" : { + "type" : "boolean" + }, + "fastsattAvSaksbehandler" : { + "type" : "boolean" + }, + "andelIArbeid" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "type" : "number" + } + } + } + }, + "FaktaOmBeregningDto" : { + "type" : "object", + "properties" : { + "saksopplysninger" : { + "$ref" : "#/components/schemas/Saksopplysninger" + }, + "kortvarigeArbeidsforhold" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/KortvarigeArbeidsforholdDto" + } + }, + "frilansAndel" : { + "$ref" : "#/components/schemas/FaktaOmBeregningAndelDto" + }, + "kunYtelse" : { + "$ref" : "#/components/schemas/KunYtelseDto" + }, + "faktaOmBeregningTilfeller" : { + "maxItems" : 15, + "minItems" : 0, + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "VURDER_TIDSBEGRENSET_ARBEIDSFORHOLD", "VURDER_SN_NY_I_ARBEIDSLIVET", "VURDER_NYOPPSTARTET_FL", "FASTSETT_MAANEDSINNTEKT_FL", "FASTSETT_BG_ARBEIDSTAKER_UTEN_INNTEKTSMELDING", "VURDER_LØNNSENDRING", "FASTSETT_MÅNEDSLØNN_ARBEIDSTAKER_UTEN_INNTEKTSMELDING", "VURDER_AT_OG_FL_I_SAMME_ORGANISASJON", "FASTSETT_BESTEBEREGNING_FØDENDE_KVINNE", "VURDER_ETTERLØNN_SLUTTPAKKE", "FASTSETT_ETTERLØNN_SLUTTPAKKE", "VURDER_MOTTAR_YTELSE", "VURDER_BESTEBEREGNING", "VURDER_MILITÆR_SIVILTJENESTE", "VURDER_REFUSJONSKRAV_SOM_HAR_KOMMET_FOR_SENT", "FASTSETT_BG_KUN_YTELSE", "TILSTØTENDE_YTELSE", "FASTSETT_ENDRET_BEREGNINGSGRUNNLAG", "-" ] + } + }, + "arbeidstakerOgFrilanserISammeOrganisasjonListe" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ATogFLISammeOrganisasjonDto" + } + }, + "arbeidsforholdMedLønnsendringUtenIM" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FaktaOmBeregningAndelDto" + } + }, + "vurderMottarYtelse" : { + "$ref" : "#/components/schemas/VurderMottarYtelseDto" + }, + "avklarAktiviteter" : { + "$ref" : "#/components/schemas/AvklarAktiviteterDto" + }, + "vurderBesteberegning" : { + "$ref" : "#/components/schemas/VurderBesteberegningDto" + }, + "andelerForFaktaOmBeregning" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AndelForFaktaOmBeregningDto" + } + }, + "vurderMilitaer" : { + "$ref" : "#/components/schemas/VurderMilitærDto" + }, + "refusjonskravSomKommerForSentListe" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/RefusjonskravSomKommerForSentDto" + } + } + } + }, + "FordelBeregningsgrunnlagAndelDto" : { + "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "arbeidsforholdType", "inntektskategori", "kilde" ], + "type" : "object", + "properties" : { + "andelsnr" : { + "maximum" : 1000, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "arbeidsforhold" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" + }, + "inntektskategori" : { + "type" : "string", + "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] + }, + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + }, + "kilde" : { + "type" : "string", + "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] + }, + "lagtTilAvSaksbehandler" : { + "type" : "boolean" + }, + "fastsattAvSaksbehandler" : { + "type" : "boolean" + }, + "andelIArbeid" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "type" : "number" + } + }, + "fordelingForrigeBehandlingPrAar" : { + "type" : "number" + }, + "refusjonskravPrAar" : { + "type" : "number" + }, + "fordeltPrAar" : { + "type" : "number" + }, + "belopFraInntektsmeldingPrAar" : { + "type" : "number" + }, + "refusjonskravFraInntektsmeldingPrAar" : { + "type" : "number" + }, + "nyttArbeidsforhold" : { + "type" : "boolean" + }, + "arbeidsforholdType" : { + "type" : "string", + "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "SYKEPENGER_AV_DAGPENGER", "PLEIEPENGER_AV_DAGPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] + } + } + }, + "FordelBeregningsgrunnlagArbeidsforholdDto" : { + "required" : [ "perioderMedGraderingEllerRefusjon" ], + "type" : "object", + "properties" : { + "arbeidsgiverIdent" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "startdato" : { + "type" : "string", + "format" : "date" + }, + "opphoersdato" : { + "type" : "string", + "format" : "date" + }, + "arbeidsforholdId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "eksternArbeidsforholdId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "arbeidsforholdType" : { + "type" : "string", + "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "SYKEPENGER_AV_DAGPENGER", "PLEIEPENGER_AV_DAGPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] + }, + "refusjonPrAar" : { + "type" : "number" + }, + "belopFraInntektsmeldingPrMnd" : { + "type" : "number" + }, + "organisasjonstype" : { + "type" : "string", + "enum" : [ "JURIDISK_ENHET", "VIRKSOMHET", "KUNSTIG", "-" ] + }, + "naturalytelseBortfaltPrÅr" : { + "type" : "number" + }, + "naturalytelseTilkommetPrÅr" : { + "type" : "number" + }, + "perioderMedGraderingEllerRefusjon" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/NyPeriodeDto" + } + }, + "permisjon" : { + "$ref" : "#/components/schemas/PermisjonDto" + } + } + }, + "FordelBeregningsgrunnlagDto" : { + "required" : [ "arbeidsforholdTilFordeling", "fordelBeregningsgrunnlagPerioder" ], + "type" : "object", + "properties" : { + "fordelBeregningsgrunnlagPerioder" : { + "maxItems" : 5000, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FordelBeregningsgrunnlagPeriodeDto" + } + }, + "arbeidsforholdTilFordeling" : { + "maxItems" : 500, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FordelBeregningsgrunnlagArbeidsforholdDto" + } + } + } + }, + "FordelBeregningsgrunnlagPeriodeDto" : { + "required" : [ "fom", "fordelBeregningsgrunnlagAndeler" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "fordelBeregningsgrunnlagAndeler" : { + "maxItems" : 100, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FordelBeregningsgrunnlagAndelDto" + } + }, + "harPeriodeAarsakGraderingEllerRefusjon" : { + "type" : "boolean" + }, + "skalRedigereInntekt" : { + "type" : "boolean" + }, + "skalPreutfyllesMedBeregningsgrunnlag" : { + "type" : "boolean" + }, + "skalKunneEndreRefusjon" : { + "type" : "boolean" + } + } + }, + "FordelingDto" : { + "type" : "object", + "properties" : { + "vurderNyttInntektsforholdDto" : { + "$ref" : "#/components/schemas/VurderNyttInntektsforholdDto" + }, + "vurderRepresentererStortinget" : { + "$ref" : "#/components/schemas/VurderRepresentererStortingetDto" + }, + "fordelBeregningsgrunnlag" : { + "$ref" : "#/components/schemas/FordelBeregningsgrunnlagDto" + } + } + }, + "ForeldrepengerGrunnlagDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/YtelsespesifiktGrunnlagDto" + }, { + "type" : "object", + "properties" : { + "besteberegninggrunnlag" : { + "$ref" : "#/components/schemas/BesteberegninggrunnlagDto" + } + } + } ] + }, + "FrisinnAndelDto" : { + "required" : [ "statusSøktFor" ], + "type" : "object", + "properties" : { + "oppgittInntekt" : { + "type" : "number" + }, + "statusSøktFor" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + } + } + }, + "FrisinnGrunnlagDto" : { + "required" : [ "avslagsårsakPrPeriode", "frisinnPerioder", "perioderSøktFor" ], + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/YtelsespesifiktGrunnlagDto" + }, { + "type" : "object", + "properties" : { + "opplysningerFL" : { + "$ref" : "#/components/schemas/SøknadsopplysningerDto" + }, + "opplysningerSN" : { + "$ref" : "#/components/schemas/SøknadsopplysningerDto" + }, + "perioderSøktFor" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OpplystPeriodeDto" + } + }, + "frisinnPerioder" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FrisinnPeriodeDto" + } + }, + "avslagsårsakPrPeriode" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AvslagsårsakPrPeriodeDto" + } + } + } + } ] + }, + "FrisinnPeriodeDto" : { + "required" : [ "fom", "frisinnAndeler", "tom" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "oppgittArbeidsinntekt" : { + "type" : "number" + }, + "frisinnAndeler" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FrisinnAndelDto" + } + } + } + }, + "InntektsforholdDto" : { + "required" : [ "aktivitetStatus", "periode" ], + "type" : "object", + "properties" : { + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + }, + "arbeidsgiverId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "arbeidsforholdId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "eksternArbeidsforholdId" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "periode" : { + "$ref" : "#/components/schemas/Periode" + }, + "inntektFraInntektsmeldingPrÅr" : { + "maximum" : 178956970, + "minimum" : 0, + "type" : "integer", + "format" : "int32" + }, + "bruttoInntektPrÅr" : { + "maximum" : 178956970, + "minimum" : 0, + "type" : "integer", + "format" : "int32" + }, + "skalRedusereUtbetaling" : { + "type" : "boolean" + } + } + }, + "InntektsgrunnlagDto" : { + "required" : [ "beregningsgrunnlagInntekter", "måneder", "pgiGrunnlag", "sammenligningsgrunnlagInntekter" ], + "type" : "object", + "properties" : { + "måneder" : { + "maxItems" : 12, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InntektsgrunnlagMånedDto" + } + }, + "pgiGrunnlag" : { + "maxItems" : 3, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PGIPrÅrDto" + } + }, + "sammenligningsgrunnlagInntekter" : { + "maxItems" : 12, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InntektsgrunnlagMånedDto" + } + }, + "beregningsgrunnlagInntekter" : { + "maxItems" : 3, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InntektsgrunnlagMånedDto" + } + } + } + }, + "InntektsgrunnlagInntektDto" : { + "required" : [ "inntektAktivitetType" ], + "type" : "object", + "properties" : { + "inntektAktivitetType" : { + "type" : "string", + "enum" : [ "ARBEIDSTAKERINNTEKT", "FRILANSINNTEKT", "YTELSEINNTEKT", "-" ] + }, + "beløp" : { + "type" : "number" + }, + "arbeidsgiverIdent" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + } + } + }, + "InntektsgrunnlagMånedDto" : { + "required" : [ "fom", "tom" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "inntekter" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InntektsgrunnlagInntektDto" + } + } + } + }, + "KortvarigeArbeidsforholdDto" : { + "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "inntektskategori", "kilde" ], + "type" : "object", + "properties" : { + "andelsnr" : { + "maximum" : 1000, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "arbeidsforhold" : { + "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" + }, + "inntektskategori" : { + "type" : "string", + "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] + }, + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + }, + "kilde" : { + "type" : "string", + "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] + }, + "lagtTilAvSaksbehandler" : { + "type" : "boolean" + }, + "fastsattAvSaksbehandler" : { + "type" : "boolean" + }, + "andelIArbeid" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "type" : "number" + } + }, + "erTidsbegrensetArbeidsforhold" : { + "type" : "boolean" + } + } + }, + "KunYtelseDto" : { + "type" : "object", + "properties" : { + "andeler" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AndelMedBeløpDto" + } + }, + "fodendeKvinneMedDP" : { + "type" : "boolean" + }, + "erBesteberegning" : { + "type" : "boolean" + } + } + }, + "LønnsendringSaksopplysningDto" : { + "required" : [ "arbeidsforhold", "lønnsendringscenario", "sisteLønnsendringsdato" ], + "type" : "object", + "properties" : { + "sisteLønnsendringsdato" : { + "type" : "string", + "format" : "date" + }, + "lønnsendringscenario" : { + "type" : "string", + "enum" : [ "MANUELT_BEHANDLET", "DELVIS_MÅNEDSINNTEKT_SISTE_MND", "FULL_MÅNEDSINNTEKT_EN_MND", "FULL_MÅNEDSINNTEKT_TO_MND" ] + }, + "arbeidsforhold" : { + "$ref" : "#/components/schemas/ArbeidsforholdDto" + } + } + }, + "NyPeriodeDto" : { + "type" : "object", + "properties" : { + "erRefusjon" : { + "type" : "boolean" + }, + "erGradering" : { + "type" : "boolean" + }, + "erSøktYtelse" : { + "type" : "boolean" + }, + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + } + } + }, + "OmsorgspengeGrunnlagDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/YtelsespesifiktGrunnlagDto" + }, { + "type" : "object", + "properties" : { + "skalAvviksvurdere" : { + "type" : "boolean" + } + } + } ] + }, + "OpplystPeriodeDto" : { + "required" : [ "fom", "statusSøktFor", "tom" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "statusSøktFor" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + } + } + }, + "PGIGrunnlagDto" : { + "required" : [ "pgiType" ], + "type" : "object", + "properties" : { + "pgiType" : { + "type" : "string", + "enum" : [ "LØNN", "NÆRING", "-" ] + }, + "beløp" : { + "type" : "number" + } + } + }, + "PGIPrÅrDto" : { + "required" : [ "år" ], + "type" : "object", + "properties" : { + "år" : { + "maximum" : 3000, + "minimum" : 1900, + "type" : "integer", + "format" : "int32" + }, + "inntekter" : { + "maxItems" : 3, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PGIGrunnlagDto" + } + } + } + }, + "Periode" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + } + } + }, + "PermisjonDto" : { + "required" : [ "permisjonFom", "permisjonTom" ], + "type" : "object", + "properties" : { + "permisjonFom" : { + "type" : "string", + "format" : "date" + }, + "permisjonTom" : { + "type" : "string", + "format" : "date" + } + } + }, + "PgiDto" : { + "type" : "object", + "properties" : { + "beløp" : { + "type" : "number" + }, + "årstall" : { + "maximum" : 3000, + "minimum" : 0, + "type" : "integer", + "format" : "int32" + } + } + }, + "RefusjonAndelTilVurderingDto" : { + "required" : [ "aktivitetStatus" ], + "type" : "object", + "properties" : { + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] + }, + "tidligereUtbetalinger" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/TidligereUtbetalingDto" + } + }, + "nyttRefusjonskravFom" : { + "type" : "string", + "format" : "date" + }, + "fastsattNyttRefusjonskravFom" : { + "type" : "string", + "format" : "date" + }, + "tidligsteMuligeRefusjonsdato" : { + "type" : "string", + "format" : "date" + }, + "arbeidsgiver" : { + "$ref" : "#/components/schemas/Arbeidsgiver" + }, + "internArbeidsforholdRef" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "eksternArbeidsforholdRef" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "skalKunneFastsetteDelvisRefusjon" : { + "type" : "boolean" + }, + "fastsattDelvisRefusjonPrMnd" : { + "type" : "number" + }, + "maksTillattDelvisRefusjonPrMnd" : { + "type" : "number" + } + } + }, + "RefusjonTilVurderingDto" : { + "required" : [ "andeler" ], + "type" : "object", + "properties" : { + "andeler" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/RefusjonAndelTilVurderingDto" + } + } + } + }, + "RefusjonskravSomKommerForSentDto" : { + "required" : [ "arbeidsgiverIdent" ], + "type" : "object", + "properties" : { + "arbeidsgiverIdent" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "erRefusjonskravGyldig" : { + "type" : "boolean" + } + } + }, + "Saksopplysninger" : { + "type" : "object", + "properties" : { + "arbeidsforholdMedLønnsendring" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ArbeidsforholdDto" + } + }, + "lønnsendringSaksopplysning" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/LønnsendringSaksopplysningDto" + } + }, + "kortvarigeArbeidsforhold" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ArbeidsforholdDto" + } + } + } + }, + "SammenligningsgrunnlagDto" : { + "type" : "object", + "properties" : { + "sammenligningsgrunnlagFom" : { + "type" : "string", + "format" : "date" + }, + "sammenligningsgrunnlagTom" : { + "type" : "string", + "format" : "date" + }, + "rapportertPrAar" : { + "type" : "number" + }, + "avvikPromille" : { + "maximum" : 10000000.00, + "exclusiveMaximum" : false, + "minimum" : 0.00, + "exclusiveMinimum" : false, + "type" : "number" + }, + "avvikProsent" : { + "maximum" : 10000000.00, + "exclusiveMaximum" : false, + "minimum" : 0.00, + "exclusiveMinimum" : false, + "type" : "number" + }, + "sammenligningsgrunnlagType" : { + "type" : "string", + "enum" : [ "SAMMENLIGNING_AT", "SAMMENLIGNING_FL", "SAMMENLIGNING_AT_FL", "SAMMENLIGNING_SN", "SAMMENLIGNING_ATFL_SN", "SAMMENLIGNING_MIDL_INAKTIV" ] + }, + "differanseBeregnet" : { + "type" : "number" + } + } + }, + "SvangerskapspengerGrunnlagDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/YtelsespesifiktGrunnlagDto" + } ] + }, + "SøknadsopplysningerDto" : { + "type" : "object", + "properties" : { + "oppgittÅrsinntekt" : { + "type" : "number" + }, + "oppgittInntekt" : { + "type" : "number" + }, + "erNyoppstartet" : { + "type" : "boolean" + } + } + }, + "TidligereUtbetalingDto" : { + "required" : [ "erTildeltRefusjon", "fom" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "erTildeltRefusjon" : { + "type" : "boolean" + } + } + }, + "VurderBesteberegningDto" : { + "type" : "object", + "properties" : { + "skalHaBesteberegning" : { + "type" : "boolean" + } + } + }, + "VurderInntektsforholdPeriodeDto" : { + "required" : [ "fom", "inntektsforholdListe", "tom" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "inntektsforholdListe" : { + "maxItems" : 50, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InntektsforholdDto" + } + } + } + }, + "VurderMilitærDto" : { + "type" : "object", + "properties" : { + "harMilitaer" : { + "type" : "boolean" + } + } + }, + "VurderMottarYtelseDto" : { + "type" : "object", + "properties" : { + "erFrilans" : { + "type" : "boolean" + }, + "frilansMottarYtelse" : { + "type" : "boolean" + }, + "frilansInntektPrMnd" : { + "type" : "number" + }, + "arbeidstakerAndelerUtenIM" : { + "maxItems" : 2147483647, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ArbeidstakerUtenInntektsmeldingAndelDto" + } + } + } + }, + "VurderNyttInntektsforholdDto" : { + "required" : [ "harMottattOmsorgsstønadEllerFosterhjemsgodtgjørelse", "vurderInntektsforholdPerioder" ], + "type" : "object", + "properties" : { + "vurderInntektsforholdPerioder" : { + "maxItems" : 50, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/VurderInntektsforholdPeriodeDto" + } + }, + "harMottattOmsorgsstønadEllerFosterhjemsgodtgjørelse" : { + "type" : "boolean" + } + } + }, + "VurderRepresentererStortingetDto" : { + "type" : "object", + "properties" : { + "stortingsperiodeFom" : { + "type" : "string", + "format" : "date" + }, + "stortingsperiodeTom" : { + "type" : "string", + "format" : "date" + }, + "representererStortinget" : { + "type" : "boolean" + } + } + }, + "YtelsespesifiktGrunnlagDto" : { + "required" : [ "ytelsetype" ], + "type" : "object", + "properties" : { + "ytelsetype" : { + "type" : "string" + } + }, + "discriminator" : { + "propertyName" : "ytelsetype" + } + }, + "BeregningsresultatMedUttaksplanDto" : { + "type" : "object", + "properties" : { + "perioder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BeregningsresultatPeriodeDto" + } + } + } + }, + "BeregningsresultatPeriodeAndelDto" : { + "type" : "object", + "properties" : { + "arbeidsgiverReferanse" : { + "type" : "string" + }, + "refusjon" : { + "type" : "integer", + "format" : "int32" + }, + "tilSoker" : { + "type" : "integer", + "format" : "int32" + }, + "uttak" : { + "$ref" : "#/components/schemas/UttakDto" + }, + "utbetalingsgrad" : { + "type" : "number" + }, + "sisteUtbetalingsdato" : { + "type" : "string", + "format" : "date" + }, + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "ARBEIDSAVKLARINGSPENGER", "ARBEIDSTAKER", "DAGPENGER", "FRILANSER", "MILITÆR_ELLER_SIVIL", "SELVSTENDIG_NÆRINGSDRIVENDE", "KOMBINERT_AT_FL", "KOMBINERT_AT_SN", "KOMBINERT_FL_SN", "KOMBINERT_AT_FL_SN", "BRUKERS_ANDEL", "KUN_YTELSE", "TTLSTØTENDE_YTELSE", "VENTELØNN_VARTPENGER", "UDEFINERT" ] + }, + "arbeidsforholdId" : { + "type" : "string" + }, + "eksternArbeidsforholdId" : { + "type" : "string" + }, + "aktørId" : { + "type" : "string" + }, + "arbeidsforholdType" : { + "type" : "string", + "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "FRILOPP", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] + }, + "stillingsprosent" : { + "type" : "number" + } + } + }, + "BeregningsresultatPeriodeDto" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "dagsats" : { + "type" : "integer", + "format" : "int32" + }, + "andeler" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BeregningsresultatPeriodeAndelDto" + } + } + } + }, + "UttakDto" : { + "type" : "object", + "properties" : { + "stonadskontoType" : { + "type" : "string" + }, + "periodeResultatType" : { + "type" : "string" + }, + "gradering" : { + "type" : "boolean" + } + } + }, + "BeregningsresultatEngangsstønadDto" : { + "type" : "object", + "properties" : { + "beregnetTilkjentYtelse" : { + "type" : "integer", + "format" : "int64" + }, + "satsVerdi" : { + "type" : "integer", + "format" : "int64" + }, + "antallBarn" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "FeriepengegrunnlagAndelDto" : { + "required" : [ "aktivitetStatus", "arbeidsforholdId", "arbeidsgiverId", "erBrukerMottaker", "opptjeningsår", "årsbeløp" ], + "type" : "object", + "properties" : { + "aktivitetStatus" : { + "type" : "string", + "enum" : [ "ARBEIDSAVKLARINGSPENGER", "ARBEIDSTAKER", "DAGPENGER", "FRILANSER", "MILITÆR_ELLER_SIVIL", "SELVSTENDIG_NÆRINGSDRIVENDE", "KOMBINERT_AT_FL", "KOMBINERT_AT_SN", "KOMBINERT_FL_SN", "KOMBINERT_AT_FL_SN", "BRUKERS_ANDEL", "KUN_YTELSE", "TTLSTØTENDE_YTELSE", "VENTELØNN_VARTPENGER", "UDEFINERT" ] + }, + "arbeidsgiverId" : { + "type" : "string" + }, + "arbeidsforholdId" : { + "type" : "string" + }, + "opptjeningsår" : { + "type" : "integer", + "format" : "int32" + }, + "årsbeløp" : { + "type" : "number" + }, + "erBrukerMottaker" : { + "type" : "boolean" + } + } + }, + "FeriepengegrunnlagDto" : { + "required" : [ "andeler" ], + "type" : "object", + "properties" : { + "andeler" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FeriepengegrunnlagAndelDto" + } + } + } + }, + "AntallBarn" : { + "type" : "object", + "properties" : { + "kilde" : { + "type" : "string", + "enum" : [ "SAKSBEHANDLER", "SØKNAD", "FOLKEREGISTER" ] + }, + "antall" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "BarnHendelseData" : { + "type" : "object", + "properties" : { + "fødselsdato" : { + "type" : "string", + "format" : "date" + }, + "dødsdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "FødselDto" : { + "type" : "object", + "properties" : { + "søknad" : { + "$ref" : "#/components/schemas/Søknad" + }, + "register" : { + "$ref" : "#/components/schemas/Register" + }, + "gjeldende" : { + "$ref" : "#/components/schemas/Gjeldende" + } + } + }, + "Gjeldende" : { + "type" : "object", + "properties" : { + "termin" : { + "$ref" : "#/components/schemas/Termin" + }, + "utstedtdato" : { + "$ref" : "#/components/schemas/Utstedtdato" + }, + "antallBarn" : { + "$ref" : "#/components/schemas/AntallBarn" + }, + "barn" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/GjeldendeBarn" + } + }, + "fødselDokumetasjonStatus" : { + "type" : "string", + "enum" : [ "DOKUMENTERT", "IKKE_DOKUMENTERT", "IKKE_VURDERT" ] + } + } + }, + "GjeldendeBarn" : { + "type" : "object", + "properties" : { + "kilde" : { + "type" : "string", + "enum" : [ "SAKSBEHANDLER", "SØKNAD", "FOLKEREGISTER" ] + }, + "barn" : { + "$ref" : "#/components/schemas/BarnHendelseData" + }, + "kanOverstyres" : { + "type" : "boolean" + } + } + }, + "Register" : { + "type" : "object", + "properties" : { + "barn" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BarnHendelseData" + } + } + } + }, + "Søknad" : { + "type" : "object", + "properties" : { + "status" : { + "type" : "string", + "enum" : [ "MOTTATT", "BEHANDLET" ] + }, + "mottattTidspunkt" : { + "type" : "string", + "format" : "date-time" + } + } + }, + "Termin" : { + "type" : "object", + "properties" : { + "kilde" : { + "type" : "string", + "enum" : [ "SAKSBEHANDLER", "SØKNAD", "FOLKEREGISTER" ] + }, + "termindato" : { + "type" : "string", + "format" : "date" + } + } + }, + "Utstedtdato" : { + "type" : "object", + "properties" : { + "kilde" : { + "type" : "string", + "enum" : [ "SAKSBEHANDLER", "SØKNAD", "FOLKEREGISTER" ] + }, + "utstedtdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "InnsynDokumentDto" : { + "type" : "object", + "properties" : { + "fikkInnsyn" : { + "type" : "boolean" + }, + "journalpostId" : { + "type" : "string" + }, + "dokumentId" : { + "type" : "string" + } + } + }, + "InnsynVedtaksdokumentasjonDto" : { + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "tittel" : { + "type" : "string" + }, + "opprettetDato" : { + "type" : "string", + "format" : "date" + } + } + }, + "InnsynsbehandlingDto" : { + "type" : "object", + "properties" : { + "innsynMottattDato" : { + "type" : "string", + "format" : "date" + }, + "innsynResultatType" : { + "type" : "string", + "enum" : [ "INNV", "DELV", "AVVIST", "-" ] + }, + "vedtaksdokumentasjon" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InnsynVedtaksdokumentasjonDto" + } + }, + "dokumenter" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/InnsynDokumentDto" + } + } + } + }, + "KlageFormkravResultatDto" : { + "type" : "object", + "properties" : { + "paKlagdBehandlingId" : { + "type" : "integer", + "format" : "int64" + }, + "paKlagdBehandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "paklagdBehandlingType" : { + "type" : "string", + "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] + }, + "begrunnelse" : { + "type" : "string" + }, + "erKlagerPart" : { + "type" : "boolean" + }, + "erKlageKonkret" : { + "type" : "boolean" + }, + "erKlagefirstOverholdt" : { + "type" : "boolean" + }, + "erSignert" : { + "type" : "boolean" + }, + "avvistArsaker" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "KLAGET_FOR_SENT", "KLAGE_UGYLDIG", "IKKE_PAKLAGD_VEDTAK", "KLAGER_IKKE_PART", "IKKE_KONKRET", "IKKE_SIGNERT", "-" ] + } + } + } + }, + "KlageVurderingResultatDto" : { + "type" : "object", + "properties" : { + "klageVurdertAv" : { + "type" : "string" + }, + "klageVurdering" : { + "type" : "string", + "enum" : [ "OPPHEVE_YTELSESVEDTAK", "STADFESTE_YTELSESVEDTAK", "MEDHOLD_I_KLAGE", "AVVIS_KLAGE", "HJEMSENDE_UTEN_Å_OPPHEVE", "-" ] + }, + "begrunnelse" : { + "type" : "string" + }, + "klageMedholdArsak" : { + "type" : "string", + "enum" : [ "NYE_OPPLYSNINGER", "ULIK_REGELVERKSTOLKNING", "ULIK_VURDERING", "PROSESSUELL_FEIL", "-" ] + }, + "klageVurderingOmgjoer" : { + "type" : "string", + "enum" : [ "GUNST_MEDHOLD_I_KLAGE", "DELVIS_MEDHOLD_I_KLAGE", "UGUNST_MEDHOLD_I_KLAGE", "-" ] + }, + "klageHjemmel" : { + "type" : "string", + "enum" : [ "14-02", "14-04", "14-05", "14-06", "14-07", "14-09", "14-10", "14-11", "14-12", "14-13", "14-14", "14-15", "14-16", "14-17", "8-2", "21-3", "22-13", "22-15", "883-5", "883-6", "-" ] + }, + "godkjentAvMedunderskriver" : { + "type" : "boolean" + }, + "fritekstTilBrev" : { + "type" : "string" + } + } + }, + "KlagebehandlingDto" : { + "type" : "object", + "properties" : { + "klageFormkravResultatNFP" : { + "$ref" : "#/components/schemas/KlageFormkravResultatDto" + }, + "klageVurderingResultatNFP" : { + "$ref" : "#/components/schemas/KlageVurderingResultatDto" + }, + "klageFormkravResultatKA" : { + "$ref" : "#/components/schemas/KlageFormkravResultatDto" + }, + "klageVurderingResultatNK" : { + "$ref" : "#/components/schemas/KlageVurderingResultatDto" + }, + "aktuelleHjemler" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "14-02", "14-04", "14-05", "14-06", "14-07", "14-09", "14-10", "14-11", "14-12", "14-13", "14-14", "14-15", "14-16", "14-17", "8-2", "21-3", "22-13", "22-15", "883-5", "883-6", "-" ] + } + }, + "underBehandlingKabal" : { + "type" : "boolean" + }, + "behandletAvKabal" : { + "type" : "boolean" + } + } + }, + "MottattKlagedokumentDto" : { + "type" : "object", + "properties" : { + "mottattDato" : { + "type" : "string", + "format" : "date" + } + } + }, + "KlageFormKravAksjonspunktMellomlagringDto" : { + "required" : [ "behandlingUuid" ], + "type" : "object", + "properties" : { + "kode" : { + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-\\–0-9]*$", + "type" : "string" + }, + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "erKlagerPart" : { + "type" : "boolean" + }, + "erFristOverholdt" : { + "type" : "boolean" + }, + "erKonkret" : { + "type" : "boolean" + }, + "erSignert" : { + "type" : "boolean" + }, + "erTilbakekreving" : { + "type" : "boolean" + }, + "klageTilbakekreving" : { + "$ref" : "#/components/schemas/KlageTilbakekrevingDto" + }, + "begrunnelse" : { + "maxLength" : 2000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "fritekstTilBrev" : { + "maxLength" : 100000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "paKlagdBehandlingUuid" : { + "type" : "string", + "format" : "uuid" + } + } + }, + "KlageTilbakekrevingDto" : { + "required" : [ "tilbakekrevingUuid" ], + "type" : "object", + "properties" : { + "tilbakekrevingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "tilbakekrevingVedtakDato" : { + "type" : "string", + "format" : "date" + }, + "tilbakekrevingBehandlingType" : { + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-\\–0-9]*$", + "type" : "string" + } + } + }, + "KlageVurderingResultatAksjonspunktMellomlagringDto" : { + "required" : [ "behandlingUuid" ], + "type" : "object", + "properties" : { + "kode" : { + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-\\–0-9]*$", + "type" : "string" + }, + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "klageVurdering" : { + "type" : "string", + "enum" : [ "OPPHEVE_YTELSESVEDTAK", "STADFESTE_YTELSESVEDTAK", "MEDHOLD_I_KLAGE", "AVVIS_KLAGE", "HJEMSENDE_UTEN_Å_OPPHEVE", "-" ] + }, + "begrunnelse" : { + "maxLength" : 2000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "fritekstTilBrev" : { + "maxLength" : 100000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "klageMedholdArsak" : { + "type" : "string", + "enum" : [ "NYE_OPPLYSNINGER", "ULIK_REGELVERKSTOLKNING", "ULIK_VURDERING", "PROSESSUELL_FEIL", "-" ] + }, + "klageVurderingOmgjoer" : { + "type" : "string", + "enum" : [ "GUNST_MEDHOLD_I_KLAGE", "DELVIS_MEDHOLD_I_KLAGE", "UGUNST_MEDHOLD_I_KLAGE", "-" ] + }, + "klageHjemmel" : { + "type" : "string", + "enum" : [ "14-02", "14-04", "14-05", "14-06", "14-07", "14-09", "14-10", "14-11", "14-12", "14-13", "14-14", "14-15", "14-16", "14-17", "8-2", "21-3", "22-13", "22-15", "883-5", "883-6", "-" ] + } + } + }, + "OppdragDto" : { + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + } + } + }, + "OpptjeningIUtlandDokStatusDto" : { + "type" : "object", + "properties" : { + "dokStatus" : { + "type" : "string", + "enum" : [ "DOKUMENTASJON_ER_INNHENTET", "DOKUMENTASJON_VIL_BLI_INNHENTET", "DOKUMENTASJON_VIL_IKKE_BLI_INNHENTET" ] + } + } + }, + "FastsattOpptjeningAktivitetDto" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "klasse" : { + "type" : "string", + "enum" : [ "BEKREFTET_GODKJENT", "BEKREFTET_AVVIST", "ANTATT_GODKJENT", "MELLOMLIGGENDE_PERIODE", "-" ] + } + } + }, + "FastsattOpptjeningDto" : { + "type" : "object", + "properties" : { + "opptjeningFom" : { + "type" : "string", + "format" : "date" + }, + "opptjeningTom" : { + "type" : "string", + "format" : "date" + }, + "opptjeningperiode" : { + "$ref" : "#/components/schemas/OpptjeningPeriodeDto" + }, + "fastsattOpptjeningAktivitetList" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FastsattOpptjeningAktivitetDto" + } + } + } + }, + "FerdiglignetNæringDto" : { + "type" : "object", + "properties" : { + "år" : { + "type" : "string" + }, + "beløp" : { + "type" : "integer", + "format" : "int64" + } + } + }, + "OpptjeningAktivitetDto" : { + "type" : "object", + "properties" : { + "aktivitetType" : { + "type" : "string", + "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "FRILOPP", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] + }, + "originalFom" : { + "type" : "string", + "format" : "date" + }, + "originalTom" : { + "type" : "string", + "format" : "date" + }, + "opptjeningFom" : { + "type" : "string", + "format" : "date" + }, + "opptjeningTom" : { + "type" : "string", + "format" : "date" + }, + "arbeidsgiverReferanse" : { + "type" : "string" + }, + "arbeidsforholdRef" : { + "type" : "string" + }, + "stillingsandel" : { + "type" : "number" + }, + "naringRegistreringsdato" : { + "type" : "string", + "format" : "date" + }, + "erManueltOpprettet" : { + "type" : "boolean" + }, + "erGodkjent" : { + "type" : "boolean" + }, + "erEndret" : { + "type" : "boolean" + }, + "begrunnelse" : { + "type" : "string" + }, + "erPeriodeEndret" : { + "type" : "boolean" + } + } + }, + "OpptjeningDto" : { + "type" : "object", + "properties" : { + "fastsattOpptjening" : { + "$ref" : "#/components/schemas/FastsattOpptjeningDto" + }, + "opptjeningAktivitetList" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OpptjeningAktivitetDto" + } + }, + "ferdiglignetNæring" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FerdiglignetNæringDto" + } + } + } + }, + "OpptjeningPeriodeDto" : { + "type" : "object", + "properties" : { + "måneder" : { + "type" : "integer", + "format" : "int32" + }, + "dager" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "PersonopplysningTilbakeDto" : { + "type" : "object", + "properties" : { + "aktoerId" : { + "type" : "string" + }, + "antallBarn" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "PersonadresseDto" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "adresseType" : { + "type" : "string", + "enum" : [ "BOSTEDSADRESSE", "BOSTEDSADRESSE_UTLAND", "POSTADRESSE", "POSTADRESSE_UTLAND", "MIDLERTIDIG_POSTADRESSE_NORGE", "MIDLERTIDIG_POSTADRESSE_UTLAND", "UKJENT_ADRESSE" ] + }, + "adresselinje1" : { + "type" : "string" + }, + "adresselinje2" : { + "type" : "string" + }, + "adresselinje3" : { + "type" : "string" + }, + "postNummer" : { + "type" : "string" + }, + "poststed" : { + "type" : "string" + }, + "land" : { + "type" : "string" + } + } + }, + "PersonopplysningBasisDto" : { + "type" : "object", + "properties" : { + "fnr" : { + "type" : "string" + }, + "aktoerId" : { + "type" : "string" + }, + "diskresjonskode" : { + "type" : "string", + "enum" : [ "UDEF", "SPSF", "SPFO" ] + }, + "navn" : { + "type" : "string" + }, + "kjønn" : { + "type" : "string", + "enum" : [ "K", "M", "-" ] + }, + "sivilstand" : { + "type" : "string", + "enum" : [ "ENKE", "GIFT", "GJPA", "GLAD", "NULL", "REPA", "SAMB", "SEPA", "SEPR", "SKIL", "SKPA", "UGIF" ] + }, + "dødsdato" : { + "type" : "string", + "format" : "date" + }, + "fødselsdato" : { + "type" : "string", + "format" : "date" + }, + "adresser" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PersonadresseDto" + } + } + } + }, + "PersonoversiktDto" : { + "type" : "object", + "properties" : { + "bruker" : { + "$ref" : "#/components/schemas/PersonopplysningBasisDto" + }, + "annenPart" : { + "$ref" : "#/components/schemas/PersonopplysningBasisDto" + }, + "barn" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PersonopplysningBasisDto" + } + } + } + }, + "Annenpart" : { + "type" : "object", + "properties" : { + "adresser" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PersonadresseDto" + } + }, + "regioner" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Region" + } + }, + "personstatuser" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Personstatus" + } + } + } + }, + "LegacyManuellBehandling" : { + "type" : "object", + "properties" : { + "perioder" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/MedlemPeriode" + } + } + } + }, + "ManuellBehandlingResultat" : { + "type" : "object", + "properties" : { + "søkerHarAleneomsorg" : { + "type" : "string", + "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] + }, + "annenpartRettighet" : { + "$ref" : "#/components/schemas/Rettighet" + } + } + }, + "MedlemPeriode" : { + "type" : "object", + "properties" : { + "vurderingsdato" : { + "type" : "string", + "format" : "date" + }, + "oppholdsrettVurdering" : { + "type" : "boolean" + }, + "erEosBorger" : { + "type" : "boolean" + }, + "lovligOppholdVurdering" : { + "type" : "boolean" + }, + "bosattVurdering" : { + "type" : "boolean" + }, + "medlemskapManuellVurderingType" : { + "type" : "string", + "enum" : [ "-", "MEDLEM", "UNNTAK", "IKKE_RELEVANT", "OPPHOR_PGA_ENDRING_I_TPS" ] + }, + "begrunnelse" : { + "type" : "string" + } + } + }, + "MedlemskapDto" : { + "type" : "object", + "properties" : { + "manuellBehandlingResultat" : { + "$ref" : "#/components/schemas/ManuellBehandlingResultat" + }, + "legacyManuellBehandling" : { + "$ref" : "#/components/schemas/LegacyManuellBehandling" + }, + "regioner" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Region" + } + }, + "personstatuser" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Personstatus" + } + }, + "utenlandsopphold" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Utenlandsopphold" + } + }, + "adresser" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PersonadresseDto" + } + }, + "oppholdstillatelser" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Oppholdstillatelse" + } + }, + "medlemskapsperioder" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/MedlemskapPeriode" + } + }, + "avvik" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "BOSATT_UTENLANDSOPPHOLD", "BOSATT_MANGLENDE_BOSTEDSADRESSE", "BOSATT_UTENLANDSADRESSE", "BOSATT_UGYLDIG_PERSONSTATUS", "TREDJELAND_MANGLENDE_LOVLIG_OPPHOLD", "EØS_MANGLENDE_ANSETTELSE_MED_INNTEKT", "MEDL_PERIODER" ] + } + }, + "annenpart" : { + "$ref" : "#/components/schemas/Annenpart" + } + } + }, + "MedlemskapPeriode" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "erMedlem" : { + "type" : "boolean" + }, + "lovvalgsland" : { + "type" : "string" + }, + "studieland" : { + "type" : "string" + }, + "medlemskapType" : { + "type" : "string", + "enum" : [ "ENDELIG", "FORELOPIG", "AVKLARES", "-" ] + }, + "dekningType" : { + "type" : "string", + "enum" : [ "FTL_2_6", "FTL_2_7_a", "FTL_2_7_b", "FTL_2_9_1_a", "FTL_2_9_1_b", "FTL_2_9_1_c", "FTL_2_9_2_a", "FTL_2_9_2_c", "FULL", "IHT_AVTALE", "OPPHOR", "UNNTATT", "-" ] + }, + "beslutningsdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "Oppholdstillatelse" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "type" : { + "type" : "string", + "enum" : [ "MIDLERTIDIG", "PERMANENT", "-" ] + } + } + }, + "Personstatus" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "type" : { + "type" : "string", + "enum" : [ "ADNR", "BOSA", "DØD", "FOSV", "FØDR", "UREG", "UTPE", "UTVA", "-" ] + } + } + }, + "Region" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "type" : { + "type" : "string", + "enum" : [ "NORDEN", "EOS", "ANNET", "-" ] + } + } + }, + "Utenlandsopphold" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "landkode" : { + "type" : "string", + "enum" : [ "???", "ABW", "AFG", "AGO", "AIA", "ALA", "ALB", "AND", "ANT", "ARE", "ARG", "ARM", "ASM", "ATG", "AUS", "AUT", "AZE", "BDI", "BEL", "BEN", "BES", "BFA", "BGD", "BGR", "BHR", "BHS", "BIH", "BLM", "BLR", "BLZ", "BMU", "BOL", "BRA", "BRB", "BRN", "BTN", "BVT", "BWA", "CAF", "CAN", "CCK", "CHE", "CHL", "CHN", "CIV", "CMR", "COD", "COG", "COK", "COL", "COM", "CPV", "CRI", "CSK", "CUB", "CUW", "CXR", "CYM", "CYP", "CZE", "DDR", "DEU", "DJI", "DMA", "DNK", "DOM", "DZA", "ECU", "EGY", "ERI", "ESH", "ESP", "EST", "ETH", "FIN", "FJI", "FLK", "FRA", "FRO", "FSM", "GAB", "GBR", "GEO", "GGY", "GHA", "GIB", "GIN", "GLP", "GMB", "GNB", "GNQ", "GRC", "GRD", "GRL", "GTM", "GUF", "GUM", "GUY", "HKG", "HMD", "HND", "HRV", "HTI", "HUN", "IDN", "IMN", "IND", "IOT", "IRL", "IRN", "IRQ", "ISL", "ISR", "ITA", "JAM", "JEY", "JOR", "JPN", "KAZ", "KEN", "KGZ", "KHM", "KIR", "KNA", "KOR", "KWT", "LAO", "LBN", "LBR", "LBY", "LCA", "LIE", "LKA", "LSO", "LTU", "LUX", "LVA", "MAC", "MAF", "MAR", "MCO", "MDA", "MDG", "MDV", "MEX", "MHL", "MKD", "MLI", "MLT", "MMR", "MNE", "MNG", "MNP", "MOZ", "MRT", "MSR", "MTQ", "MUS", "MWI", "MYS", "MYT", "NAM", "NCL", "NER", "NFK", "NGA", "NIC", "NIU", "NLD", "NOR", "NPL", "NRU", "NZL", "OMN", "PAK", "PAN", "PCN", "PER", "PHL", "PLW", "PNG", "POL", "PRI", "PRK", "PRT", "PRY", "PSE", "PYF", "QAT", "REU", "ROU", "RUS", "RWA", "SAU", "SCG", "SDN", "SEN", "SGP", "SGS", "SHN", "SJM", "SLB", "SLE", "SLV", "SMR", "SOM", "SPM", "SRB", "SSD", "STP", "SUN", "SUR", "SVK", "SVN", "SWE", "SWZ", "SXM", "SYC", "SYR", "TCA", "TCD", "TGO", "THA", "TJK", "TKL", "TKM", "TLS", "TON", "TTO", "TUN", "TUR", "TUV", "TWN", "TZA", "UGA", "UKR", "UMI", "URY", "USA", "UZB", "VAT", "VCT", "VEN", "VGB", "VIR", "VNM", "VUT", "WLF", "WSM", "XUK", "XXK", "XXX", "YEM", "YUG", "ZAF", "ZMB", "ZWE", "-" ] + } + } + }, + "SvpArbeidsforholdDto" : { + "type" : "object", + "properties" : { + "tilretteleggingId" : { + "type" : "integer", + "format" : "int64" + }, + "tilretteleggingBehovFom" : { + "type" : "string", + "format" : "date" + }, + "tilretteleggingDatoer" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SvpTilretteleggingDatoDto" + } + }, + "uttakArbeidType" : { + "type" : "string", + "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] + }, + "arbeidsgiverReferanse" : { + "type" : "string" + }, + "opplysningerOmRisiko" : { + "type" : "string" + }, + "opplysningerOmTilrettelegging" : { + "type" : "string" + }, + "kopiertFraTidligereBehandling" : { + "type" : "boolean" + }, + "mottattTidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "internArbeidsforholdReferanse" : { + "type" : "string" + }, + "eksternArbeidsforholdReferanse" : { + "type" : "string" + }, + "skalBrukes" : { + "type" : "boolean" + }, + "kanTilrettelegges" : { + "type" : "boolean" + }, + "stillingsprosentStartTilrettelegging" : { + "type" : "number" + }, + "velferdspermisjoner" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/VelferdspermisjonDto" + } + }, + "avklarteOppholdPerioder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SvpAvklartOppholdPeriodeDto" + } + }, + "begrunnelse" : { + "maxLength" : 4000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + } + } + }, + "SvpAvklartOppholdPeriodeDto" : { + "required" : [ "fom", "oppholdÅrsak", "tom" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "oppholdÅrsak" : { + "type" : "string", + "enum" : [ "SYKEPENGER", "FERIE" ] + }, + "oppholdKilde" : { + "type" : "string", + "enum" : [ "SØKNAD", "INNTEKTSMELDING", "REGISTRERT_AV_SAKSBEHANDLER" ] + }, + "forVisning" : { + "type" : "boolean" + } + } + }, + "SvpTilretteleggingDatoDto" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "type" : { + "type" : "string", + "enum" : [ "HEL_TILRETTELEGGING", "DELVIS_TILRETTELEGGING", "INGEN_TILRETTELEGGING" ] + }, + "stillingsprosent" : { + "type" : "number" + }, + "overstyrtUtbetalingsgrad" : { + "type" : "number" + }, + "kilde" : { + "type" : "string", + "enum" : [ "ENDRET_AV_SAKSBEHANDLER", "REGISTRERT_AV_SAKSBEHANDLER", "TIDLIGERE_VEDTAK", "SØKNAD" ] + }, + "mottattDato" : { + "type" : "string", + "format" : "date" + } + } + }, + "SvpTilretteleggingDto" : { + "type" : "object", + "properties" : { + "termindato" : { + "type" : "string", + "format" : "date" + }, + "fødselsdato" : { + "type" : "string", + "format" : "date" + }, + "arbeidsforholdListe" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SvpArbeidsforholdDto" + } + }, + "saksbehandlet" : { + "type" : "boolean" + } + } + }, + "VelferdspermisjonDto" : { + "type" : "object", + "properties" : { + "permisjonFom" : { + "type" : "string", + "format" : "date" + }, + "permisjonTom" : { + "type" : "string", + "format" : "date" + }, + "permisjonsprosent" : { + "type" : "number" + }, + "type" : { + "type" : "string", + "enum" : [ "-", "PERMISJON", "UTDANNINGSPERMISJON", "UTDANNINGSPERMISJON_IKKE_LOVFESTET", "UTDANNINGSPERMISJON_LOVFESTET", "VELFERDSPERMISJON", "ANNEN_PERMISJON_IKKE_LOVFESTET", "ANNEN_PERMISJON_LOVFESTET", "PERMISJON_MED_FORELDREPENGER", "PERMITTERING", "PERMISJON_VED_MILITÆRTJENESTE" ] + }, + "erGyldig" : { + "type" : "boolean" + } + } + }, + "DekningsgradInfoDto" : { + "type" : "object", + "properties" : { + "avklartDekningsgrad" : { + "type" : "integer", + "format" : "int32" + }, + "søker" : { + "$ref" : "#/components/schemas/OppgittDekningsgradDto" + }, + "annenPart" : { + "$ref" : "#/components/schemas/OppgittDekningsgradDto" + } + } + }, + "ManglendeVedleggDto" : { + "type" : "object", + "properties" : { + "dokumentType" : { + "type" : "string", + "enum" : [ "SØKNAD_SVANGERSKAPSPENGER", "SØKNAD_FORELDREPENGER_ADOPSJON", "SØKNAD_ENGANGSSTØNAD_FØDSEL", "SØKNAD_ENGANGSSTØNAD_ADOPSJON", "SØKNAD_FORELDREPENGER_FØDSEL", "FLEKSIBELT_UTTAK_FORELDREPENGER", "FORELDREPENGER_ENDRING_SØKNAD", "INNTEKTSMELDING", "KLAGE_DOKUMENT", "I500027", "I000114", "I000119", "DOKUMENTASJON_AV_TERMIN_ELLER_FØDSEL", "DOKUMENTASJON_AV_OMSORGSOVERTAKELSE", "BEKREFTELSE_VENTET_FØDSELSDATO", "FØDSELSATTEST", "I000141", "LEGEERKLÆRING", "DOK_INNLEGGELSE", "BESKRIVELSE_FUNKSJONSNEDSETTELSE", "I000120", "I000121", "I000122", "I000123", "I000124", "DOK_MORS_UTDANNING_ARBEID_SYKDOM", "DOK_FERIE", "DOK_ARBEIDSFORHOLD", "BEKREFTELSE_DELTAR_KVALIFISERINGSPROGRAM", "BEKREFTELSE_FRA_STUDIESTED", "BEKREFTELSE_FRA_ARBEIDSGIVER", "I000112", "DOK_HV", "DOK_NAV_TILTAK", "I000130", "I000131", "I000132", "I000133", "I000109", "I000142", "INNTEKTSOPPLYSNING_SELVSTENDIG", "DOK_INNTEKT", "INNTEKTSOPPLYSNINGER", "RESULTATREGNSKAP", "DOK_MILITÆR_SIVIL_TJENESTE", "DOK_ETTERLØNN", "I000146", "I000052", "KOPI_SKATTEMELDING", "I000140", "BEKREFTELSE_OPPHOLDSTILLATELSE", "I000143", "OPPHOLDSOPPLYSNINGER", "I000110", "I000111", "I000118", "ETTERSENDT_SØKNAD_SVANGERSKAPSPENGER_SELVSTENDIG", "ETTERSENDT_SØKNAD_FORELDREPENGER_ADOPSJON", "ETTERSENDT_SØKNAD_ENGANGSSTØNAD_FØDSEL", "ETTERSENDT_SØKNAD_ENGANGSSTØNAD_ADOPSJON", "ETTERSENDT_SØKNAD_FORELDREPENGER_FØDSEL", "ETTERSENDT_FLEKSIBELT_UTTAK_FORELDREPENGER", "ETTERSENDT_FORELDREPENGER_ENDRING_SØKNAD", "BREV_UTLAND", "ANNET_SKJEMA_UTLAND_IKKE_NAV", "BREV", "I000145", "I000144", "ANNET_SKJEMA_IKKE_NAV", "ANNET", "-" ] + }, + "dokumentTittel" : { + "type" : "string" + }, + "arbeidsgiverReferanse" : { + "type" : "string" + }, + "brukerHarSagtAtIkkeKommer" : { + "type" : "boolean" + } + } + }, + "OppgittDekningsgradDto" : { + "type" : "object", + "properties" : { + "søknadsdato" : { + "type" : "string", + "format" : "date" + }, + "dekningsgrad" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "OppgittFordelingDto" : { + "type" : "object", + "properties" : { + "startDatoForPermisjon" : { + "type" : "string", + "format" : "date" + }, + "dekningsgrader" : { + "$ref" : "#/components/schemas/DekningsgradInfoDto" + } + } + }, + "OppgittTilknytningDto" : { + "type" : "object", + "properties" : { + "oppholdNorgeNa" : { + "type" : "boolean" + }, + "oppholdSistePeriode" : { + "type" : "boolean" + }, + "oppholdNestePeriode" : { + "type" : "boolean" + }, + "utlandsoppholdFor" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/UtlandsoppholdDto" + } + }, + "utlandsoppholdEtter" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/UtlandsoppholdDto" + } + } + } + }, + "SoknadAdopsjonDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/SoknadDto" + }, { + "type" : "object", + "properties" : { + "omsorgsovertakelseDato" : { + "type" : "string", + "format" : "date" + }, + "barnetsAnkomstTilNorgeDato" : { + "type" : "string", + "format" : "date" + }, + "adopsjonFodelsedatoer" : { + "type" : "object", + "additionalProperties" : { + "type" : "string", + "format" : "date" + } + }, + "farSokerType" : { + "type" : "string", + "enum" : [ "ADOPTERER_ALENE", "ANDRE_FORELDER_DØD", "OVERTATT_OMSORG", "OVERTATT_OMSORG_F", "ANDRE_FORELD_DØD_F", "-" ] + } + } + } ] + }, + "SoknadDto" : { + "type" : "object", + "properties" : { + "soknadType" : { + "type" : "string", + "enum" : [ "ST-001", "ST-002" ] + }, + "mottattDato" : { + "type" : "string", + "format" : "date" + }, + "begrunnelseForSenInnsending" : { + "type" : "string" + }, + "antallBarn" : { + "type" : "integer", + "format" : "int32" + }, + "oppgittTilknytning" : { + "$ref" : "#/components/schemas/OppgittTilknytningDto" + }, + "manglendeVedlegg" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ManglendeVedleggDto" + } + }, + "oppgittFordeling" : { + "$ref" : "#/components/schemas/OppgittFordelingDto" + }, + "søknadsfrist" : { + "$ref" : "#/components/schemas/SøknadsfristDto" + } + } + }, + "SoknadFodselDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/SoknadDto" + }, { + "type" : "object", + "properties" : { + "utstedtdato" : { + "type" : "string", + "format" : "date" + }, + "termindato" : { + "type" : "string", + "format" : "date" + }, + "farSokerType" : { + "type" : "string", + "enum" : [ "ADOPTERER_ALENE", "ANDRE_FORELDER_DØD", "OVERTATT_OMSORG", "OVERTATT_OMSORG_F", "ANDRE_FORELD_DØD_F", "-" ] + }, + "fodselsdatoer" : { + "type" : "object", + "additionalProperties" : { + "type" : "string", + "format" : "date" + } + } + } + } ] + }, + "SøknadsfristDto" : { + "type" : "object", + "properties" : { + "mottattDato" : { + "type" : "string", + "format" : "date" + }, + "utledetSøknadsfrist" : { + "type" : "string", + "format" : "date" + }, + "søknadsperiodeStart" : { + "type" : "string", + "format" : "date" + }, + "søknadsperiodeSlutt" : { + "type" : "string", + "format" : "date" + }, + "dagerOversittetFrist" : { + "type" : "integer", + "format" : "int64" + } + } + }, + "UtlandsoppholdDto" : { + "type" : "object", + "properties" : { + "landNavn" : { + "type" : "string" + }, + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + } + } + }, + "SoknadBackendDto" : { + "type" : "object", + "properties" : { + "soknadType" : { + "type" : "string", + "enum" : [ "ST-001", "ST-002" ] + }, + "mottattDato" : { + "type" : "string", + "format" : "date" + }, + "oppgittAleneomsorg" : { + "type" : "boolean" + } + } + }, + "DetaljertSimuleringResultatDto" : { + "type" : "object", + "properties" : { + "periode" : { + "$ref" : "#/components/schemas/PeriodeDto" + }, + "ingenPerioderMedAvvik" : { + "type" : "boolean" + }, + "sumEtterbetaling" : { + "type" : "integer", + "format" : "int64" + }, + "sumFeilutbetaling" : { + "type" : "integer", + "format" : "int64" + }, + "sumInntrekk" : { + "type" : "integer", + "format" : "int64" + }, + "perioderPerMottaker" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SimuleringForMottakerDto" + } + } + } + }, + "PeriodeDto" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + } + } + }, + "SimuleringDto" : { + "type" : "object", + "properties" : { + "simuleringResultat" : { + "$ref" : "#/components/schemas/DetaljertSimuleringResultatDto" + }, + "simuleringResultatUtenInntrekk" : { + "$ref" : "#/components/schemas/DetaljertSimuleringResultatDto" + }, + "slåttAvInntrekk" : { + "type" : "boolean" + } + } + }, + "SimuleringForMottakerDto" : { + "type" : "object", + "properties" : { + "mottakerType" : { + "type" : "string", + "enum" : [ "BRUKER", "ARBG_ORG", "ARBG_PRIV" ] + }, + "mottakerNummer" : { + "type" : "string" + }, + "mottakerIdentifikator" : { + "type" : "string" + }, + "resultatPerFagområde" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SimuleringResultatPerFagområdeDto" + } + }, + "resultatOgMotregningRader" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SimuleringResultatRadDto" + } + }, + "nesteUtbPeriode" : { + "$ref" : "#/components/schemas/PeriodeDto" + } + } + }, + "SimuleringResultatPerFagområdeDto" : { + "type" : "object", + "properties" : { + "fagOmrådeKode" : { + "type" : "string", + "enum" : [ "REFUTG", "FP", "FPREF", "SP", "SPREF", "SVP", "SVPREF", "PB", "PBREF", "PN", "PNREF", "OM", "OMREF", "OPP", "OPPREF", "OOP", "OOPREF", "UNG" ] + }, + "rader" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SimuleringResultatRadDto" + } + } + } + }, + "SimuleringResultatPerMånedDto" : { + "type" : "object", + "properties" : { + "periode" : { + "$ref" : "#/components/schemas/PeriodeDto" + }, + "beløp" : { + "type" : "integer", + "format" : "int64" + } + } + }, + "SimuleringResultatRadDto" : { + "type" : "object", + "properties" : { + "feltnavn" : { + "type" : "string", + "enum" : [ "nyttBeløp", "tidligereUtbetalt", "differanse", "resultatEtterMotregning", "inntrekkNesteMåned", "resultat" ] + }, + "resultaterPerMåned" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SimuleringResultatPerMånedDto" + } + } + } + }, + "TilbakekrevingValgDto" : { + "type" : "object", + "properties" : { + "grunnerTilReduksjon" : { + "type" : "boolean" + }, + "videreBehandling" : { + "type" : "string", + "enum" : [ "-", "TILBAKEKR_OPPRETT", "TILBAKEKR_IGNORER", "TILBAKEKR_INNTREKK", "TILBAKEKR_OPPDATER" ] + }, + "varseltekst" : { + "type" : "string" + } + } + }, + "VarseltekstDto" : { + "type" : "object", + "properties" : { + "varseltekst" : { + "type" : "string" + } + } + }, + "AktivitetIdentifikatorDto" : { + "type" : "object", + "properties" : { + "uttakArbeidType" : { + "type" : "string", + "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] + }, + "arbeidsgiverReferanse" : { + "type" : "string" + }, + "arbeidsforholdId" : { + "type" : "string" + } + } + }, + "AktivitetSaldoDto" : { + "type" : "object", + "properties" : { + "aktivitetIdentifikator" : { + "$ref" : "#/components/schemas/AktivitetIdentifikatorDto" + }, + "saldo" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "KontoUtvidelser" : { + "type" : "object", + "properties" : { + "prematurdager" : { + "type" : "integer", + "format" : "int32" + }, + "flerbarnsdager" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "SaldoerDto" : { + "type" : "object", + "properties" : { + "stonadskontoer" : { + "type" : "object", + "additionalProperties" : { + "$ref" : "#/components/schemas/StønadskontoDto" + } + }, + "tapteDagerFpff" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "StønadskontoDto" : { + "type" : "object", + "properties" : { + "stonadskontotype" : { + "type" : "string", + "enum" : [ "MØDREKVOTE", "FEDREKVOTE", "FELLESPERIODE", "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "FLERBARNSDAGER", "UTEN_AKTIVITETSKRAV", "MINSTERETT_NESTE_STØNADSPERIODE", "MINSTERETT" ] + }, + "maxDager" : { + "type" : "integer", + "format" : "int32" + }, + "saldo" : { + "type" : "integer", + "format" : "int32" + }, + "aktivitetSaldoDtoList" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AktivitetSaldoDto" + } + }, + "gyldigForbruk" : { + "type" : "boolean" + }, + "kontoUtvidelser" : { + "$ref" : "#/components/schemas/KontoUtvidelser" + } + } + }, + "BehandlingMedUttaksperioderDto" : { + "required" : [ "behandlingUuid", "perioder" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "perioder" : { + "maxItems" : 1500, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/UttakResultatPeriodeLagreDto" + } + } + } + }, + "InternArbeidsforholdRef" : { + "type" : "object", + "properties" : { + "referanse" : { + "type" : "string" + }, + "indexKey" : { + "type" : "string" + }, + "uuidreferanse" : { + "type" : "string", + "format" : "uuid" + } + } + }, + "Trekkdager" : { + "type" : "object" + }, + "UttakResultatPeriodeAktivitetLagreDto" : { + "required" : [ "trekkdagerDesimaler" ], + "type" : "object", + "properties" : { + "stønadskontoType" : { + "type" : "string", + "enum" : [ "FELLESPERIODE", "MØDREKVOTE", "FEDREKVOTE", "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "-" ] + }, + "trekkdagerDesimaler" : { + "$ref" : "#/components/schemas/Trekkdager" + }, + "arbeidsgiver" : { + "$ref" : "#/components/schemas/Arbeidsgiver" + }, + "arbeidsgiverReferanse" : { + "pattern" : "^\\d{9}$|^\\d{13}$", + "type" : "string" + }, + "arbeidsforholdId" : { + "$ref" : "#/components/schemas/InternArbeidsforholdRef" + }, + "utbetalingsgrad" : { + "type" : "number" + }, + "uttakArbeidType" : { + "type" : "string", + "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] + } + } + }, + "UttakResultatPeriodeLagreDto" : { + "required" : [ "aktiviteter", "fom", "graderingAvslagÅrsak", "oppholdÅrsak", "periodeResultatType", "periodeResultatÅrsak", "tom", "utsettelseType" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "aktiviteter" : { + "maxItems" : 100, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/UttakResultatPeriodeAktivitetLagreDto" + } + }, + "begrunnelse" : { + "maxLength" : 4000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "periodeResultatType" : { + "type" : "string", + "enum" : [ "INNVILGET", "AVSLÅTT", "MANUELL_BEHANDLING" ] + }, + "periodeResultatÅrsak" : { + "type" : "string", + "enum" : [ "-", "2002", "2003", "2004", "2005", "2006", "2007", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2030", "2031", "2032", "2033", "2034", "2035", "2036", "2037", "2038", "2039", "4002", "4003", "4005", "4007", "4008", "4012", "4013", "4020", "4022", "4023", "4025", "4030", "4031", "4032", "4033", "4034", "4035", "4037", "4038", "4039", "4040", "4041", "4050", "4051", "4052", "4053", "4054", "4055", "4056", "4057", "4058", "4059", "4060", "4061", "4062", "4063", "4064", "4065", "4066", "4067", "4068", "4069", "4070", "4071", "4072", "4073", "4074", "4075", "4076", "4077", "4081", "4082", "4084", "4085", "4086", "4087", "4088", "4089", "4092", "4093", "4095", "4096", "4097", "4098", "4099", "4100", "4102", "4103", "4104", "4105", "4106", "4107", "4110", "4111", "4112", "4115", "4116", "4117" ] + }, + "utsettelseType" : { + "type" : "string", + "enum" : [ "ARBEID", "FERIE", "SYKDOM_SKADE", "SØKER_INNLAGT", "BARN_INNLAGT", "HV_OVELSE", "NAV_TILTAK", "FRI", "-" ] + }, + "oppholdÅrsak" : { + "type" : "string", + "enum" : [ "-", "UTTAK_MØDREKVOTE_ANNEN_FORELDER", "UTTAK_FEDREKVOTE_ANNEN_FORELDER", "UTTAK_FELLESP_ANNEN_FORELDER", "UTTAK_FORELDREPENGER_ANNEN_FORELDER" ] + }, + "flerbarnsdager" : { + "type" : "boolean" + }, + "samtidigUttak" : { + "type" : "boolean" + }, + "samtidigUttaksprosent" : { + "type" : "number" + }, + "graderingInnvilget" : { + "type" : "boolean" + }, + "graderingAvslagÅrsak" : { + "type" : "string", + "enum" : [ "-", "4504", "4501", "4502", "4503", "4523" ] + }, + "mottattDato" : { + "type" : "string", + "format" : "date" + } + } + }, + "AktivitetskravGrunnlagArbeid" : { + "type" : "object", + "properties" : { + "orgNummer" : { + "type" : "string" + }, + "stillingsprosent" : { + "type" : "number" + }, + "permisjon" : { + "$ref" : "#/components/schemas/Permisjon" + } + } + }, + "DokumentasjonVurderingBehovDto" : { + "required" : [ "fom", "tom", "type", "årsak" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "type" : { + "type" : "string", + "enum" : [ "UTSETTELSE", "OVERFØRING", "UTTAK" ] + }, + "årsak" : { + "type" : "string", + "enum" : [ "INNLEGGELSE_SØKER", "INNLEGGELSE_BARN", "HV_ØVELSE", "NAV_TILTAK", "SYKDOM_SØKER", "INNLEGGELSE_ANNEN_FORELDER", "SYKDOM_ANNEN_FORELDER", "BARE_SØKER_RETT", "ALENEOMSORG", "AKTIVITETSKRAV_ARBEID", "AKTIVITETSKRAV_UTDANNING", "AKTIVITETSKRAV_KVALPROG", "AKTIVITETSKRAV_INTROPROG", "AKTIVITETSKRAV_TRENGER_HJELP", "AKTIVITETSKRAV_INNLAGT", "AKTIVITETSKRAV_ARBEID_OG_UTDANNING", "AKTIVITETSKRAV_IKKE_OPPGITT", "TIDLIG_OPPSTART_FAR" ] + }, + "vurdering" : { + "type" : "string", + "enum" : [ "GODKJENT", "GODKJENT_AUTOMATISK", "IKKE_GODKJENT", "IKKE_DOKUMENTERT" ] + }, + "morsStillingsprosent" : { + "type" : "number" + }, + "aktivitetskravGrunnlag" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AktivitetskravGrunnlagArbeid" + } + } + } + }, + "Permisjon" : { + "type" : "object", + "properties" : { + "prosent" : { + "type" : "number" + }, + "type" : { + "type" : "string", + "enum" : [ "-", "UTDANNING", "FORELDREPENGER", "PERMITTERING", "ANNEN_PERMISJON" ] + } + } + }, + "FaktaUttakPeriodeDto" : { + "required" : [ "fom", "tom" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "uttakPeriodeType" : { + "type" : "string", + "enum" : [ "FELLESPERIODE", "MØDREKVOTE", "FEDREKVOTE", "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "-" ] + }, + "utsettelseÅrsak" : { + "type" : "string", + "enum" : [ "ARBEID", "LOVBESTEMT_FERIE", "SYKDOM", "INSTITUSJONSOPPHOLD_SØKER", "INSTITUSJONSOPPHOLD_BARNET", "HV_OVELSE", "NAV_TILTAK", "FRI", "-" ] + }, + "overføringÅrsak" : { + "type" : "string", + "enum" : [ "INSTITUSJONSOPPHOLD_ANNEN_FORELDER", "SYKDOM_ANNEN_FORELDER", "IKKE_RETT_ANNEN_FORELDER", "ALENEOMSORG", "-" ] + }, + "oppholdÅrsak" : { + "type" : "string", + "enum" : [ "-", "UTTAK_MØDREKVOTE_ANNEN_FORELDER", "UTTAK_FEDREKVOTE_ANNEN_FORELDER", "UTTAK_FELLESP_ANNEN_FORELDER", "UTTAK_FORELDREPENGER_ANNEN_FORELDER" ] + }, + "arbeidstidsprosent" : { + "maximum" : 100, + "minimum" : 0, + "type" : "number" + }, + "arbeidsforhold" : { + "$ref" : "#/components/schemas/ArbeidsforholdDto" + }, + "samtidigUttaksprosent" : { + "type" : "number" + }, + "flerbarnsdager" : { + "type" : "boolean" + }, + "morsAktivitet" : { + "type" : "string", + "enum" : [ "-", "ARBEID", "UTDANNING", "KVALPROG", "INTROPROG", "TRENGER_HJELP", "INNLAGT", "ARBEID_OG_UTDANNING", "UFØRE", "IKKE_OPPGITT" ] + }, + "periodeKilde" : { + "type" : "string", + "enum" : [ "SØKNAD", "TIDLIGERE_VEDTAK", "ANDRE_NAV_VEDTAK", "SAKSBEHANDLER" ] + }, + "begrunnelse" : { + "maxLength" : 4000, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + } + } + }, + "SvangerskapspengerUttakResultatArbeidsforholdDto" : { + "type" : "object", + "properties" : { + "arbeidsforholdIkkeOppfyltÅrsak" : { + "type" : "string", + "enum" : [ "-", "8301", "8302", "8303", "8312" ] + }, + "arbeidsgiverReferanse" : { + "type" : "string" + }, + "arbeidType" : { + "type" : "string", + "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] + }, + "perioder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SvangerskapspengerUttakResultatPeriodeDto" + } + } + } + }, + "SvangerskapspengerUttakResultatDto" : { + "type" : "object", + "properties" : { + "uttaksResultatArbeidsforhold" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SvangerskapspengerUttakResultatArbeidsforholdDto" + } + } + } + }, + "SvangerskapspengerUttakResultatPeriodeDto" : { + "type" : "object", + "properties" : { + "utbetalingsgrad" : { + "type" : "number" + }, + "periodeResultatType" : { + "type" : "string", + "enum" : [ "INNVILGET", "AVSLÅTT", "MANUELL_BEHANDLING" ] + }, + "periodeIkkeOppfyltÅrsak" : { + "type" : "string", + "enum" : [ "-", "8304", "8305", "8306", "8308", "8309", "8310", "8311", "8313", "8314", "8315", "8316", "8317" ] + }, + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + } + } + }, + "FilterDto" : { + "type" : "object", + "properties" : { + "kreverSammenhengendeUttakTom" : { + "type" : "string", + "format" : "date" + }, + "utenMinsterett" : { + "type" : "boolean" + }, + "søkerErMor" : { + "type" : "boolean" + } + } + }, + "UttakResultatPeriodeAktivitetDto" : { + "type" : "object", + "properties" : { + "stønadskontoType" : { + "type" : "string", + "enum" : [ "FELLESPERIODE", "MØDREKVOTE", "FEDREKVOTE", "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "-" ] + }, + "prosentArbeid" : { + "type" : "number" + }, + "arbeidsforholdId" : { + "type" : "string" + }, + "eksternArbeidsforholdId" : { + "type" : "string" + }, + "arbeidsgiverReferanse" : { + "type" : "string" + }, + "utbetalingsgrad" : { + "type" : "number" + }, + "uttakArbeidType" : { + "type" : "string", + "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] + }, + "gradering" : { + "type" : "boolean" + }, + "trekkdagerDesimaler" : { + "type" : "number" + } + } + }, + "UttakResultatPeriodeDto" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "aktiviteter" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/UttakResultatPeriodeAktivitetDto" + } + }, + "periodeResultatType" : { + "type" : "string", + "enum" : [ "INNVILGET", "AVSLÅTT", "MANUELL_BEHANDLING" ] + }, + "begrunnelse" : { + "type" : "string" + }, + "periodeResultatÅrsak" : { + "type" : "string", + "enum" : [ "-", "2002", "2003", "2004", "2005", "2006", "2007", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2030", "2031", "2032", "2033", "2034", "2035", "2036", "2037", "2038", "2039", "4002", "4003", "4005", "4007", "4008", "4012", "4013", "4020", "4022", "4023", "4025", "4030", "4031", "4032", "4033", "4034", "4035", "4037", "4038", "4039", "4040", "4041", "4050", "4051", "4052", "4053", "4054", "4055", "4056", "4057", "4058", "4059", "4060", "4061", "4062", "4063", "4064", "4065", "4066", "4067", "4068", "4069", "4070", "4071", "4072", "4073", "4074", "4075", "4076", "4077", "4081", "4082", "4084", "4085", "4086", "4087", "4088", "4089", "4092", "4093", "4095", "4096", "4097", "4098", "4099", "4100", "4102", "4103", "4104", "4105", "4106", "4107", "4110", "4111", "4112", "4115", "4116", "4117" ] + }, + "manuellBehandlingÅrsak" : { + "type" : "string", + "enum" : [ "-", "5001", "5002", "5003", "5004", "5005", "5006", "5007", "5009", "5010", "5011", "5012", "5014", "5016", "5018", "5019", "5024", "5025", "5026", "5027", "5028", "5029", "5030", "5031", "5032" ] + }, + "graderingAvslagÅrsak" : { + "type" : "string", + "enum" : [ "-", "4504", "4501", "4502", "4503", "4523" ] + }, + "flerbarnsdager" : { + "type" : "boolean" + }, + "samtidigUttak" : { + "type" : "boolean" + }, + "samtidigUttaksprosent" : { + "type" : "number" + }, + "graderingInnvilget" : { + "type" : "boolean" + }, + "periodeType" : { + "type" : "string", + "enum" : [ "FELLESPERIODE", "MØDREKVOTE", "FEDREKVOTE", "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "-" ] + }, + "utsettelseType" : { + "type" : "string", + "enum" : [ "ARBEID", "FERIE", "SYKDOM_SKADE", "SØKER_INNLAGT", "BARN_INNLAGT", "HV_OVELSE", "NAV_TILTAK", "FRI", "-" ] + }, + "oppholdÅrsak" : { + "type" : "string", + "enum" : [ "-", "UTTAK_MØDREKVOTE_ANNEN_FORELDER", "UTTAK_FEDREKVOTE_ANNEN_FORELDER", "UTTAK_FELLESP_ANNEN_FORELDER", "UTTAK_FORELDREPENGER_ANNEN_FORELDER" ] + }, + "mottattDato" : { + "type" : "string", + "format" : "date" + }, + "tidligstMottattDato" : { + "type" : "string", + "format" : "date" + }, + "erUtbetalingRedusertTilMorsStillingsprosent" : { + "type" : "boolean" + }, + "gradertAktivitet" : { + "$ref" : "#/components/schemas/UttakResultatPeriodeAktivitetDto" + }, + "periodeResultatÅrsakLovhjemmel" : { + "type" : "string" + }, + "graderingsAvslagÅrsakLovhjemmel" : { + "type" : "string" + } + } + }, + "UttakResultatPerioderDto" : { + "type" : "object", + "properties" : { + "perioderSøker" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/UttakResultatPeriodeDto" + } + }, + "perioderAnnenpart" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/UttakResultatPeriodeDto" + } + }, + "annenForelderHarRett" : { + "type" : "boolean" + }, + "aleneomsorg" : { + "type" : "boolean" + }, + "annenForelderRettEØS" : { + "type" : "boolean" + }, + "oppgittAnnenForelderRettEØS" : { + "type" : "boolean" + }, + "årsakFilter" : { + "$ref" : "#/components/schemas/FilterDto" + }, + "endringsdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "Beskrivelse" : { + "type" : "object", + "properties" : { + "header" : { + "type" : "string" + }, + "kommentarer" : { + "type" : "array", + "items" : { + "type" : "string" + } + } + } + }, + "Dokument" : { + "type" : "object", + "properties" : { + "journalpostId" : { + "type" : "string" + }, + "dokumentId" : { + "type" : "string" + }, + "tittel" : { + "type" : "string" + } + } + }, + "OppgaveDto" : { + "type" : "object", + "properties" : { + "oppgaveId" : { + "type" : "string" + }, + "oppgavetype" : { + "type" : "string", + "enum" : [ "VUR_KONSEKVENS", "VUR_DOKUMENT" ] + }, + "beskrivelser" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Beskrivelse" + } + }, + "dokumenter" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Dokument" + } + } + } + }, + "VergeBackendDto" : { + "type" : "object", + "properties" : { + "aktoerId" : { + "type" : "string" + }, + "navn" : { + "type" : "string" + }, + "organisasjonsnummer" : { + "type" : "string" + }, + "gyldigFom" : { + "type" : "string", + "format" : "date" + }, + "gyldigTom" : { + "type" : "string", + "format" : "date" + }, + "vergeType" : { + "type" : "string", + "enum" : [ "BARN", "FBARN", "VOKSEN", "ADVOKAT", "ANNEN_F" ] + } + } + }, + "VergeDto" : { + "required" : [ "vergeType" ], + "type" : "object", + "properties" : { + "vergeType" : { + "type" : "string", + "enum" : [ "BARN", "FBARN", "VOKSEN", "ADVOKAT", "ANNEN_F" ] + }, + "gyldigFom" : { + "type" : "string", + "format" : "date" + }, + "gyldigTom" : { + "type" : "string", + "format" : "date" + }, + "navn" : { + "maxLength" : 100, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "fnr" : { + "pattern" : "^\\d{11}$", + "type" : "string" + }, + "organisasjonsnummer" : { + "pattern" : "^\\d{9}$", + "type" : "string" + } + } + }, + "YtelseFordelingDto" : { + "type" : "object", + "properties" : { + "overstyrtOmsorg" : { + "type" : "boolean" + }, + "førsteUttaksdato" : { + "type" : "string", + "format" : "date" + }, + "ønskerJustertVedFødsel" : { + "type" : "boolean" + } + } + }, + "OmsorgOgRettDto" : { + "type" : "object", + "properties" : { + "søknad" : { + "$ref" : "#/components/schemas/Søknad" + }, + "registerdata" : { + "$ref" : "#/components/schemas/RegisterData" + }, + "manuellBehandlingResultat" : { + "$ref" : "#/components/schemas/ManuellBehandlingResultat" + }, + "rettighetstype" : { + "type" : "string", + "enum" : [ "ALENEOMSORG", "BEGGE_RETT", "BEGGE_RETT_EØS", "BARE_MOR_RETT", "BARE_FAR_RETT", "BARE_FAR_RETT_MOR_UFØR" ] + }, + "relasjonsRolleType" : { + "type" : "string", + "enum" : [ "EKTE", "BARN", "FARA", "MORA", "REPA", "MMOR", "ANPA", "-" ] + } + } + }, + "RegisterData" : { + "type" : "object", + "properties" : { + "harAnnenpartUføretrygd" : { + "type" : "string", + "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] + }, + "harAnnenpartForeldrepenger" : { + "type" : "string", + "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] + }, + "harAnnenpartEngangsstønad" : { + "type" : "string", + "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] + } + } + }, + "Rettighet" : { + "type" : "object", + "properties" : { + "harRettNorge" : { + "type" : "string", + "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] + }, + "harOppholdEØS" : { + "type" : "string", + "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] + }, + "harRettEØS" : { + "type" : "string", + "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] + }, + "harUføretrygd" : { + "type" : "string", + "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] + } + } + }, + "BestillDokumentDto" : { + "required" : [ "brevmalkode" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "brevmalkode" : { + "type" : "string", + "enum" : [ "FRITEK", "FRIHTM", "INNVES", "AVSLES", "INVFOR", "AVSFOR", "OPPFOR", "ANUFOR", "INVSVP", "OPPSVP", "AVSSVP", "INFOAF", "INNOPP", "VARREV", "IOHENL", "INNSYN", "IKKESO", "INGEND", "FORSAK", "FORMED", "FORMEF", "FORTID", "KGEAVV", "KGEOMG", "KGEOVE", "ELYSIM", "ENDUTB", "INFOPU", "FORPUS", "KLAGAV", "KAVVIS", "KLAGNY", "KHJEMS", "VEDMED", "KOMGJO", "KLAGOV", "KOVKLA", "KLAGVE", "KSTADF", "VEDOGA", "ANKEBO", "ANKOMG", "ANKOPP", "KGESTA", "KGEHJE" ] + }, + "fritekst" : { + "maxLength" : 20000, + "minLength" : 0, + "type" : "string" + }, + "arsakskode" : { + "type" : "string", + "enum" : [ "BARNIKKEREG", "JOBBFULLTID", "IKKEOPPTJENT", "UTVANDRET", "JOBBUTLAND", "IKKEOPPHOLD", "JOBB6MND", "AKTIVITET", "ANNET" ] + } + } + }, + "ForhåndsvisDokumentDto" : { + "required" : [ "behandlingUuid" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "dokumentMal" : { + "type" : "string", + "enum" : [ "FRITEK", "FRIHTM", "INNVES", "AVSLES", "INVFOR", "AVSFOR", "OPPFOR", "ANUFOR", "INVSVP", "OPPSVP", "AVSSVP", "INFOAF", "INNOPP", "VARREV", "IOHENL", "INNSYN", "IKKESO", "INGEND", "FORSAK", "FORMED", "FORMEF", "FORTID", "KGEAVV", "KGEOMG", "KGEOVE", "ELYSIM", "ENDUTB", "INFOPU", "FORPUS", "KLAGAV", "KAVVIS", "KLAGNY", "KHJEMS", "VEDMED", "KOMGJO", "KLAGOV", "KOVKLA", "KLAGVE", "KSTADF", "VEDOGA", "ANKEBO", "ANKOMG", "ANKOPP", "KGESTA", "KGEHJE" ] + }, + "arsakskode" : { + "type" : "string", + "enum" : [ "BARNIKKEREG", "JOBBFULLTID", "IKKEOPPTJENT", "UTVANDRET", "JOBBUTLAND", "IKKEOPPHOLD", "JOBB6MND", "AKTIVITET", "ANNET" ] + }, + "automatiskVedtaksbrev" : { + "type" : "boolean" + }, + "tittel" : { + "maxLength" : 200, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + }, + "fritekst" : { + "maxLength" : 20000, + "minLength" : 0, + "type" : "string" + } + } + }, + "DokumentKvitteringDto" : { + "required" : [ "behandlingUuid", "dokumentId", "dokumentbestillingUuid", "journalpostId", "saksnummer" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "saksnummer" : { + "$ref" : "#/components/schemas/Saksnummer" + }, + "dokumentbestillingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "journalpostId" : { + "pattern" : "^[\\p{L}\\p{N}_.\\-]+$", + "type" : "string" + }, + "dokumentId" : { + "type" : "string" + } + } + }, + "Saksnummer" : { + "required" : [ "saksnummer" ], + "type" : "object", + "properties" : { + "saksnummer" : { + "maxLength" : 20, + "minLength" : 0, + "pattern" : "^[a-zA-Z0-9_\\-]*$", + "type" : "string" + } + } + }, + "MellomlagreHtmlDto" : { + "required" : [ "behandlingUuid" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "redigertInnhold" : { + "maxLength" : 20000, + "minLength" : 0, + "type" : "string" + } + } + }, + "DokumentDto" : { + "type" : "object", + "properties" : { + "journalpostId" : { + "type" : "string" + }, + "dokumentId" : { + "type" : "string" + }, + "behandlinger" : { + "type" : "array", + "items" : { + "type" : "integer", + "format" : "int64" + } + }, + "behandlingUuidList" : { + "type" : "array", + "items" : { + "type" : "string", + "format" : "uuid" + } + }, + "tidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "tittel" : { + "type" : "string" + }, + "kommunikasjonsretning" : { + "type" : "string", + "enum" : [ "INN", "UT", "NOTAT" ] + }, + "gjelderFor" : { + "type" : "string" + }, + "arbeidsgiverReferanse" : { + "type" : "string" + } + } + }, + "MottattDokumentDto" : { + "type" : "object", + "properties" : { + "mottattDato" : { + "type" : "string", + "format" : "date" + }, + "dokumentTypeId" : { + "type" : "string", + "enum" : [ "SØKNAD_SVANGERSKAPSPENGER", "SØKNAD_FORELDREPENGER_ADOPSJON", "SØKNAD_ENGANGSSTØNAD_FØDSEL", "SØKNAD_ENGANGSSTØNAD_ADOPSJON", "SØKNAD_FORELDREPENGER_FØDSEL", "FLEKSIBELT_UTTAK_FORELDREPENGER", "FORELDREPENGER_ENDRING_SØKNAD", "INNTEKTSMELDING", "KLAGE_DOKUMENT", "I500027", "I000114", "I000119", "DOKUMENTASJON_AV_TERMIN_ELLER_FØDSEL", "DOKUMENTASJON_AV_OMSORGSOVERTAKELSE", "BEKREFTELSE_VENTET_FØDSELSDATO", "FØDSELSATTEST", "I000141", "LEGEERKLÆRING", "DOK_INNLEGGELSE", "BESKRIVELSE_FUNKSJONSNEDSETTELSE", "I000120", "I000121", "I000122", "I000123", "I000124", "DOK_MORS_UTDANNING_ARBEID_SYKDOM", "DOK_FERIE", "DOK_ARBEIDSFORHOLD", "BEKREFTELSE_DELTAR_KVALIFISERINGSPROGRAM", "BEKREFTELSE_FRA_STUDIESTED", "BEKREFTELSE_FRA_ARBEIDSGIVER", "I000112", "DOK_HV", "DOK_NAV_TILTAK", "I000130", "I000131", "I000132", "I000133", "I000109", "I000142", "INNTEKTSOPPLYSNING_SELVSTENDIG", "DOK_INNTEKT", "INNTEKTSOPPLYSNINGER", "RESULTATREGNSKAP", "DOK_MILITÆR_SIVIL_TJENESTE", "DOK_ETTERLØNN", "I000146", "I000052", "KOPI_SKATTEMELDING", "I000140", "BEKREFTELSE_OPPHOLDSTILLATELSE", "I000143", "OPPHOLDSOPPLYSNINGER", "I000110", "I000111", "I000118", "ETTERSENDT_SØKNAD_SVANGERSKAPSPENGER_SELVSTENDIG", "ETTERSENDT_SØKNAD_FORELDREPENGER_ADOPSJON", "ETTERSENDT_SØKNAD_ENGANGSSTØNAD_FØDSEL", "ETTERSENDT_SØKNAD_ENGANGSSTØNAD_ADOPSJON", "ETTERSENDT_SØKNAD_FORELDREPENGER_FØDSEL", "ETTERSENDT_FLEKSIBELT_UTTAK_FORELDREPENGER", "ETTERSENDT_FORELDREPENGER_ENDRING_SØKNAD", "BREV_UTLAND", "ANNET_SKJEMA_UTLAND_IKKE_NAV", "BREV", "I000145", "I000144", "ANNET_SKJEMA_IKKE_NAV", "ANNET", "-" ] + }, + "dokumentKategori" : { + "type" : "string", + "enum" : [ "-", "KLGA", "ITSKJ", "SOKN", "ESKJ", "BRV", "EDIALOG", "FNOT", "IBRV", "KONVEARK", "KONVSYS", "PUBEOS", "SEDOK", "TSKJ", "VBRV" ] + } + } + }, + "JournalpostIdDto" : { + "required" : [ "journalpostId" ], + "type" : "object", + "properties" : { + "journalpostId" : { + "type" : "string" + } + } + }, + "DokumentIdDto" : { + "type" : "object", + "properties" : { + "dokumentId" : { + "type" : "string" + } + } + }, + "AktoerInfoDto" : { + "type" : "object", + "properties" : { + "aktørId" : { + "type" : "string" + }, + "person" : { + "$ref" : "#/components/schemas/PersonDto" + }, + "fagsaker" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FagsakSøkDto" + } + } + } + }, + "FagsakSøkDto" : { + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "fagsakYtelseType" : { + "type" : "string", + "enum" : [ "ES", "FP", "SVP", "-" ] + }, + "status" : { + "type" : "string", + "enum" : [ "OPPR", "UBEH", "LOP", "AVSLU" ] + }, + "relasjonsRolleType" : { + "type" : "string", + "enum" : [ "EKTE", "BARN", "FARA", "MORA", "REPA", "MMOR", "ANPA", "-" ] + }, + "aktørId" : { + "type" : "string" + }, + "person" : { + "$ref" : "#/components/schemas/PersonDto" + }, + "barnFødt" : { + "type" : "string", + "format" : "date" + }, + "opprettet" : { + "type" : "string", + "format" : "date" + }, + "endret" : { + "type" : "string", + "format" : "date" + } + } + }, + "PersonDto" : { + "type" : "object", + "properties" : { + "aktørId" : { + "type" : "string" + }, + "navn" : { + "type" : "string" + }, + "fødselsnummer" : { + "type" : "string" + }, + "kjønn" : { + "type" : "string", + "enum" : [ "K", "M", "-" ] + }, + "diskresjonskode" : { + "type" : "string" + }, + "fødselsdato" : { + "type" : "string", + "format" : "date" + }, + "dødsdato" : { + "type" : "string", + "format" : "date" + }, + "dodsdato" : { + "type" : "string", + "format" : "date" + }, + "språkkode" : { + "type" : "string", + "enum" : [ "NB", "NN", "EN", "-" ] + } + } + }, + "AktoerIdDto" : { + "type" : "object", + "properties" : { + "aktoerId" : { + "maxLength" : 20, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + } + } + }, + "EndreUtlandMarkeringDto" : { + "required" : [ "saksnummer" ], + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "fagsakMarkeringer" : { + "maxItems" : 25, + "minItems" : 0, + "uniqueItems" : true, + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "EØS_BOSATT_NORGE", "BOSATT_UTLAND", "SAMMENSATT_KONTROLL", "DØD_DØDFØDSEL", "PRAKSIS_UTSETTELSE", "BARE_FAR_RETT", "SELVSTENDIG_NÆRING", "HASTER" ] + } + } + } + }, + "FagsakBackendDto" : { + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "fagsakYtelseType" : { + "type" : "string", + "enum" : [ "ES", "FP", "SVP", "-" ] + }, + "status" : { + "type" : "string", + "enum" : [ "OPPR", "UBEH", "LOP", "AVSLU" ] + }, + "relasjonsRolleType" : { + "type" : "string", + "enum" : [ "EKTE", "BARN", "FARA", "MORA", "REPA", "MMOR", "ANPA", "-" ] + }, + "aktørId" : { + "type" : "string" + }, + "dekningsgrad" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "AnnenPartBehandlingDto" : { + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "relasjonsRolleType" : { + "type" : "string", + "enum" : [ "EKTE", "BARN", "FARA", "MORA", "REPA", "MMOR", "ANPA", "-" ] + }, + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + } + } + }, + "BehandlingOperasjonerDto" : { + "type" : "object", + "properties" : { + "uuid" : { + "type" : "string", + "format" : "uuid" + }, + "behandlingKanBytteEnhet" : { + "type" : "boolean" + }, + "behandlingKanHenlegges" : { + "type" : "boolean" + }, + "behandlingKanGjenopptas" : { + "type" : "boolean" + }, + "behandlingKanOpnesForEndringer" : { + "type" : "boolean" + }, + "behandlingKanMerkesHaster" : { + "type" : "boolean" + }, + "behandlingKanSettesPaVent" : { + "type" : "boolean" + }, + "behandlingKanSendeMelding" : { + "type" : "boolean" + }, + "behandlingFraBeslutter" : { + "type" : "boolean" + }, + "behandlingTilGodkjenning" : { + "type" : "boolean" + }, + "vergeBehandlingsmeny" : { + "type" : "string", + "enum" : [ "SKJUL", "OPPRETT", "FJERN" ] + } + } + }, + "BehandlingOpprettingDto" : { + "type" : "object", + "properties" : { + "behandlingType" : { + "type" : "string", + "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] + }, + "kanOppretteBehandling" : { + "type" : "boolean" + } + } + }, + "BrevmalDto" : { + "required" : [ "kode", "navn" ], + "type" : "object", + "properties" : { + "kode" : { + "pattern" : "[A-Z]{6}", + "type" : "string" + }, + "navn" : { + "type" : "string" + }, + "tilgjengelig" : { + "type" : "boolean" + } + } + }, + "FagsakBehandlingDto" : { + "type" : "object", + "properties" : { + "id" : { + "type" : "integer", + "format" : "int64" + }, + "uuid" : { + "type" : "string", + "format" : "uuid" + }, + "versjon" : { + "type" : "integer", + "format" : "int64" + }, + "type" : { + "type" : "string", + "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] + }, + "status" : { + "type" : "string", + "enum" : [ "AVSLU", "FVED", "IVED", "OPPRE", "UTRED" ] + }, + "fagsakId" : { + "type" : "integer", + "format" : "int64" + }, + "opprettet" : { + "type" : "string", + "format" : "date-time" + }, + "avsluttet" : { + "type" : "string", + "format" : "date-time" + }, + "endret" : { + "type" : "string", + "format" : "date-time" + }, + "endretAvBrukernavn" : { + "type" : "string" + }, + "behandlendeEnhetId" : { + "type" : "string" + }, + "behandlendeEnhetNavn" : { + "type" : "string" + }, + "erAktivPapirsoknad" : { + "type" : "boolean" + }, + "førsteÅrsak" : { + "$ref" : "#/components/schemas/BehandlingÅrsakDto" + }, + "behandlingsfristTid" : { + "type" : "string", + "format" : "date" + }, + "gjeldendeVedtak" : { + "type" : "boolean" + }, + "erPaaVent" : { + "type" : "boolean" + }, + "originalVedtaksDato" : { + "type" : "string", + "format" : "date" + }, + "behandlingHenlagt" : { + "type" : "boolean" + }, + "behandlingPaaVent" : { + "type" : "boolean" + }, + "behandlingPåVent" : { + "type" : "boolean" + }, + "fristBehandlingPåVent" : { + "type" : "string" + }, + "fristBehandlingPaaVent" : { + "type" : "string" + }, + "venteArsakKode" : { + "type" : "string" + }, + "venteÅrsakKode" : { + "type" : "string" + }, + "sprakkode" : { + "type" : "string", + "enum" : [ "NB", "NN", "EN", "-" ] + }, + "språkkode" : { + "type" : "string", + "enum" : [ "NB", "NN", "EN", "-" ] + }, + "behandlingKøet" : { + "type" : "boolean" + }, + "ansvarligSaksbehandler" : { + "type" : "string" + }, + "toTrinnsBehandling" : { + "type" : "boolean" + }, + "behandlingsresultat" : { + "$ref" : "#/components/schemas/BehandlingsresultatDto" + }, + "behandlingÅrsaker" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BehandlingÅrsakDto" + } + }, + "vilkår" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/VilkårDto" + } + }, + "links" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ResourceLink" + } + }, + "behandlingTillatteOperasjoner" : { + "$ref" : "#/components/schemas/BehandlingOperasjonerDto" + }, + "brevmaler" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BrevmalDto" + } + }, + "totrinnskontrollÅrsaker" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/TotrinnskontrollSkjermlenkeContextDto" + } + }, + "totrinnskontrollReadonly" : { + "type" : "boolean" + }, + "risikoAksjonspunkt" : { + "$ref" : "#/components/schemas/AksjonspunktDto" + }, + "kontrollResultat" : { + "$ref" : "#/components/schemas/KontrollresultatDto" + }, + "ugunstAksjonspunkt" : { + "type" : "boolean" + }, + "behandlingKoet" : { + "type" : "boolean" + } + } + }, + "FagsakFullDto" : { + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "fagsakYtelseType" : { + "type" : "string", + "enum" : [ "ES", "FP", "SVP", "-" ] + }, + "relasjonsRolleType" : { + "type" : "string", + "enum" : [ "EKTE", "BARN", "FARA", "MORA", "REPA", "MMOR", "ANPA", "-" ] + }, + "status" : { + "type" : "string", + "enum" : [ "OPPR", "UBEH", "LOP", "AVSLU" ] + }, + "aktørId" : { + "type" : "string" + }, + "sakSkalTilInfotrygd" : { + "type" : "boolean" + }, + "dekningsgrad" : { + "type" : "integer", + "format" : "int32" + }, + "bruker" : { + "$ref" : "#/components/schemas/PersonDto" + }, + "brukerManglerAdresse" : { + "type" : "boolean" + }, + "annenPart" : { + "$ref" : "#/components/schemas/PersonDto" + }, + "annenpartBehandling" : { + "$ref" : "#/components/schemas/AnnenPartBehandlingDto" + }, + "familiehendelse" : { + "$ref" : "#/components/schemas/SakHendelseDto" + }, + "fagsakMarkeringer" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FagsakMarkeringDto" + } + }, + "behandlingTypeKanOpprettes" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BehandlingOpprettingDto" + } + }, + "behandlinger" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FagsakBehandlingDto" + } + }, + "historikkinnslag" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/HistorikkinnslagDto" + } + }, + "notater" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FagsakNotatDto" + } + }, + "kontrollResultat" : { + "$ref" : "#/components/schemas/KontrollresultatDto" + }, + "harVergeIÅpenBehandling" : { + "type" : "boolean" + } + } + }, + "FagsakMarkeringDto" : { + "type" : "object", + "properties" : { + "fagsakMarkering" : { + "type" : "string", + "enum" : [ "EØS_BOSATT_NORGE", "BOSATT_UTLAND", "SAMMENSATT_KONTROLL", "DØD_DØDFØDSEL", "PRAKSIS_UTSETTELSE", "BARE_FAR_RETT", "SELVSTENDIG_NÆRING", "HASTER" ] + }, + "kortNavn" : { + "type" : "string" + } + } + }, + "FagsakNotatDto" : { + "type" : "object", + "properties" : { + "opprettetAv" : { + "type" : "string" + }, + "opprettetTidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "notat" : { + "type" : "string" + } + } + }, + "FaresignalgruppeDto" : { + "type" : "object", + "properties" : { + "faresignaler" : { + "type" : "array", + "items" : { + "type" : "string" + } + } + } + }, + "HistorikkAktørDto" : { + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "enum" : [ "BESL", "SBH", "SOKER", "ARBEIDSGIVER", "VL", "-" ] + }, + "ident" : { + "type" : "string" + } + } + }, + "HistorikkInnslagDokumentLinkDto" : { + "type" : "object", + "properties" : { + "tag" : { + "type" : "string" + }, + "journalpostId" : { + "type" : "string" + }, + "dokumentId" : { + "type" : "string" + }, + "utgått" : { + "type" : "boolean" + } + } + }, + "HistorikkinnslagDto" : { + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "aktør" : { + "$ref" : "#/components/schemas/HistorikkAktørDto" + }, + "skjermlenke" : { + "type" : "string", + "enum" : [ "ANKE_MERKNADER", "ANKE_VURDERING", "BEREGNING_ENGANGSSTOENAD", "BEREGNING_FORELDREPENGER", "BESTEBEREGNING", "FAKTA_FOR_OMSORG", "FAKTA_FOR_OPPTJENING", "FAKTA_OM_ADOPSJON", "FAKTA_OM_ARBEIDSFORHOLD", "FAKTA_OM_ARBEIDSFORHOLD_INNTEKTSMELDING", "FAKTA_OM_ARBEIDSFORHOLD_PERMISJON", "FAKTA_OM_BEREGNING", "FAKTA_OM_FOEDSEL", "FAKTA_OM_FORDELING", "FAKTA_OM_MEDLEMSKAP", "FAKTA_OM_OMSORG_OG_FORELDREANSVAR", "FAKTA_OM_OPPTJENING", "FAKTA_OM_SIMULERING", "FAKTA_OM_UTTAK", "FAKTA_OM_AKTIVITETSKRAV", "FAKTA_OMSORG_OG_RETT", "FAKTA_OM_VERGE", "FORMKRAV_KLAGE_KA", "FORMKRAV_KLAGE_NFP", "KLAGE_BEH_NFP", "KLAGE_BEH_NK", "KONTROLL_AV_SAKSOPPLYSNINGER", "OPPLYSNINGSPLIKT", "PUNKT_FOR_ADOPSJON", "PUNKT_FOR_FOEDSEL", "PUNKT_FOR_FORELDREANSVAR", "PUNKT_FOR_MEDLEMSKAP", "PUNKT_FOR_MEDLEMSKAP_LØPENDE", "PUNKT_FOR_OMSORG", "PUNKT_FOR_OPPTJENING", "PUNKT_FOR_SVANGERSKAPSPENGER", "PUNKT_FOR_SVP_INNGANG", "SOEKNADSFRIST", "TILKJENT_YTELSE", "-", "UTLAND", "UTTAK", "VEDTAK", "VURDER_FARESIGNALER", "FAKTA_OM_UTTAK_DOKUMENTASJON", "FAKTA_UTTAK" ] + }, + "opprettetTidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "dokumenter" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/HistorikkInnslagDokumentLinkDto" + } + }, + "tittel" : { + "type" : "string" + }, + "linjer" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Linje" + } + } + } + }, + "KontrollresultatDto" : { + "type" : "object", + "properties" : { + "kontrollresultat" : { + "type" : "string", + "enum" : [ "HOY", "IKKE_HOY", "IKKE_KLASSIFISERT", "-" ] + }, + "iayFaresignaler" : { + "$ref" : "#/components/schemas/FaresignalgruppeDto" + }, + "medlFaresignaler" : { + "$ref" : "#/components/schemas/FaresignalgruppeDto" + }, + "faresignalVurdering" : { + "type" : "string", + "enum" : [ "INNVIRKNING", "INNVILGET_REDUSERT", "INNVILGET_UENDRET", "AVSLAG_FARESIGNAL", "AVSLAG_ANNET", "INGEN_INNVIRKNING", "-" ] + } + } + }, + "Linje" : { + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "enum" : [ "TEKST", "LINJESKIFT" ] + }, + "tekst" : { + "type" : "string" + } + } + }, + "SakHendelseDto" : { + "type" : "object", + "properties" : { + "hendelseType" : { + "type" : "string", + "enum" : [ "ADPSJN", "OMSRGO", "FODSL", "TERM", "-" ] + }, + "hendelseDato" : { + "type" : "string", + "format" : "date" + }, + "antallBarn" : { + "type" : "integer", + "format" : "int32" + }, + "dødfødsel" : { + "type" : "boolean" + } + } + }, + "TotrinnsBeregningDto" : { + "type" : "object", + "properties" : { + "fastsattVarigEndringNaering" : { + "type" : "boolean" + }, + "faktaOmBeregningTilfeller" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "VURDER_TIDSBEGRENSET_ARBEIDSFORHOLD", "VURDER_SN_NY_I_ARBEIDSLIVET", "VURDER_NYOPPSTARTET_FL", "FASTSETT_MAANEDSINNTEKT_FL", "FASTSETT_BG_ARBEIDSTAKER_UTEN_INNTEKTSMELDING", "VURDER_LØNNSENDRING", "FASTSETT_MÅNEDSLØNN_ARBEIDSTAKER_UTEN_INNTEKTSMELDING", "VURDER_AT_OG_FL_I_SAMME_ORGANISASJON", "FASTSETT_BESTEBEREGNING_FØDENDE_KVINNE", "VURDER_ETTERLØNN_SLUTTPAKKE", "FASTSETT_ETTERLØNN_SLUTTPAKKE", "VURDER_MOTTAR_YTELSE", "VURDER_BESTEBEREGNING", "VURDER_MILITÆR_SIVILTJENESTE", "VURDER_REFUSJONSKRAV_SOM_HAR_KOMMET_FOR_SENT", "FASTSETT_BG_KUN_YTELSE", "TILSTØTENDE_YTELSE", "FASTSETT_ENDRET_BEREGNINGSGRUNNLAG", "-" ] + } + } + } + }, + "TotrinnskontrollAksjonspunkterDto" : { + "type" : "object", + "properties" : { + "aksjonspunktKode" : { + "type" : "string" + }, + "opptjeningAktiviteter" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/TotrinnskontrollAktivitetDto" + } + }, + "beregningDto" : { + "$ref" : "#/components/schemas/TotrinnsBeregningDto" + }, + "besluttersBegrunnelse" : { + "type" : "string" + }, + "totrinnskontrollGodkjent" : { + "type" : "boolean" + }, + "vurderPaNyttArsaker" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "FEIL_FAKTA", "FEIL_LOV", "SKJØNN", "UTREDNING", "SAKSFLYT", "BEGRUNNELSE", "-", "ANNET", "FEIL_REGEL" ] + } + }, + "uttakPerioder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/UttakPeriodeEndringDto" + } + } + } + }, + "TotrinnskontrollAktivitetDto" : { + "type" : "object", + "properties" : { + "aktivitetType" : { + "type" : "string" + }, + "erEndring" : { + "type" : "boolean" + }, + "godkjent" : { + "type" : "boolean" + }, + "arbeidsgiverReferanse" : { + "type" : "string" + }, + "arbeidsgiverNavn" : { + "type" : "string" + }, + "orgnr" : { + "type" : "string" + }, + "privatpersonFødselsdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "TotrinnskontrollSkjermlenkeContextDto" : { + "type" : "object", + "properties" : { + "skjermlenkeType" : { + "type" : "string" + }, + "totrinnskontrollAksjonspunkter" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/TotrinnskontrollAksjonspunkterDto" + } + } + } + }, + "UttakPeriodeEndringDto" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "erSlettet" : { + "type" : "boolean" + }, + "erEndret" : { + "type" : "boolean" + }, + "erLagtTil" : { + "type" : "boolean" + } + } + }, + "LagreFagsakNotatDto" : { + "required" : [ "notat", "saksnummer" ], + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "notat" : { + "maxLength" : 1001, + "minLength" : 0, + "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", + "type" : "string" + } + } + }, + "SokefeltDto" : { + "required" : [ "searchString" ], + "type" : "object", + "properties" : { + "searchString" : { + "type" : "string" + } + } + }, + "AvklartBarnDto" : { + "type" : "object", + "properties" : { + "fodselsdato" : { + "type" : "string", + "format" : "date" + }, + "dodsdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "AvklartDataAdopsjonDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/FamiliehendelseDto" + }, { + "type" : "object", + "properties" : { + "mannAdoptererAlene" : { + "type" : "boolean" + }, + "ektefellesBarn" : { + "type" : "boolean" + }, + "omsorgsovertakelseDato" : { + "type" : "string", + "format" : "date" + }, + "ankomstNorge" : { + "type" : "string", + "format" : "date" + }, + "adopsjonFodelsedatoer" : { + "type" : "object", + "additionalProperties" : { + "type" : "string", + "format" : "date" + } + }, + "fødselsdatoer" : { + "type" : "object", + "additionalProperties" : { + "type" : "string", + "format" : "date" + } + } + } + } ] + }, + "AvklartDataFodselDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/FamiliehendelseDto" + }, { + "type" : "object", + "properties" : { + "dokumentasjonForligger" : { + "type" : "boolean", + "writeOnly" : true + }, + "dokumentasjonForeligger" : { + "type" : "boolean" + }, + "avklartBarn" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AvklartBarnDto" + } + }, + "brukAntallBarnFraTps" : { + "type" : "boolean" + }, + "termindato" : { + "type" : "string", + "format" : "date" + }, + "antallBarnTermin" : { + "type" : "integer", + "format" : "int32" + }, + "utstedtdato" : { + "type" : "string", + "format" : "date" + }, + "morForSykVedFodsel" : { + "type" : "boolean" + }, + "vedtaksDatoSomSvangerskapsuke" : { + "type" : "integer", + "format" : "int64" + } + } + } ] + }, + "AvklartDataOmsorgDto" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/FamiliehendelseDto" + }, { + "type" : "object", + "properties" : { + "omsorgsovertakelseDato" : { + "type" : "string", + "format" : "date" + }, + "vilkarType" : { + "type" : "string", + "enum" : [ "FP_VK_5", "FP_VK_8", "FP_VK_33", "-" ] + }, + "antallBarnTilBeregning" : { + "type" : "integer", + "format" : "int32" + }, + "foreldreansvarDato" : { + "type" : "string", + "format" : "date" + }, + "fødselsdatoer" : { + "type" : "object", + "additionalProperties" : { + "type" : "string", + "format" : "date" + } + } + } + } ] + }, + "FamiliehendelseDto" : { + "type" : "object", + "properties" : { + "soknadType" : { + "type" : "string", + "enum" : [ "ST-001", "ST-002" ] + }, + "skjaringstidspunkt" : { + "type" : "string", + "format" : "date" + } + } + }, + "FamilieHendelseGrunnlagDto" : { + "type" : "object", + "properties" : { + "oppgitt" : { + "$ref" : "#/components/schemas/FamiliehendelseDto" + }, + "gjeldende" : { + "$ref" : "#/components/schemas/FamiliehendelseDto" + }, + "register" : { + "$ref" : "#/components/schemas/FamiliehendelseDto" + } + } + }, + "FagsakInfomasjonDto" : { + "required" : [ "aktørId", "behandlingstemaOffisiellKode" ], + "type" : "object", + "properties" : { + "aktørId" : { + "type" : "string" + }, + "behandlingstemaOffisiellKode" : { + "maxLength" : 8, + "minLength" : 0, + "pattern" : "^[a-zA-Z0-9_-æøåÆØÅ]*$", + "type" : "string" + } + } + }, + "FamiliehendelseInfoDto" : { + "type" : "object", + "properties" : { + "familiehendelseDato" : { + "type" : "string", + "format" : "date" + }, + "familihendelseType" : { + "type" : "string", + "enum" : [ "FØDSEL", "TERMIN", "ADOPSJON", "OMSORG" ] + } + } + }, + "SakInfoV2Dto" : { + "required" : [ "opprettetDato", "saksnummer", "status", "ytelseType" ], + "type" : "object", + "properties" : { + "saksnummer" : { + "$ref" : "#/components/schemas/SaksnummerDto" + }, + "ytelseType" : { + "type" : "string", + "enum" : [ "ES", "FP", "SVP" ] + }, + "status" : { + "type" : "string", + "enum" : [ "UNDER_BEHANDLING", "LØPENDE", "AVSLUTTET" ] + }, + "familiehendelseInfoDto" : { + "$ref" : "#/components/schemas/FamiliehendelseInfoDto" + }, + "opprettetDato" : { + "type" : "string", + "format" : "date" + }, + "førsteUttaksdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "AktørIdDto" : { + "required" : [ "aktørId" ], + "type" : "object", + "properties" : { + "aktørId" : { + "type" : "string" + } + } + }, + "SakInntektsmeldingDto" : { + "required" : [ "bruker", "ytelse" ], + "type" : "object", + "properties" : { + "bruker" : { + "$ref" : "#/components/schemas/AktørIdDto" + }, + "ytelse" : { + "type" : "string", + "enum" : [ "FORELDREPENGER", "SVANGERSKAPSPENGER" ] + } + } + }, + "JournalpostKnyttningDto" : { + "required" : [ "journalpostIdDto", "saksnummerDto" ], + "type" : "object", + "properties" : { + "saksnummerDto" : { + "$ref" : "#/components/schemas/SaksnummerDto" + }, + "journalpostIdDto" : { + "$ref" : "#/components/schemas/JournalpostIdDto" + } + } + }, + "JournalpostMottakDto" : { + "required" : [ "behandlingstemaOffisiellKode", "journalpostId", "saksnummer" ], + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "journalpostId" : { + "type" : "string" + }, + "forsendelseId" : { + "type" : "string", + "format" : "uuid" + }, + "eksternReferanseId" : { + "pattern" : "^[\\p{L}\\p{N}\\p{P}]+$", + "type" : "string" + }, + "behandlingstemaOffisiellKode" : { + "maxLength" : 8, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*", + "type" : "string" + }, + "dokumentTypeIdOffisiellKode" : { + "maxLength" : 8, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*", + "type" : "string" + }, + "forsendelseMottatt" : { + "type" : "string", + "format" : "date" + }, + "forsendelseMottattTidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "dokumentKategoriOffisiellKode" : { + "maxLength" : 25, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*", + "type" : "string" + }, + "journalForendeEnhet" : { + "maxLength" : 5, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*", + "type" : "string" + }, + "payloadXml" : { + "maxLength" : 392000, + "minLength" : 0, + "pattern" : "^[a-zA-Z0-9\\-_=]*$", + "type" : "string" + }, + "payloadLength" : { + "maximum" : 196000, + "minimum" : 1, + "type" : "integer", + "format" : "int32" + } + } + }, + "OpprettSakDto" : { + "required" : [ "aktørId", "behandlingstemaOffisiellKode" ], + "type" : "object", + "properties" : { + "journalpostId" : { + "type" : "string" + }, + "behandlingstemaOffisiellKode" : { + "maxLength" : 8, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*$", + "type" : "string" + }, + "aktørId" : { + "type" : "string" + } + } + }, + "OpprettSakV2Dto" : { + "required" : [ "aktørId", "ytelseType" ], + "type" : "object", + "properties" : { + "journalpostId" : { + "type" : "string" + }, + "ytelseType" : { + "type" : "string", + "enum" : [ "ES", "FP", "SVP" ] + }, + "aktørId" : { + "type" : "string" + } + } + }, + "BehandlendeFagsystemDto" : { + "type" : "object", + "properties" : { + "behandlesIVedtaksløsningen" : { + "type" : "boolean" + }, + "sjekkMotInfotrygd" : { + "type" : "boolean" + }, + "manuellVurdering" : { + "type" : "boolean" + }, + "saksnummerDto" : { + "$ref" : "#/components/schemas/SaksnummerDto" + } + } + }, + "VurderFagsystemDto" : { + "required" : [ "aktørId", "behandlingstemaOffisiellKode", "strukturertSøknad" ], + "type" : "object", + "properties" : { + "journalpostId" : { + "type" : "string" + }, + "strukturertSøknad" : { + "type" : "boolean" + }, + "aktørId" : { + "type" : "string" + }, + "behandlingstemaOffisiellKode" : { + "maxLength" : 8, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*$", + "type" : "string" + }, + "adopsjonsBarnFodselsdatoer" : { + "maxItems" : 9, + "minItems" : 1, + "type" : "array", + "items" : { + "type" : "string", + "format" : "date" + } + }, + "barnTermindato" : { + "type" : "string", + "format" : "date" + }, + "barnFodselsdato" : { + "type" : "string", + "format" : "date" + }, + "omsorgsovertakelsedato" : { + "type" : "string", + "format" : "date" + }, + "årsakInnsendingInntektsmelding" : { + "maxLength" : 7, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9 .'AaÁáBbCcČčDdĐđEeFfGgHhIiJjKkLlMmNnŊŋOoPpRrSsŠšTtŦŧUuVvZzŽžéôèÉöüäÖÜÄ]*$", + "type" : "string" + }, + "saksnummer" : { + "maxLength" : 30, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*$", + "type" : "string" + }, + "annenPart" : { + "type" : "string" + }, + "virksomhetsnummer" : { + "pattern" : "\\d{9}|\\d{13}", + "type" : "string" + }, + "arbeidsgiverAktørId" : { + "type" : "string" + }, + "arbeidsforholdsid" : { + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9 .',AaÁáBbCcČčDdĐđEeFfGgHhIiJjKkLlMmNnŊŋOoPpRrSsŠšTtŦŧUuVvZzŽžéôèÉöüäÖÜÄ]*$", + "type" : "string" + }, + "forsendelseMottatt" : { + "type" : "string", + "format" : "date" + }, + "forsendelseMottattTidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "startDatoForeldrepengerInntektsmelding" : { + "type" : "string", + "format" : "date" + }, + "dokumentTypeIdOffisiellKode" : { + "maxLength" : 8, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*$", + "type" : "string" + }, + "dokumentKategoriOffisiellKode" : { + "maxLength" : 25, + "minLength" : 0, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*$", + "type" : "string" + }, + "brukerRolle" : { + "type" : "string", + "enum" : [ "MOR", "FAR", "MEDMOR" ] + } + } + }, + "BeregningSatsDto" : { + "required" : [ "satsFom", "satsType", "satsVerdi" ], + "type" : "object", + "properties" : { + "satsType" : { + "pattern" : "^(?:ENGANG|GRUNNBELØP|GSNITT)$", + "type" : "string", + "enum" : [ "ENGANG", "GRUNNBELØP", "GSNITT", "-", "ENGANG", "GRUNNBELØP", "GSNITT" ] + }, + "satsFom" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "format" : "date" + }, + "satsTom" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "format" : "date" + }, + "satsVerdi" : { + "maximum" : 9223372036854775807, + "minimum" : 75000, + "type" : "integer", + "format" : "int64" + } + } + }, + "EndreInntektsmeldingDto" : { + "required" : [ "behandlingUuid", "journalpostId" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "journalpostId" : { + "type" : "string" + }, + "refusjonOpphørFom" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "format" : "date" + }, + "startdatoPermisjon" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "format" : "date" + }, + "refusjonPrMndFraStart" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "refusjonsendringer" : { + "maxItems" : 20, + "minItems" : 0, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/RefusjonsendringDto" + } + } + } + }, + "RefusjonsendringDto" : { + "required" : [ "beløp", "fom" ], + "type" : "object", + "properties" : { + "fom" : { + "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", + "type" : "string", + "format" : "date" + }, + "beløp" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + }, + "ByttAktørRequestDto" : { + "required" : [ "gyldigAktørId", "utgåttAktørId" ], + "type" : "object", + "properties" : { + "utgåttAktørId" : { + "type" : "string" + }, + "gyldigAktørId" : { + "type" : "string" + } + } + }, + "KvitteringDto" : { + "required" : [ "behandlingUuid", "fagsystemId", "maksDato", "oppdaterProsessTask" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "fagsystemId" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "maksDato" : { + "type" : "string", + "format" : "date" + }, + "oppdaterProsessTask" : { + "type" : "boolean" + } + } + }, + "K27PatchDto" : { + "required" : [ "behandlingUuid", "fagsystemId", "maksDato" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "fagsystemId" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + }, + "maksDato" : { + "type" : "string", + "format" : "date" + } + } + }, + "OppdragPatchDto" : { + "required" : [ "behandingUuid", "brukerErMottaker", "fagsystemId", "kodeEndring", "oppdragslinjer" ], + "type" : "object", + "properties" : { + "behandingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "brukerErMottaker" : { + "type" : "boolean" + }, + "arbeidsgiverOrgnr" : { + "maxLength" : 9, + "minLength" : 9, + "pattern" : "^\\d*$", + "type" : "string" + }, + "kodeEndring" : { + "pattern" : "^UEND$|^ENDR$|^NY$", + "type" : "string" + }, + "fagsystemId" : { + "maximum" : 300000000000, + "minimum" : 10000000000, + "type" : "integer", + "format" : "int64" + }, + "oppdragslinjer" : { + "maxItems" : 20, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OppdragslinjePatchDto" + } + }, + "bruk-ompostering116" : { + "type" : "boolean" + }, + "omposter-fom" : { + "type" : "string", + "format" : "date" + } + } + }, + "OppdragslinjePatchDto" : { + "required" : [ "delytelseId", "fom", "kodeEndring", "kodeKlassifik", "sats", "satsType", "tom" ], + "type" : "object", + "properties" : { + "kodeEndring" : { + "pattern" : "^(NY|ENDR)$", + "type" : "string" + }, + "opphoerFom" : { + "type" : "string", + "format" : "date" + }, + "kodeKlassifik" : { + "pattern" : "^((FP(AD|SV)?(ATORD|ATFRI|SND-OP|ATAL|ATSJO|SNDDM-OP|SNDJB-OP|SNDFI|REFAG-IOP|REFAGFER-IOP))|FPATFER|FPADATFER|FPSVATFER|FPENFOD-OP|FPENAD-OP)$", + "type" : "string" + }, + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "sats" : { + "maximum" : 100000, + "minimum" : 1, + "type" : "integer", + "format" : "int64" + }, + "satsType" : { + "pattern" : "^(ENG|DAG)$", + "type" : "string" + }, + "delytelseId" : { + "maximum" : 300000000000000, + "minimum" : 10000000000000, + "type" : "integer", + "format" : "int64" + }, + "refDelytelseId" : { + "maximum" : 300000000000000, + "minimum" : 10000000000000, + "type" : "integer", + "format" : "int64" + }, + "refFagsystemId" : { + "maximum" : 300000000000, + "minimum" : 10000000000, + "type" : "integer", + "format" : "int64" + } + } + }, + "OppgittAnnenAktivitetDto" : { + "required" : [ "arbeidType", "periode" ], + "type" : "object", + "properties" : { + "periode" : { + "$ref" : "#/components/schemas/Periode" + }, + "arbeidType" : { + "type" : "string", + "enum" : [ "ETTERLØNN_SLUTTPAKKE", "FORENKLET_OPPGJØRSORDNING", "FRILANSER", "FRILANSER_OPPDRAGSTAKER", "LØNN_UNDER_UTDANNING", "MARITIMT_ARBEIDSFORHOLD", "MILITÆR_ELLER_SIVILTJENESTE", "ORDINÆRT_ARBEIDSFORHOLD", "PENSJON_OG_ANDRE_TYPER_YTELSER_UTEN_ANSETTELSESFORHOLD", "NÆRING", "UTENLANDSK_ARBEIDSFORHOLD", "VENTELØNN_VARTPENGER", "VANLIG", "-" ] + } + } + }, + "OppgittArbeidsforholdDto" : { + "required" : [ "arbeidType", "landkode", "periode" ], + "type" : "object", + "properties" : { + "periode" : { + "$ref" : "#/components/schemas/Periode" + }, + "arbeidType" : { + "type" : "string", + "enum" : [ "ETTERLØNN_SLUTTPAKKE", "FORENKLET_OPPGJØRSORDNING", "FRILANSER", "FRILANSER_OPPDRAGSTAKER", "LØNN_UNDER_UTDANNING", "MARITIMT_ARBEIDSFORHOLD", "MILITÆR_ELLER_SIVILTJENESTE", "ORDINÆRT_ARBEIDSFORHOLD", "PENSJON_OG_ANDRE_TYPER_YTELSER_UTEN_ANSETTELSESFORHOLD", "NÆRING", "UTENLANDSK_ARBEIDSFORHOLD", "VENTELØNN_VARTPENGER", "VANLIG", "-" ] + }, + "erUtenlandskInntekt" : { + "type" : "boolean" + }, + "landkode" : { + "type" : "string" + }, + "inntekt" : { + "maximum" : 9999999999.00, + "exclusiveMaximum" : false, + "minimum" : 0.00, + "exclusiveMinimum" : false, + "type" : "number" + }, + "virksomhetNavn" : { + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + } + } + }, + "OppgittEgenNæringDto" : { + "required" : [ "landkode", "periode" ], + "type" : "object", + "properties" : { + "periode" : { + "$ref" : "#/components/schemas/Periode" + }, + "virksomhet" : { + "$ref" : "#/components/schemas/Organisasjon" + }, + "virksomhetType" : { + "type" : "string", + "enum" : [ "DAGMAMMA", "FISKE", "JORDBRUK_SKOGBRUK", "ANNEN", "-" ] + }, + "regnskapsførerNavn" : { + "maxLength" : 400, + "minLength" : 0, + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "regnskapsførerTlf" : { + "maxLength" : 100, + "minLength" : 0, + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "virksomhetNavn" : { + "maxLength" : 100, + "minLength" : 0, + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "landkode" : { + "type" : "string" + }, + "endringDato" : { + "type" : "string", + "format" : "date" + }, + "erVarigEndring" : { + "type" : "boolean" + }, + "endringBegrunnelse" : { + "maxLength" : 10000, + "minLength" : 0, + "type" : "string" + }, + "bruttoInntekt" : { + "minimum" : 0.00, + "exclusiveMinimum" : false, + "type" : "number" + }, + "erNyoppstartet" : { + "type" : "boolean" + }, + "erNærRelasjon" : { + "type" : "boolean" + }, + "erNyIArbeidslivet" : { + "type" : "boolean" + } + } + }, + "OppgittFrilansDto" : { + "required" : [ "frilansoppdrag" ], + "type" : "object", + "properties" : { + "harInntektFraFosterhjem" : { + "type" : "boolean" + }, + "erNyoppstartet" : { + "type" : "boolean" + }, + "erNærRelasjon" : { + "type" : "boolean" + }, + "frilansoppdrag" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OppgittFrilansoppdragDto" + } + } + } + }, + "OppgittFrilansoppdragDto" : { + "required" : [ "periode" ], + "type" : "object", + "properties" : { + "periode" : { + "$ref" : "#/components/schemas/Periode" + }, + "oppdragsgiver" : { + "maxLength" : 100, + "minLength" : 0, + "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", + "type" : "string" + }, + "inntekt" : { + "minimum" : 0.00, + "exclusiveMinimum" : false, + "type" : "number" + } + } + }, + "OppgittOpptjeningDto" : { + "required" : [ "eksternReferanse", "opprettetTidspunkt" ], + "type" : "object", + "properties" : { + "journalpostId" : { + "type" : "string" + }, + "innsendingstidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "eksternReferanse" : { + "type" : "string" + }, + "opprettetTidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "arbeidsforhold" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OppgittArbeidsforholdDto" + } + }, + "egenNæring" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OppgittEgenNæringDto" + } + }, + "annenAktivitet" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OppgittAnnenAktivitetDto" + } + }, + "frilans" : { + "$ref" : "#/components/schemas/OppgittFrilansDto" + } + } + }, + "Organisasjon" : { + "required" : [ "ident" ], + "type" : "object", + "properties" : { + "ident" : { + "pattern" : "^\\d{9}+$", + "type" : "string" + } + } + }, + "ProsessTaskIdDto" : { + "required" : [ "prosessTaskId" ], + "type" : "object", + "properties" : { + "prosessTaskId" : { + "maximum" : 9223372036854775807, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + }, + "InfotrygdRestanseDto" : { + "type" : "object", + "properties" : { + "fnr" : { + "type" : "string" + }, + "valg" : { + "type" : "string" + }, + "type" : { + "type" : "string" + }, + "registrert" : { + "type" : "string", + "format" : "date" + }, + "mottatt" : { + "type" : "string", + "format" : "date" + }, + "vedtatt" : { + "type" : "string", + "format" : "date" + }, + "reellEnhet" : { + "type" : "string" + }, + "behandlendeEnhet" : { + "type" : "string" + } + } + }, + "TaskInput" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "ytelseType" : { + "type" : "string", + "enum" : [ "ES", "FP", "SVP", "-" ] + }, + "delayBetween" : { + "maximum" : 60, + "minimum" : 0, + "type" : "integer", + "format" : "int32" + } + } + }, + "AnnenForelder" : { + "required" : [ "aktørId" ], + "type" : "object", + "properties" : { + "aktørId" : { + "type" : "string" + }, + "saksnummer" : { + "type" : "string" + }, + "ytelseType" : { + "type" : "string", + "enum" : [ "FORELDREPENGER", "SVANGERSKAPSPENGER", "ENGANGSSTØNAD" ] + }, + "saksrolle" : { + "type" : "string", + "enum" : [ "MOR", "FAR", "MEDMOR", "UKJENT" ] + } + } + }, + "Barn" : { + "required" : [ "fødselsdato" ], + "type" : "object", + "properties" : { + "aktørId" : { + "type" : "string" + }, + "fødselsdato" : { + "type" : "string", + "format" : "date" + }, + "dødsdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "Beregning" : { + "required" : [ "fastsatt", "grunnbeløp", "hjemmel", "årsbeløp" ], + "type" : "object", + "properties" : { + "grunnbeløp" : { + "type" : "number" + }, + "årsbeløp" : { + "$ref" : "#/components/schemas/BeregningÅrsbeløp" + }, + "andeler" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/BeregningAndel" + } + }, + "næringOrgNr" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "type" : "string" + } + }, + "hjemmel" : { + "type" : "string", + "enum" : [ "ARBEID", "NÆRING", "FRILANS", "ARBEID_FRILANS", "ARBEID_NÆRING", "NÆRING_FRILANS", "ARBEID_NÆRING_FRILANS", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "BESTEBEREGNING", "MILITÆR_SIVIL", "ANNEN" ] + }, + "fastsatt" : { + "type" : "string", + "enum" : [ "AUTOMATISK", "SKJØNN" ] + } + } + }, + "BeregningAndel" : { + "type" : "object", + "properties" : { + "aktivitet" : { + "type" : "string", + "enum" : [ "ARBEIDSAVKLARINGSPENGER", "ARBEIDSTAKER", "DAGPENGER", "FRILANSER", "MILITÆR_SIVILTJENESTE", "SELVSTENDIG_NÆRINGSDRIVENDE", "YTELSE" ] + }, + "arbeidsgiver" : { + "type" : "string" + }, + "årsbeløp" : { + "$ref" : "#/components/schemas/BeregningÅrsbeløp" + } + } + }, + "BeregningÅrsbeløp" : { + "type" : "object", + "properties" : { + "brutto" : { + "type" : "number" + }, + "avkortet" : { + "type" : "number" + }, + "redusert" : { + "type" : "number" + }, + "dagsats" : { + "type" : "integer", + "format" : "int64" + } + } + }, + "FamilieHendelse" : { + "type" : "object", + "properties" : { + "fødselsdato" : { + "type" : "string", + "format" : "date" + }, + "termindato" : { + "type" : "string", + "format" : "date" + }, + "antallBarn" : { + "type" : "integer", + "format" : "int32" + }, + "omsorgsovertakelse" : { + "type" : "string", + "format" : "date" + } + } + }, + "ForeldrepengerRettigheter" : { + "required" : [ "dekningsgrad", "rettighetType", "stønadskonti" ], + "type" : "object", + "properties" : { + "dekningsgrad" : { + "type" : "integer", + "format" : "int32" + }, + "rettighetType" : { + "type" : "string", + "enum" : [ "ALENEOMSORG", "BARE_SØKER_RETT", "BEGGE_RETT", "BEGGE_RETT_EØS" ] + }, + "stønadskonti" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Stønadskonto" + } + }, + "stønadsutvidelser" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Stønadsutvidelse" + } + } + } + }, + "Gradering" : { + "type" : "object", + "properties" : { + "prosent" : { + "type" : "number" + }, + "uttakAktivitet" : { + "$ref" : "#/components/schemas/UttakAktivitet" + } + } + }, + "Stønadskonto" : { + "required" : [ "maksdager", "restdager", "type" ], + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "enum" : [ "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "MØDREKVOTE", "FELLESPERIODE", "FEDREKVOTE" ] + }, + "maksdager" : { + "type" : "number" + }, + "restdager" : { + "type" : "number" + }, + "minsterett" : { + "type" : "number" + } + } + }, + "StønadsstatistikkUtbetalingPeriode" : { + "required" : [ "dagsats", "fom", "inntektskategori", "mottaker", "tom", "utbetalingsgrad" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "inntektskategori" : { + "type" : "string", + "enum" : [ "ARBEIDSTAKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "SJØMANN", "FRILANSER", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGMAMMA", "JORDBRUKER", "FISKER" ] + }, + "arbeidsgiver" : { + "type" : "string" + }, + "mottaker" : { + "type" : "string", + "enum" : [ "BRUKER", "ARBEIDSGIVER" ] + }, + "dagsats" : { + "type" : "integer", + "format" : "int32" + }, + "utbetalingsgrad" : { + "type" : "number" + } + } + }, + "StønadsstatistikkUttakPeriode" : { + "required" : [ "fom", "rettighetType", "tom", "trekkdager" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "type" : { + "type" : "string", + "enum" : [ "UTTAK", "UTSETTELSE", "AVSLAG" ] + }, + "stønadskontoType" : { + "type" : "string", + "enum" : [ "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "MØDREKVOTE", "FELLESPERIODE", "FEDREKVOTE" ] + }, + "rettighetType" : { + "type" : "string", + "enum" : [ "ALENEOMSORG", "BARE_SØKER_RETT", "BEGGE_RETT", "BEGGE_RETT_EØS" ] + }, + "forklaring" : { + "type" : "string", + "enum" : [ "UTSETTELSE_FERIE", "UTSETTELSE_ARBEID", "UTSETTELSE_INNLEGGELSE", "UTSETTELSE_BARNINNLAGT", "UTSETTELSE_SYKDOM", "UTSETTELSE_HVOVELSE", "UTSETTELSE_NAVTILTAK", "OVERFØRING_ANNEN_PART_SYKDOM", "OVERFØRING_ANNEN_PART_INNLAGT", "OVERFØRING_ALENEOMSORG", "OVERFØRING_BARE_SØKER_RETT", "AKTIVITETSKRAV_ARBEID", "AKTIVITETSKRAV_UTDANNING", "AKTIVITETSKRAV_ARBEIDUTDANNING", "AKTIVITETSKRAV_SYKDOM", "AKTIVITETSKRAV_INNLEGGELSE", "AKTIVITETSKRAV_INTRODUKSJONSPROGRAM", "AKTIVITETSKRAV_KVALIFISERINGSPROGRAM", "MINSTERETT", "FLERBARNSDAGER", "SAMTIDIG_MØDREKVOTE", "AVSLAG_ANNET", "AVSLAG_AKTIVITETSKRAV", "AVSLAG_SØKNADSFRIST", "AVSLAG_IKKE_SØKT", "AVSLAG_UTSETTELSE", "AVSLAG_UTSETTELSE_TILBAKE_I_TID", "AVSLAG_PLEIEPENGER", "AVSLAG_STØNADSPERIODE_UTLØPT", "AVSLAG_VILKÅR" ] + }, + "søknadsdato" : { + "type" : "string", + "format" : "date" + }, + "erUtbetaling" : { + "type" : "boolean" + }, + "virkedager" : { + "type" : "integer", + "format" : "int32" + }, + "trekkdager" : { + "type" : "number" + }, + "gradering" : { + "$ref" : "#/components/schemas/Gradering" + }, + "samtidigUttakProsent" : { + "type" : "number" + } + } + }, + "StønadsstatistikkVedtak" : { + "required" : [ "behandlingUuid", "lovVersjon", "saksrolle", "søker", "søknadsdato", "utbetalingsreferanse", "utlandsTilsnitt", "vedtaksresultat", "vedtakstidspunkt", "ytelseType" ], + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "fagsakId" : { + "type" : "integer", + "format" : "int64" + }, + "ytelseType" : { + "type" : "string", + "enum" : [ "FORELDREPENGER", "SVANGERSKAPSPENGER", "ENGANGSSTØNAD" ] + }, + "lovVersjon" : { + "type" : "string", + "enum" : [ "FORELDREPENGER_2019_01_01", "FORELDREPENGER_FRI_2021_10_01", "FORELDREPENGER_MINSTERETT_2022_08_02", "FORELDREPENGER_UTJEVNE80_2024_07_01", "FORELDREPENGER_MINSTERETT_2024_08_02", "ENGANGSSTØNAD_2019_01_01", "ENGANGSSTØNAD_MEDLEM_2024_10_01", "SVANGERSKAPSPENGER_2019_01_01" ] + }, + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "forrigeBehandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "revurderingÅrsak" : { + "type" : "string", + "enum" : [ "MANUELL", "UTTAKMANUELL", "KLAGE", "ETTERKONTROLL", "SØKNAD", "INNTEKTSMELDING", "FOLKEREGISTER", "PLEIEPENGER", "NYSAK", "ANNENFORELDER", "REGULERING", "PRAKSIS_UTSETTELSE" ] + }, + "søknadsdato" : { + "type" : "string", + "format" : "date" + }, + "skjæringstidspunkt" : { + "type" : "string", + "format" : "date" + }, + "vedtakstidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "vedtaksresultat" : { + "type" : "string", + "enum" : [ "INNVILGET", "AVSLAG", "OPPHØR" ] + }, + "vilkårIkkeOppfylt" : { + "type" : "string", + "enum" : [ "MEDLEMSKAP", "SØKNADSFRIST", "OPPLYSNINGSPLIKT", "SVANGERSKAPSPENGER", "ENGANGSSTØNAD", "FORELDREPENGER_GENERELL", "FORELDREPENGER_OPPTJENING", "FORELDREPENGER_BEREGNING", "FORELDREPENGER_UTTAK" ] + }, + "søker" : { + "type" : "string" + }, + "saksrolle" : { + "type" : "string", + "enum" : [ "MOR", "FAR", "MEDMOR", "UKJENT" ] + }, + "utlandsTilsnitt" : { + "type" : "string", + "enum" : [ "NASJONAL", "EØS_BOSATT_NORGE", "BOSATT_UTLAND" ] + }, + "annenForelder" : { + "$ref" : "#/components/schemas/AnnenForelder" + }, + "familieHendelse" : { + "$ref" : "#/components/schemas/FamilieHendelse" + }, + "beregning" : { + "$ref" : "#/components/schemas/Beregning" + }, + "utbetalingsreferanse" : { + "type" : "string" + }, + "behandlingId" : { + "type" : "integer", + "format" : "int64" + }, + "engangsstønadInnvilget" : { + "type" : "integer", + "format" : "int64" + }, + "foreldrepengerRettigheter" : { + "$ref" : "#/components/schemas/ForeldrepengerRettigheter" + }, + "uttaksperioder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/StønadsstatistikkUttakPeriode" + } + }, + "utbetalingssperioder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/StønadsstatistikkUtbetalingPeriode" + } + } + } + }, + "Stønadsutvidelse" : { + "required" : [ "type" ], + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "enum" : [ "FLERBARNSDAGER", "PREMATURDAGER" ] + }, + "dager" : { + "type" : "number" + } + } + }, + "MigreringTaskInput" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + } + } + }, + "FpSakInntektsmeldingDto" : { + "type" : "object", + "properties" : { + "erAktiv" : { + "type" : "boolean" + }, + "stillingsprosent" : { + "type" : "number" + }, + "inntektPrMnd" : { + "type" : "number" + }, + "refusjonPrMnd" : { + "type" : "number" + }, + "arbeidsgiverNavn" : { + "type" : "string" + }, + "arbeidsgiverIdent" : { + "type" : "string" + }, + "journalpostId" : { + "type" : "string" + }, + "mottattTidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "startDatoPermisjon" : { + "type" : "string", + "format" : "date" + }, + "bortfalteNaturalytelser" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Naturalytelse" + } + }, + "refusjonsperioder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Refusjon" + } + } + } + }, + "Naturalytelse" : { + "type" : "object", + "properties" : { + "fomDato" : { + "type" : "string", + "format" : "date" + }, + "tomDato" : { + "type" : "string", + "format" : "date" + }, + "beløpPerMnd" : { + "type" : "number" + }, + "type" : { + "type" : "string", + "enum" : [ "ELEKTRISK_KOMMUNIKASJON", "AKSJER_GRUNNFONDSBEVIS_TIL_UNDERKURS", "LOSJI", "KOST_DØGN", "BESØKSREISER_HJEMMET_ANNET", "KOSTBESPARELSE_I_HJEMMET", "RENTEFORDEL_LÅN", "BIL", "KOST_DAGER", "BOLIG", "SKATTEPLIKTIG_DEL_FORSIKRINGER", "FRI_TRANSPORT", "OPSJONER", "TILSKUDD_BARNEHAGEPLASS", "ANNET", "BEDRIFTSBARNEHAGEPLASS", "YRKEBIL_TJENESTLIGBEHOV_KILOMETER", "YRKEBIL_TJENESTLIGBEHOV_LISTEPRIS", "INNBETALING_TIL_UTENLANDSK_PENSJONSORDNING" ] + } + } + }, + "Aksjonspunkt" : { + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "enum" : [ "VENT_MANUELT_SATT", "VENT_FØDSEL", "VENT_KOMPLETT_SØKNAD", "VENT_REVURDERING", "VENT_TIDLIG_SØKNAD", "VENT_KØET_BEHANDLING", "VENT_SØKNAD", "VENT_INNTEKT_RAPPORTERINGSFRIST", "VENT_SISTE_AAP_ELLER_DP_MELDEKORT", "VENT_ETTERLYST_INNTEKTSMELDING", "VENT_ANKE_OVERSENDT_TIL_TRYGDERETTEN", "VENT_SYKEMELDING", "VENT_KABAL_KLAGE", "VENT_PÅ_KABAL_ANKE" ] + }, + "venteårsak" : { + "type" : "string", + "enum" : [ "ANKE_VENTER_PÅ_MERKNADER_FRA_BRUKER", "AVVENT_DOKUMTANSJON", "AVVENT_FØDSEL", "AVVENT_RESPONS_REVURDERING", "BRUKERTILBAKEMELDING", "UTLAND_TRYGD", "FOR_TIDLIG_SOKNAD", "UTVIDET_FRIST", "INNTEKT_RAPPORTERINGSFRIST", "MANGLENDE_SYKEMELDING", "MANGLENDE_INNTEKTSMELDING", "OPPTJENING_OPPLYSNINGER", "SISTE_AAP_ELLER_DP_MELDEKORT", "SENDT_INFORMASJONSBREV", "ÅPEN_BEHANDLING" ] + }, + "tidsfrist" : { + "type" : "string", + "format" : "date-time" + } + } + }, + "Aktivitet" : { + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS" ] + }, + "arbeidsgiver" : { + "type" : "string" + }, + "arbeidsforholdId" : { + "type" : "string" + }, + "arbeidsgiverNavn" : { + "type" : "string" + } + } + }, + "ArbeidsforholdUttak" : { + "type" : "object", + "properties" : { + "aktivitet" : { + "$ref" : "#/components/schemas/Aktivitet" + }, + "behovFom" : { + "type" : "string", + "format" : "date" + }, + "risikoFaktorer" : { + "type" : "string" + }, + "tiltak" : { + "type" : "string" + }, + "svpPerioder" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SvpPeriode" + } + }, + "oppholdsperioder" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OppholdPeriode" + } + }, + "ikkeOppfyltÅrsak" : { + "type" : "string", + "enum" : [ "ARBEIDSGIVER_KAN_TILRETTELEGGE", "ARBEIDSGIVER_KAN_TILRETTELEGGE_FREM_TIL_3_UKER_FØR_TERMIN", "ANNET" ] + } + } + }, + "EsSak" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/Sak" + }, { + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "aktørId" : { + "type" : "string" + }, + "familieHendelse" : { + "$ref" : "#/components/schemas/FamilieHendelse" + }, + "avsluttet" : { + "type" : "boolean" + }, + "aksjonspunkt" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Aksjonspunkt" + } + }, + "søknader" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Søknad" + } + }, + "vedtak" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Vedtak" + } + } + } + } ] + }, + "FpSak" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/Sak" + }, { + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "aktørId" : { + "type" : "string" + }, + "familieHendelse" : { + "$ref" : "#/components/schemas/FamilieHendelse" + }, + "avsluttet" : { + "type" : "boolean" + }, + "vedtak" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Vedtak" + } + }, + "oppgittAnnenPart" : { + "type" : "string" + }, + "aksjonspunkt" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Aksjonspunkt" + } + }, + "søknader" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Søknad" + } + }, + "brukerRolle" : { + "type" : "string", + "enum" : [ "MOR", "FAR", "MEDMOR", "UKJENT" ] + }, + "fødteBarn" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "type" : "string" + } + }, + "rettigheter" : { + "$ref" : "#/components/schemas/Rettigheter" + }, + "ønskerJustertUttakVedFødsel" : { + "type" : "boolean" + } + } + } ] + }, + "OppholdPeriode" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "årsak" : { + "type" : "string", + "enum" : [ "FERIE", "SYKEPENGER" ] + }, + "kilde" : { + "type" : "string", + "enum" : [ "SØKNAD", "SAKSBEHANDLER", "INNTEKTSMELDING" ] + } + } + }, + "Resultat" : { + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "enum" : [ "INNVILGET", "INNVILGET_GRADERING", "AVSLÅTT" ] + }, + "årsak" : { + "type" : "string", + "enum" : [ "ANNET", "AVSLAG_HULL_I_UTTAKSPLAN", "AVSLAG_UTSETTELSE_TILBAKE_I_TID", "INNVILGET_UTTAK_AVSLÅTT_GRADERING_TILBAKE_I_TID", "AVSLAG_FRATREKK_PLEIEPENGER" ] + }, + "aktiviteter" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/UttaksperiodeAktivitet" + } + }, + "trekkerMinsterett" : { + "type" : "boolean" + } + } + }, + "Rettigheter" : { + "type" : "object", + "properties" : { + "aleneomsorg" : { + "type" : "boolean" + }, + "morUføretrygd" : { + "type" : "boolean" + }, + "annenForelderTilsvarendeRettEØS" : { + "type" : "boolean" + } + } + }, + "Sak" : { + "required" : [ "type" ], + "type" : "object", + "properties" : { + "type" : { + "type" : "string" + } + }, + "discriminator" : { + "propertyName" : "type" + } + }, + "SvpPeriode" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "tilretteleggingType" : { + "type" : "string", + "enum" : [ "HEL", "DELVIS", "INGEN" ] + }, + "arbeidstidprosent" : { + "type" : "number" + }, + "utbetalingsgrad" : { + "type" : "number" + }, + "resultatÅrsak" : { + "type" : "string", + "enum" : [ "INNVILGET", "AVSLAG_SØKNADSFRIST", "AVSLAG_ANNET", "AVSLAG_INNGANGSVILKÅR", "OPPHØR_OVERGANG_FORELDREPENGER", "OPPHØR_FØDSEL", "OPPHØR_TIDSPERIODE_FØR_TERMIN", "OPPHØR_OPPHOLD_I_YTELSEN", "OPPHØR_ANNET" ] + } + } + }, + "SvpSak" : { + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/Sak" + }, { + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "aktørId" : { + "type" : "string" + }, + "familieHendelse" : { + "$ref" : "#/components/schemas/FamilieHendelse" + }, + "avsluttet" : { + "type" : "boolean" + }, + "aksjonspunkt" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Aksjonspunkt" + } + }, + "søknader" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Søknad" + } + }, + "vedtak" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Vedtak" + } + } + } + } ] + }, + "Tilrettelegging" : { + "type" : "object", + "properties" : { + "aktivitet" : { + "$ref" : "#/components/schemas/Aktivitet" + }, + "behovFom" : { + "type" : "string", + "format" : "date" + }, + "risikoFaktorer" : { + "type" : "string" + }, + "tiltak" : { + "type" : "string" + }, + "perioder" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Periode" + } + }, + "oppholdsperioder" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OppholdPeriode" + } + } + } + }, + "UttakAktivitet" : { + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] + }, + "arbeidsgiver" : { + "type" : "string" + }, + "arbeidsforholdId" : { + "type" : "string" + } + } + }, + "Uttaksperiode" : { + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date" + }, + "tom" : { + "type" : "string", + "format" : "date" + }, + "utsettelseÅrsak" : { + "type" : "string", + "enum" : [ "HV_ØVELSE", "ARBEID", "LOVBESTEMT_FERIE", "SØKER_SYKDOM", "SØKER_INNLAGT", "BARN_INNLAGT", "NAV_TILTAK", "FRI" ] + }, + "oppholdÅrsak" : { + "type" : "string", + "enum" : [ "MØDREKVOTE_ANNEN_FORELDER", "FEDREKVOTE_ANNEN_FORELDER", "FELLESPERIODE_ANNEN_FORELDER", "FORELDREPENGER_ANNEN_FORELDER" ] + }, + "overføringÅrsak" : { + "type" : "string", + "enum" : [ "INSTITUSJONSOPPHOLD_ANNEN_FORELDER", "SYKDOM_ANNEN_FORELDER", "IKKE_RETT_ANNEN_FORELDER", "ALENEOMSORG" ] + }, + "samtidigUttak" : { + "type" : "number" + }, + "flerbarnsdager" : { + "type" : "boolean" + }, + "morsAktivitet" : { + "type" : "string", + "enum" : [ "ARBEID", "UTDANNING", "KVALPROG", "INTROPROG", "TRENGER_HJELP", "INNLAGT", "ARBEID_OG_UTDANNING", "UFØRE", "IKKE_OPPGITT" ] + }, + "resultat" : { + "$ref" : "#/components/schemas/Resultat" + } + } + }, + "UttaksperiodeAktivitet" : { + "type" : "object", + "properties" : { + "aktivitet" : { + "$ref" : "#/components/schemas/UttakAktivitet" + }, + "konto" : { + "type" : "string", + "enum" : [ "FORELDREPENGER", "MØDREKVOTE", "FEDREKVOTE", "FELLESPERIODE", "FORELDREPENGER_FØR_FØDSEL" ] + }, + "trekkdager" : { + "type" : "number" + }, + "arbeidstidsprosent" : { + "type" : "number" + } + } + }, + "Vedtak" : { + "type" : "object", + "properties" : { + "behandlingstema" : { + "$ref" : "#/components/schemas/InfotrygdKode" + }, + "identdato" : { + "type" : "string", + "format" : "date" + }, + "opphørFom" : { + "type" : "string", + "format" : "date" + }, + "opprinneligIdentdato" : { + "type" : "string", + "format" : "date" + }, + "periode" : { + "$ref" : "#/components/schemas/Periode" + }, + "registrert" : { + "type" : "string", + "format" : "date" + }, + "saksbehandlerId" : { + "type" : "string" + }, + "arbeidskategori" : { + "$ref" : "#/components/schemas/InfotrygdKode" + }, + "arbeidsforhold" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Arbeidsforhold" + } + }, + "dekningsgrad" : { + "type" : "integer", + "format" : "int32" + }, + "fødselsdatoBarn" : { + "type" : "string", + "format" : "date" + }, + "gradering" : { + "type" : "integer", + "format" : "int32" + }, + "utbetalinger" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Utbetaling" + } + } + } + }, + "EnkelRespons" : { + "type" : "object", + "properties" : { + "status" : { + "type" : "string" + } + } + }, + "AdressebeskyttelseHendelseDto" : { + "required" : [ "aktørId", "endringstype", "id" ], + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/HendelseDto" + }, { + "type" : "object", + "properties" : { + "aktørId" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AktørIdDto" + } + } + } + } ] + }, + "DødHendelseDto" : { + "required" : [ "aktørId", "endringstype", "id" ], + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/HendelseDto" + }, { + "type" : "object", + "properties" : { + "aktørId" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AktørIdDto" + } + }, + "dødsdato" : { + "type" : "string", + "format" : "date" + } + } + } ] + }, + "DødfødselHendelseDto" : { + "required" : [ "aktørId", "endringstype", "id" ], + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/HendelseDto" + }, { + "type" : "object", + "properties" : { + "aktørId" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AktørIdDto" + } + }, + "dødfødselsdato" : { + "type" : "string", + "format" : "date" + } + } + } ] + }, + "FødselHendelseDto" : { + "required" : [ "aktørIdForeldre", "endringstype", "id" ], + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/HendelseDto" + }, { + "type" : "object", + "properties" : { + "aktørIdForeldre" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AktørIdDto" + } + }, + "fødselsdato" : { + "type" : "string", + "format" : "date" + } + } + } ] + }, + "HendelseDto" : { + "required" : [ "endringstype", "id" ], + "type" : "object", + "properties" : { + "id" : { + "maxLength" : 100, + "minLength" : 1, + "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*", + "type" : "string" + }, + "endringstype" : { + "type" : "string", + "enum" : [ "OPPRETTET", "KORRIGERT", "ANNULLERT", "OPPHOERT" ] + }, + "avsenderSystem" : { + "type" : "string" + }, + "hendelsetype" : { + "type" : "string" + }, + "alleAktørId" : { + "type" : "array", + "items" : { + "type" : "string" + } + } + } + }, + "HendelseWrapperDto" : { + "required" : [ "hendelse" ], + "type" : "object", + "properties" : { + "hendelse" : { + "$ref" : "#/components/schemas/HendelseDto" + }, + "alleAktørId" : { + "type" : "array", + "items" : { + "type" : "string" + } + } + } + }, + "UtflyttingHendelseDto" : { + "required" : [ "aktørId", "endringstype", "id" ], + "type" : "object", + "allOf" : [ { + "$ref" : "#/components/schemas/HendelseDto" + }, { + "type" : "object", + "properties" : { + "aktørId" : { + "maxItems" : 2147483647, + "minItems" : 1, + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AktørIdDto" + } + }, + "utflyttingsdato" : { + "type" : "string", + "format" : "date" + } + } + } ] + }, + "Arbeidsforhold" : { + "type" : "object", + "properties" : { + "arbeidsgiverOrgnr" : { + "type" : "string" + }, + "inntekt" : { + "type" : "integer", + "format" : "int32" + }, + "inntektsperiode" : { + "$ref" : "#/components/schemas/InfotrygdKode" + }, + "refusjon" : { + "type" : "boolean" + }, + "refusjonTom" : { + "type" : "string", + "format" : "date" + }, + "identdato" : { + "type" : "string", + "format" : "date" + }, + "opprinneligIdentdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "InfotrygdKode" : { + "type" : "object", + "properties" : { + "kode" : { + "type" : "string" + }, + "termnavn" : { + "type" : "string" + } + } + }, + "InfotrygdVedtakDto" : { + "type" : "object", + "properties" : { + "saker" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/SakDto" + } + }, + "vedtakKjeder" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/VedtakKjede" + } + } + } + }, + "SakDto" : { + "type" : "object", + "properties" : { + "resultat" : { + "type" : "string" + }, + "registrert" : { + "type" : "string", + "format" : "date" + }, + "sakId" : { + "type" : "string" + }, + "type" : { + "type" : "string" + }, + "vedtatt" : { + "type" : "string", + "format" : "date" + }, + "valg" : { + "type" : "string" + }, + "undervalg" : { + "type" : "string" + }, + "nivaa" : { + "type" : "string" + } + } + }, + "Utbetaling" : { + "type" : "object", + "properties" : { + "periode" : { + "$ref" : "#/components/schemas/Periode" + }, + "utbetalingsgrad" : { + "type" : "integer", + "format" : "int32" + }, + "arbeidsgiverOrgnr" : { + "type" : "string" + }, + "erRefusjon" : { + "type" : "boolean" + }, + "dagsats" : { + "type" : "integer", + "format" : "int32" + }, + "identdato" : { + "type" : "string", + "format" : "date" + }, + "opprinneligIdentdato" : { + "type" : "string", + "format" : "date" + } + } + }, + "VedtakKjede" : { + "type" : "object", + "properties" : { + "opprinneligIdentdato" : { + "type" : "string", + "format" : "date" + }, + "behandlingstema" : { + "$ref" : "#/components/schemas/InfotrygdKode" + }, + "vedtak" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/Vedtak" + } + } + } + }, + "LosAksjonspunktDto" : { + "type" : "object", + "properties" : { + "definisjon" : { + "type" : "string" + }, + "status" : { + "type" : "string", + "enum" : [ "AVBRUTT", "OPPRETTET", "UTFØRT" ] + }, + "fristTid" : { + "type" : "string", + "format" : "date-time" + } + } + }, + "LosBehandlingDto" : { + "required" : [ "aktørId", "behandlingUuid", "behandlingsstatus", "behandlingstype", "kildesystem", "opprettetTidspunkt", "saksnummer", "ytelse" ], + "type" : "object", + "properties" : { + "behandlingUuid" : { + "type" : "string", + "format" : "uuid" + }, + "kildesystem" : { + "type" : "string", + "enum" : [ "FPSAK", "FPTILBAKE" ] + }, + "saksnummer" : { + "type" : "string" + }, + "ytelse" : { + "type" : "string", + "enum" : [ "ENGANGSTØNAD", "FORELDREPENGER", "SVANGERSKAPSPENGER" ] + }, + "aktørId" : { + "type" : "string" + }, + "behandlingstype" : { + "type" : "string", + "enum" : [ "FØRSTEGANGS", "REVURDERING", "TILBAKEBETALING", "TILBAKEBETALING_REVURDERING", "KLAGE", "ANKE", "INNSYN" ] + }, + "behandlingsstatus" : { + "type" : "string", + "enum" : [ "OPPRETTET", "UTREDES", "FATTER_VEDTAK", "IVERKSETTER_VEDTAK", "AVSLUTTET" ] + }, + "opprettetTidspunkt" : { + "type" : "string", + "format" : "date-time" + }, + "behandlendeEnhetId" : { + "type" : "string" + }, + "behandlingsfrist" : { + "type" : "string", + "format" : "date" + }, + "ansvarligSaksbehandlerIdent" : { + "type" : "string" + }, + "aksjonspunkt" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/LosAksjonspunktDto" + } + }, + "behandlingsårsaker" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "SØKNAD", "INNTEKTSMELDING", "FOLKEREGISTER", "PLEIEPENGER", "ETTERKONTROLL", "MANUELL", "BERØRT", "UTSATT_START", "OPPHØR_NY_SAK", "REGULERING", "KLAGE_OMGJØRING", "KLAGE_TILBAKEBETALING", "ANNET" ] + } + }, + "faresignaler" : { + "type" : "boolean" + }, + "refusjonskrav" : { + "type" : "boolean" + }, + "saksegenskaper" : { + "type" : "array", + "items" : { + "type" : "string" + } + }, + "foreldrepengerDto" : { + "$ref" : "#/components/schemas/LosForeldrepengerDto" + }, + "behandlingsegenskaper" : { + "type" : "array", + "items" : { + "type" : "string" + } + }, + "tilbakeDto" : { + "$ref" : "#/components/schemas/LosTilbakeDto" + } + } + }, + "LosForeldrepengerDto" : { + "type" : "object", + "properties" : { + "førsteUttakDato" : { + "type" : "string", + "format" : "date" + } + } + }, + "LosTilbakeDto" : { + "type" : "object", + "properties" : { + "feilutbetaltBeløp" : { + "type" : "number" + }, + "førsteFeilutbetalingDato" : { + "type" : "string", + "format" : "date" + } + } + }, + "LosFagsakEgenskaperDto" : { + "type" : "object", + "properties" : { + "saksegenskaper" : { + "type" : "array", + "items" : { + "type" : "string" + } + }, + "fagsakMarkering" : { + "type" : "string" + } + } + }, + "NøkkeltallBehandlingVentefristUtløper" : { + "type" : "object", + "properties" : { + "behandlendeEnhet" : { + "type" : "string" + }, + "fagsakYtelseType" : { + "type" : "string", + "enum" : [ "ES", "FP", "SVP", "-" ] + }, + "behandlingFrist" : { + "type" : "string", + "format" : "date" + }, + "antall" : { + "type" : "integer", + "format" : "int64" + } + } + }, + "NøkkeltallBehandlingFørsteUttak" : { + "type" : "object", + "properties" : { + "behandlendeEnhet" : { + "type" : "string" + }, + "behandlingType" : { + "type" : "string", + "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] + }, + "behandlingVenteStatus" : { + "type" : "string", + "enum" : [ "PÅ_VENT", "IKKE_PÅ_VENT" ] + }, + "førsteUttakMåned" : { + "type" : "string", + "format" : "date" + }, + "antall" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "InitLinksDto" : { + "type" : "object", + "properties" : { + "innloggetBruker" : { + "$ref" : "#/components/schemas/InnloggetNavAnsattDto" + }, + "behandlendeEnheter" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/OrganisasjonsEnhet" + } + }, + "links" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ResourceLink" + } + }, + "sakLinks" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ResourceLink" + } + } + } + }, + "InnloggetNavAnsattDto" : { + "type" : "object", + "properties" : { + "brukernavn" : { + "type" : "string" + }, + "navn" : { + "type" : "string" + }, + "kanSaksbehandle" : { + "type" : "boolean" + }, + "kanVeilede" : { + "type" : "boolean" + }, + "kanOverstyre" : { + "type" : "boolean" + }, + "kanOppgavestyre" : { + "type" : "boolean" + }, + "kanBehandleKode6" : { + "type" : "boolean" + }, + "funksjonellTid" : { + "type" : "string", + "format" : "date-time" + } + } + }, + "OrganisasjonsEnhet" : { + "type" : "object", + "properties" : { + "enhetId" : { + "type" : "string" + }, + "enhetNavn" : { + "type" : "string" + } + } + }, + "GenererVedtaksXmlDto" : { + "required" : [ "fom", "maksAntall", "tom" ], + "type" : "object", + "properties" : { + "fom" : { + "type" : "string", + "format" : "date-time" + }, + "tom" : { + "type" : "string", + "format" : "date-time" + }, + "maksAntall" : { + "maximum" : 5000, + "minimum" : 0, + "type" : "integer", + "format" : "int64" + } + } + }, + "FeedDto" : { + "type" : "object", + "properties" : { + "tittel" : { + "type" : "string" + }, + "inneholderFlereElementer" : { + "type" : "boolean" + }, + "elementer" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/FeedElement" + } + } + } + }, + "FeedElement" : { + "type" : "object", + "properties" : { + "type" : { + "type" : "string" + }, + "sekvensId" : { + "type" : "integer", + "format" : "int64" + }, + "innhold" : { + "type" : "object" + }, + "metadata" : { + "type" : "object" + } + } + }, + "SekvensIdParam" : { + "type" : "object" + }, + "MaxAntallParam" : { + "type" : "object" + }, + "HendelseTypeParam" : { + "type" : "object" + }, + "AktørParam" : { + "type" : "object" + }, + "SakOgPersonerDto" : { + "type" : "object", + "properties" : { + "saksnummer" : { + "type" : "string" + }, + "saksident" : { + "type" : "string" + }, + "identer" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "type" : "string" + } + } + } + }, + "ProsessTaskDataDto" : { + "required" : [ "gruppe", "id", "sekvens", "status", "taskType" ], + "type" : "object", + "properties" : { + "id" : { + "type" : "integer", + "format" : "int64" + }, + "taskType" : { + "maxLength" : 200, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}æøåÆØÅ_.\\-]*$", + "type" : "string" + }, + "nesteKjøringEtter" : { + "type" : "string", + "format" : "date-time" + }, + "gruppe" : { + "maxLength" : 200, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string" + }, + "sekvens" : { + "maxLength" : 200, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string" + }, + "status" : { + "maxLength" : 20, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string" + }, + "sistKjørt" : { + "type" : "string", + "format" : "date-time" + }, + "sisteFeilKode" : { + "maxLength" : 200, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string" + }, + "taskParametre" : { + "type" : "object", + "additionalProperties" : { + "type" : "string" + } + } + } + }, + "ProsessTaskOpprettInputDto" : { + "required" : [ "taskParametre", "taskType" ], + "type" : "object", + "properties" : { + "taskType" : { + "maxLength" : 100, + "minLength" : 1, + "pattern" : "^[\\p{Alnum}æøåÆØÅ_.\\-]*$", + "type" : "string" + }, + "taskParametre" : { + "type" : "object", + "additionalProperties" : { + "type" : "string" + } + } + } + }, + "FeiletProsessTaskDataDto" : { + "required" : [ "gruppe", "id", "sekvens", "status", "taskType" ], + "type" : "object", + "properties" : { + "id" : { + "type" : "integer", + "format" : "int64" + }, + "taskType" : { + "maxLength" : 200, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}æøåÆØÅ_.\\-]*$", + "type" : "string" + }, + "nesteKjøringEtter" : { + "type" : "string", + "format" : "date-time" + }, + "gruppe" : { + "maxLength" : 200, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string" + }, + "sekvens" : { + "maxLength" : 200, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string" + }, + "status" : { + "maxLength" : 20, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string" + }, + "sistKjørt" : { + "type" : "string", + "format" : "date-time" + }, + "sisteFeilKode" : { + "maxLength" : 200, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string" + }, + "taskParametre" : { + "type" : "object", + "additionalProperties" : { + "type" : "string" + } + }, + "sisteKjøringServerProsess" : { + "maxLength" : 100, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string" + }, + "sisteFeilTekst" : { + "maxLength" : 100000, + "minLength" : 0, + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string" + }, + "feiledeForsøk" : { + "type" : "integer", + "format" : "int32" + } + } + }, + "ProsessTaskRestartResultatDto" : { + "required" : [ "nesteKjoeretidspunkt", "prosessTaskId", "prosessTaskStatus" ], + "type" : "object", + "properties" : { + "prosessTaskId" : { + "type" : "integer", + "format" : "int64" + }, + "prosessTaskStatus" : { + "pattern" : "^[\\p{Alnum}_.\\-]*$", + "type" : "string", + "description" : "Nåværende status (KLAR)" + }, + "nesteKjoeretidspunkt" : { + "type" : "string", + "description" : "Kjøretidspunkt for restart av prosessen", + "format" : "date-time" + } + }, + "description" : "Resultatet av asynkron-restart av en eksisterende prosesstask" + }, + "ProsessTaskRetryAllResultatDto" : { + "type" : "object", + "properties" : { + "prosessTaskIds" : { + "type" : "array", + "description" : "Prosesstasks som restartes", + "items" : { + "type" : "integer", + "description" : "Prosesstasks som restartes", + "format" : "int64" + } + } + }, + "description" : "Resultatet av asynkron-restart av feilede prosesstasks" + }, + "SokeFilterDto" : { + "required" : [ "tekst" ], + "type" : "object", + "properties" : { + "tekst" : { + "maxLength" : 200, + "minLength" : 5, + "pattern" : "^[\\p{Alnum}_.=\\-]*$", + "type" : "string" + }, + "sisteKjoeretidspunktFraOgMed" : { + "type" : "string", + "format" : "date" + }, + "sisteKjoeretidspunktTilOgMed" : { + "type" : "string", + "format" : "date" + } + } + } + } + } +} diff --git a/yarn.lock b/yarn.lock index ecc35d09241..43ae4d30346 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1979,6 +1979,37 @@ __metadata: languageName: node linkType: hard +"@hey-api/json-schema-ref-parser@npm:1.0.6": + version: 1.0.6 + resolution: "@hey-api/json-schema-ref-parser@npm:1.0.6" + dependencies: + "@jsdevtools/ono": ^7.1.3 + "@types/json-schema": ^7.0.15 + js-yaml: ^4.1.0 + lodash: ^4.17.21 + checksum: 6ac69f6cba5f8cfae7a7633c4236c3d18550e3b8b2506e38d8599b7ab60bd2baf8998939e9aa94b72b22f054e867582b858b021ea50c461af087c41777ee4029 + languageName: node + linkType: hard + +"@hey-api/openapi-ts@npm:0.79.1": + version: 0.79.1 + resolution: "@hey-api/openapi-ts@npm:0.79.1" + dependencies: + "@hey-api/json-schema-ref-parser": 1.0.6 + ansi-colors: 4.1.3 + c12: 2.0.1 + color-support: 1.1.3 + commander: 13.0.0 + handlebars: 4.7.8 + open: 10.1.2 + peerDependencies: + typescript: ^5.5.3 + bin: + openapi-ts: bin/index.cjs + checksum: 8e8a78bf4e3807219e98ca5b3435b09b1e78ef6ce287f58579cbedf9cc7a5e376e594890074b8eb65cdbd918dfd37383d362e61f9ac5dbcf670746591e103f45 + languageName: node + linkType: hard + "@humanfs/core@npm:^0.19.1": version: 0.19.1 resolution: "@humanfs/core@npm:0.19.1" @@ -2194,6 +2225,13 @@ __metadata: languageName: node linkType: hard +"@jsdevtools/ono@npm:^7.1.3": + version: 7.1.3 + resolution: "@jsdevtools/ono@npm:7.1.3" + checksum: 2297fcd472ba810bffe8519d2249171132844c7174f3a16634f9260761c8c78bc0428a4190b5b6d72d45673c13918ab9844d706c3ed4ef8f62ab11a2627a08ad + languageName: node + linkType: hard + "@keyv/serialize@npm:^1.0.3": version: 1.0.3 resolution: "@keyv/serialize@npm:1.0.3" @@ -8003,7 +8041,7 @@ __metadata: languageName: node linkType: hard -"ansi-colors@npm:^4.1.1": +"ansi-colors@npm:4.1.3, ansi-colors@npm:^4.1.1": version: 4.1.3 resolution: "ansi-colors@npm:4.1.3" checksum: a9c2ec842038a1fabc7db9ece7d3177e2fe1c5dc6f0c51ecfbf5f39911427b89c00b5dc6b8bd95f82a26e9b16aaae2e83d45f060e98070ce4d1333038edceb0e @@ -8550,6 +8588,15 @@ __metadata: languageName: node linkType: hard +"bundle-name@npm:^4.1.0": + version: 4.1.0 + resolution: "bundle-name@npm:4.1.0" + dependencies: + run-applescript: ^7.0.0 + checksum: 1d966c8d2dbf4d9d394e53b724ac756c2414c45c01340b37743621f59cc565a435024b394ddcb62b9b335d1c9a31f4640eb648c3fec7f97ee74dc0694c9beb6c + languageName: node + linkType: hard + "byte-size@npm:8.1.1": version: 8.1.1 resolution: "byte-size@npm:8.1.1" @@ -8564,6 +8611,31 @@ __metadata: languageName: node linkType: hard +"c12@npm:2.0.1": + version: 2.0.1 + resolution: "c12@npm:2.0.1" + dependencies: + chokidar: ^4.0.1 + confbox: ^0.1.7 + defu: ^6.1.4 + dotenv: ^16.4.5 + giget: ^1.2.3 + jiti: ^2.3.0 + mlly: ^1.7.1 + ohash: ^1.1.4 + pathe: ^1.1.2 + perfect-debounce: ^1.0.0 + pkg-types: ^1.2.0 + rc9: ^2.1.2 + peerDependencies: + magicast: ^0.3.5 + peerDependenciesMeta: + magicast: + optional: true + checksum: fee1d576b426efdc5cfc836939241a794aaaa29556653c7dafbad68de025b9181dd46f7a0498665fbf8e6ee37a12fb3ab63e780c0524c9a6320da6cb2ddd8246 + languageName: node + linkType: hard + "c8@npm:^7.14.0": version: 7.14.0 resolution: "c8@npm:7.14.0" @@ -8781,6 +8853,15 @@ __metadata: languageName: node linkType: hard +"chokidar@npm:^4.0.1": + version: 4.0.3 + resolution: "chokidar@npm:4.0.3" + dependencies: + readdirp: ^4.0.1 + checksum: a8765e452bbafd04f3f2fad79f04222dd65f43161488bb6014a41099e6ca18d166af613d59a90771908c1c823efa3f46ba36b86ac50b701c20c1b9908c5fe36e + languageName: node + linkType: hard + "chownr@npm:^2.0.0": version: 2.0.0 resolution: "chownr@npm:2.0.0" @@ -9016,6 +9097,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:13.0.0": + version: 13.0.0 + resolution: "commander@npm:13.0.0" + checksum: 3981c8c197c93ceeb949f6e2250785ea319209c502b7c53d6dc36148347739c72b15de2e4bcad80bedc3f8e1e5544a89ca4e7d673b2f3238ac51b44292ad08d6 + languageName: node + linkType: hard + "commander@npm:^13.0.0, commander@npm:^13.1.0": version: 13.1.0 resolution: "commander@npm:13.1.0" @@ -9080,7 +9168,7 @@ __metadata: languageName: node linkType: hard -"confbox@npm:^0.1.8": +"confbox@npm:^0.1.7, confbox@npm:^0.1.8": version: 0.1.8 resolution: "confbox@npm:0.1.8" checksum: 5c7718ab22cf9e35a31c21ef124156076ae8c9dc65e6463d54961caf5a1d529284485a0fdf83fd23b27329f3b75b0c8c07d2e36c699f5151a2efe903343f976a @@ -9612,6 +9700,23 @@ __metadata: languageName: node linkType: hard +"default-browser-id@npm:^5.0.0": + version: 5.0.0 + resolution: "default-browser-id@npm:5.0.0" + checksum: 185bfaecec2c75fa423544af722a3469b20704c8d1942794a86e4364fe7d9e8e9f63241a5b769d61c8151993bc65833a5b959026fa1ccea343b3db0a33aa6deb + languageName: node + linkType: hard + +"default-browser@npm:^5.2.1": + version: 5.2.1 + resolution: "default-browser@npm:5.2.1" + dependencies: + bundle-name: ^4.1.0 + default-browser-id: ^5.0.0 + checksum: afab7eff7b7f5f7a94d9114d1ec67273d3fbc539edf8c0f80019879d53aa71e867303c6f6d7cffeb10a6f3cfb59d4f963dba3f9c96830b4540cc7339a1bf9840 + languageName: node + linkType: hard + "defaults@npm:^1.0.3": version: 1.0.4 resolution: "defaults@npm:1.0.4" @@ -9639,6 +9744,13 @@ __metadata: languageName: node linkType: hard +"define-lazy-prop@npm:^3.0.0": + version: 3.0.0 + resolution: "define-lazy-prop@npm:3.0.0" + checksum: 54884f94caac0791bf6395a3ec530ce901cf71c47b0196b8754f3fd17edb6c0e80149c1214429d851873bb0d689dbe08dcedbb2306dc45c8534a5934723851b6 + languageName: node + linkType: hard + "define-properties@npm:^1.1.3, define-properties@npm:^1.2.1": version: 1.2.1 resolution: "define-properties@npm:1.2.1" @@ -9685,6 +9797,13 @@ __metadata: languageName: node linkType: hard +"destr@npm:^2.0.3": + version: 2.0.5 + resolution: "destr@npm:2.0.5" + checksum: e6d5b9e922f528527cd98035249b4d34077828debd2be448a33e268ac1f803bd9a53e7cf0f5184ef68a67573b7f0a6033a89913f61eadaf0e180de49b148606e + languageName: node + linkType: hard + "detect-indent@npm:^5.0.0": version: 5.0.0 resolution: "detect-indent@npm:5.0.0" @@ -11089,6 +11208,7 @@ __metadata: resolution: "fp-frontend@workspace:." dependencies: "@eslint/js": 9.26.0 + "@hey-api/openapi-ts": 0.79.1 "@navikt/aksel-stylelint": 7.21.1 "@sentry/cli": 2.45.0 "@storybook/addon-essentials": 8.6.12 @@ -11376,7 +11496,7 @@ __metadata: languageName: node linkType: hard -"giget@npm:^1.0.0": +"giget@npm:^1.0.0, giget@npm:^1.2.3": version: 1.2.5 resolution: "giget@npm:1.2.5" dependencies: @@ -11630,7 +11750,7 @@ __metadata: languageName: node linkType: hard -"handlebars@npm:^4.7.7": +"handlebars@npm:4.7.8, handlebars@npm:^4.7.7": version: 4.7.8 resolution: "handlebars@npm:4.7.8" dependencies: @@ -12222,6 +12342,15 @@ __metadata: languageName: node linkType: hard +"is-docker@npm:^3.0.0": + version: 3.0.0 + resolution: "is-docker@npm:3.0.0" + bin: + is-docker: cli.js + checksum: b698118f04feb7eaf3338922bd79cba064ea54a1c3db6ec8c0c8d8ee7613e7e5854d802d3ef646812a8a3ace81182a085dfa0a71cc68b06f3fa794b9783b3c90 + languageName: node + linkType: hard + "is-extglob@npm:^2.1.1": version: 2.1.1 resolution: "is-extglob@npm:2.1.1" @@ -12282,6 +12411,17 @@ __metadata: languageName: node linkType: hard +"is-inside-container@npm:^1.0.0": + version: 1.0.0 + resolution: "is-inside-container@npm:1.0.0" + dependencies: + is-docker: ^3.0.0 + bin: + is-inside-container: cli.js + checksum: c50b75a2ab66ab3e8b92b3bc534e1ea72ca25766832c0623ac22d134116a98bcf012197d1caabe1d1c4bd5f84363d4aa5c36bb4b585fbcaf57be172cd10a1a03 + languageName: node + linkType: hard + "is-interactive@npm:^1.0.0": version: 1.0.0 resolution: "is-interactive@npm:1.0.0" @@ -12510,6 +12650,15 @@ __metadata: languageName: node linkType: hard +"is-wsl@npm:^3.1.0": + version: 3.1.0 + resolution: "is-wsl@npm:3.1.0" + dependencies: + is-inside-container: ^1.0.0 + checksum: f9734c81f2f9cf9877c5db8356bfe1ff61680f1f4c1011e91278a9c0564b395ae796addb4bf33956871041476ec82c3e5260ed57b22ac91794d4ae70a1d2f0a9 + languageName: node + linkType: hard + "isarray@npm:^2.0.5": version: 2.0.5 resolution: "isarray@npm:2.0.5" @@ -12643,6 +12792,15 @@ __metadata: languageName: node linkType: hard +"jiti@npm:^2.3.0": + version: 2.5.1 + resolution: "jiti@npm:2.5.1" + bin: + jiti: lib/jiti-cli.mjs + checksum: db901281e01013c27d46d6c5cde5fa817082f32232c92099043df11e135d00ccd1b4356a9ba356a3293e91855bd7437b6df5ae0ae6ad2c384d9bd59df926633c + languageName: node + linkType: hard + "js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": version: 4.0.0 resolution: "js-tokens@npm:4.0.0" @@ -13851,7 +14009,7 @@ __metadata: languageName: node linkType: hard -"mlly@npm:^1.7.4": +"mlly@npm:^1.7.1, mlly@npm:^1.7.4": version: 1.7.4 resolution: "mlly@npm:1.7.4" dependencies: @@ -14492,6 +14650,13 @@ __metadata: languageName: node linkType: hard +"ohash@npm:^1.1.4": + version: 1.1.6 + resolution: "ohash@npm:1.1.6" + checksum: 1400de55726d8a653618da1b5bf85b8e05c3ff5035071e0a4b483993d0826c98667a54da931042a59058a7fa9c8708b3de3f140eb9148a06cb81d9777b285b1b + languageName: node + linkType: hard + "on-finished@npm:^2.4.1": version: 2.4.1 resolution: "on-finished@npm:2.4.1" @@ -14537,6 +14702,18 @@ __metadata: languageName: node linkType: hard +"open@npm:10.1.2": + version: 10.1.2 + resolution: "open@npm:10.1.2" + dependencies: + default-browser: ^5.2.1 + define-lazy-prop: ^3.0.0 + is-inside-container: ^1.0.0 + is-wsl: ^3.1.0 + checksum: cb40d9786e8c679a1c647c62ad3642bbf1a8cc986c3ec970e99ed13d279c93328ea46bf756db64ea465d2d707815d4e792e7ba906830c3439cc8577cdefb8610 + languageName: node + linkType: hard + "open@npm:^8.0.4, open@npm:^8.4.0": version: 8.4.2 resolution: "open@npm:8.4.2" @@ -15004,6 +15181,13 @@ __metadata: languageName: node linkType: hard +"pathe@npm:^1.1.2": + version: 1.1.2 + resolution: "pathe@npm:1.1.2" + checksum: ec5f778d9790e7b9ffc3e4c1df39a5bb1ce94657a4e3ad830c1276491ca9d79f189f47609884671db173400256b005f4955f7952f52a2aeb5834ad5fb4faf134 + languageName: node + linkType: hard + "pathe@npm:^2.0.1, pathe@npm:^2.0.3": version: 2.0.3 resolution: "pathe@npm:2.0.3" @@ -15018,6 +15202,13 @@ __metadata: languageName: node linkType: hard +"perfect-debounce@npm:^1.0.0": + version: 1.0.0 + resolution: "perfect-debounce@npm:1.0.0" + checksum: 220343acf52976947958fef3599849471605316e924fe19c633ae2772576298e9d38f02cefa8db46f06607505ce7b232cbb35c9bfd477bd0329bd0a2ce37c594 + languageName: node + linkType: hard + "picocolors@npm:^1.0.0, picocolors@npm:^1.1.1": version: 1.1.1 resolution: "picocolors@npm:1.1.1" @@ -15108,7 +15299,7 @@ __metadata: languageName: node linkType: hard -"pkg-types@npm:^1.3.0, pkg-types@npm:^1.3.1": +"pkg-types@npm:^1.2.0, pkg-types@npm:^1.3.0, pkg-types@npm:^1.3.1": version: 1.3.1 resolution: "pkg-types@npm:1.3.1" dependencies: @@ -15428,6 +15619,16 @@ __metadata: languageName: node linkType: hard +"rc9@npm:^2.1.2": + version: 2.1.2 + resolution: "rc9@npm:2.1.2" + dependencies: + defu: ^6.1.4 + destr: ^2.0.3 + checksum: aaa8f962a9a6a89981e2da75dad71117fe0f856bb55fecf793cd42ee0badc1cb92e6bb7cd25a9473e2d3c968ac29e507384ce52c4e76bbd63ac5649d3d7c2ab3 + languageName: node + linkType: hard + "react-day-picker@npm:9.6.1": version: 9.6.1 resolution: "react-day-picker@npm:9.6.1" @@ -15756,6 +15957,13 @@ __metadata: languageName: node linkType: hard +"readdirp@npm:^4.0.1": + version: 4.1.2 + resolution: "readdirp@npm:4.1.2" + checksum: 3242ee125422cb7c0e12d51452e993f507e6ed3d8c490bc8bf3366c5cdd09167562224e429b13e9cb2b98d4b8b2b11dc100d3c73883aa92d657ade5a21ded004 + languageName: node + linkType: hard + "recast@npm:^0.23.3, recast@npm:^0.23.5": version: 0.23.11 resolution: "recast@npm:0.23.11" @@ -16243,6 +16451,13 @@ __metadata: languageName: node linkType: hard +"run-applescript@npm:^7.0.0": + version: 7.0.0 + resolution: "run-applescript@npm:7.0.0" + checksum: b02462454d8b182ad4117e5d4626e9e6782eb2072925c9fac582170b0627ae3c1ea92ee9b2df7daf84b5e9ffe14eb1cf5fb70bc44b15c8a0bfcdb47987e2410c + languageName: node + linkType: hard + "run-async@npm:^2.4.0": version: 2.4.1 resolution: "run-async@npm:2.4.1" From 9e2334629fc80b86ad5fe1a6490ffb18895cbc33 Mon Sep 17 00:00:00 2001 From: johannbm Date: Tue, 29 Jul 2025 10:34:42 +0200 Subject: [PATCH 02/12] v1 --- .gitignore | 1 + .../.storybook/testdata/behandling.ts | 2 + .../getAlleMerknaderFraBeslutter.spec.ts | 16 +- generate-api-types.sh | 1 - packages/types/src/aksjonspunktTsType.ts | 23 +- packages/types/src/apiDtoGenerert.ts | 9779 ++++++++++ swagger.json | 15301 ---------------- yarn.lock | 227 +- 8 files changed, 10020 insertions(+), 15330 deletions(-) create mode 100644 packages/types/src/apiDtoGenerert.ts delete mode 100644 swagger.json diff --git a/.gitignore b/.gitignore index 5d2da9e00ef..fd7b077893c 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ ssh.exe.stackdump !.yarn/versions .nx +swagger.json diff --git a/apps/fp-frontend-app/.storybook/testdata/behandling.ts b/apps/fp-frontend-app/.storybook/testdata/behandling.ts index 7e77c0ca3cf..4d8a57176f1 100644 --- a/apps/fp-frontend-app/.storybook/testdata/behandling.ts +++ b/apps/fp-frontend-app/.storybook/testdata/behandling.ts @@ -258,6 +258,8 @@ export const behandling: Behandling = { besluttersBegrunnelse: null, aksjonspunktType: AksjonspunktType.MANUELL, kanLoses: true, + erAktivt: true, + fristTid: null, endretTidspunkt: null, endretAv: null, }, diff --git a/apps/fp-frontend-app/src/behandling/felles/utils/getAlleMerknaderFraBeslutter.spec.ts b/apps/fp-frontend-app/src/behandling/felles/utils/getAlleMerknaderFraBeslutter.spec.ts index 4182d632de3..535c3e7de9c 100644 --- a/apps/fp-frontend-app/src/behandling/felles/utils/getAlleMerknaderFraBeslutter.spec.ts +++ b/apps/fp-frontend-app/src/behandling/felles/utils/getAlleMerknaderFraBeslutter.spec.ts @@ -1,4 +1,10 @@ -import { AksjonspunktKode, AksjonspunktStatus, BehandlingStatus } from '@navikt/fp-kodeverk'; +import { + AksjonspunktKode, + AksjonspunktStatus, + AksjonspunktType, + BehandlingStatus, + VilkarType, +} from '@navikt/fp-kodeverk'; import type { Aksjonspunkt } from '@navikt/fp-types'; import { getAlleMerknaderFraBeslutter } from './getAlleMerknaderFraBeslutter'; @@ -12,6 +18,14 @@ describe('getAlleMerknaderFraBeslutter', () => { kanLoses: true, toTrinnsBehandling: true, toTrinnsBehandlingGodkjent: false, + vilkarType: VilkarType.FODSELSVILKARET_MOR, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.MANUELL, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, }, ]; diff --git a/generate-api-types.sh b/generate-api-types.sh index 6ba3ba0d963..374ccf8e01c 100755 --- a/generate-api-types.sh +++ b/generate-api-types.sh @@ -16,4 +16,3 @@ rm -rf temp-types # Step 4: Format types cd packages/types yarn run prettier -yarn run eslint:fix diff --git a/packages/types/src/aksjonspunktTsType.ts b/packages/types/src/aksjonspunktTsType.ts index 3dd0e1ae07d..749c66c9ad0 100644 --- a/packages/types/src/aksjonspunktTsType.ts +++ b/packages/types/src/aksjonspunktTsType.ts @@ -1,22 +1,3 @@ -import type { - AksjonspunktKode, - AksjonspunktStatus, - AksjonspunktType, - VilkarType, - VurderÅrsak, -} from '@navikt/fp-kodeverk'; +import type { AksjonspunktDto } from './apiDtoGenerert'; -export type Aksjonspunkt = Readonly<{ - definisjon: AksjonspunktKode; - status: AksjonspunktStatus; - begrunnelse: string | null; - vilkarType?: VilkarType; - toTrinnsBehandling?: boolean; - toTrinnsBehandlingGodkjent?: boolean | null; - vurderPaNyttArsaker?: VurderÅrsak[] | null; - besluttersBegrunnelse?: string | null; - aksjonspunktType?: AksjonspunktType; - kanLoses: boolean; - endretAv?: string | null; - endretTidspunkt?: string | null; -}>; +export type Aksjonspunkt = AksjonspunktDto; diff --git a/packages/types/src/apiDtoGenerert.ts b/packages/types/src/apiDtoGenerert.ts new file mode 100644 index 00000000000..d750befff09 --- /dev/null +++ b/packages/types/src/apiDtoGenerert.ts @@ -0,0 +1,9779 @@ +// This file is auto-generated by @hey-api/openapi-ts + +export type CallbackDto = { + opprettetTidspunkt: string; + avsenderRef: ReferanseDto; + opprinneligGrunnlagRef?: ReferanseDto; + oppdatertGrunnlagRef?: ReferanseDto; +}; + +export type ReferanseDto = { + referanse: string; +}; + +export type BehandlingDto = { + id?: number; + uuid?: string; + versjon?: number; + type?: 'BT-002' | 'BT-003' | 'BT-004' | 'BT-008' | 'BT-006' | 'BT-007' | 'BT-009' | '-'; + status?: 'AVSLU' | 'FVED' | 'IVED' | 'OPPRE' | 'UTRED'; + fagsakId?: number; + opprettet?: string; + avsluttet?: string; + endret?: string; + endretAvBrukernavn?: string; + behandlendeEnhetId?: string; + behandlendeEnhetNavn?: string; + erAktivPapirsoknad?: boolean; + førsteÅrsak?: BehandlingÅrsakDto; + behandlingsfristTid?: string; + gjeldendeVedtak?: boolean; + erPaaVent?: boolean; + originalVedtaksDato?: string; + behandlingHenlagt?: boolean; + behandlingPaaVent?: boolean; + behandlingPåVent?: boolean; + fristBehandlingPåVent?: string; + fristBehandlingPaaVent?: string; + venteArsakKode?: string; + venteÅrsakKode?: string; + sprakkode?: 'NB' | 'NN' | 'EN' | '-'; + språkkode?: 'NB' | 'NN' | 'EN' | '-'; + behandlingKøet?: boolean; + ansvarligSaksbehandler?: string; + toTrinnsBehandling?: boolean; + behandlingsresultat?: BehandlingsresultatDto; + behandlingÅrsaker?: Array; + vilkår?: Array; + links?: Array; + behandlingKoet?: boolean; +}; + +export type BehandlingsresultatDto = { + id?: number; + type?: + | 'IKKE_FASTSATT' + | 'INNVILGET' + | 'AVSLÅTT' + | 'OPPHØR' + | 'HENLAGT_SØKNAD_TRUKKET' + | 'HENLAGT_FEILOPPRETTET' + | 'HENLAGT_BRUKER_DØD' + | 'MERGET_OG_HENLAGT' + | 'HENLAGT_SØKNAD_MANGLER' + | 'FORELDREPENGER_ENDRET' + | 'FORELDREPENGER_SENERE' + | 'INGEN_ENDRING' + | 'MANGLER_BEREGNINGSREGLER' + | 'KLAGE_AVVIST' + | 'KLAGE_MEDHOLD' + | 'KLAGE_DELVIS_MEDHOLD' + | 'KLAGE_OMGJORT_UGUNST' + | 'KLAGE_YTELSESVEDTAK_OPPHEVET' + | 'KLAGE_YTELSESVEDTAK_STADFESTET' + | 'KLAGE_TILBAKEKREVING_VEDTAK_STADFESTET' + | 'HENLAGT_KLAGE_TRUKKET' + | 'HJEMSENDE_UTEN_OPPHEVE' + | 'ANKE_AVVIST' + | 'ANKE_MEDHOLD' + | 'ANKE_DELVIS_MEDHOLD' + | 'ANKE_OMGJORT_UGUNST' + | 'ANKE_OPPHEVE_OG_HJEMSENDE' + | 'ANKE_HJEMSENDE_UTEN_OPPHEV' + | 'ANKE_YTELSESVEDTAK_STADFESTET' + | 'HENLAGT_ANKE_TRUKKET' + | 'INNSYN_INNVILGET' + | 'INNSYN_DELVIS_INNVILGET' + | 'INNSYN_AVVIST' + | 'HENLAGT_INNSYN_TRUKKET'; + avslagsarsak?: + | '1001' + | '1002' + | '1003' + | '1004' + | '1005' + | '1006' + | '1007' + | '1008' + | '1009' + | '1010' + | '1011' + | '1012' + | '1013' + | '1014' + | '1015' + | '1016' + | '1017' + | '1018' + | '1019' + | '1020' + | '1021' + | '1023' + | '1024' + | '1025' + | '1026' + | '1027' + | '1028' + | '1029' + | '1031' + | '1032' + | '1033' + | '1034' + | '1035' + | '1041' + | '1051' + | '1052' + | '1060' + | '1061' + | '1062' + | '1063' + | '1064' + | '1065' + | '1066' + | '1099' + | '-'; + avslagsarsakFritekst?: string; + rettenTil?: 'HAR_RETT_TIL_FP' | 'HAR_IKKE_RETT_TIL_FP' | '-'; + konsekvenserForYtelsen?: Array< + | 'FORELDREPENGER_OPPHØRER' + | 'ENDRING_I_BEREGNING' + | 'ENDRING_I_UTTAK' + | 'ENDRING_I_FORDELING_AV_YTELSEN' + | 'INGEN_ENDRING' + | '-' + >; + vedtaksbrev?: 'AUTOMATISK' | 'FRITEKST' | 'INGEN' | '-'; + vedtaksbrevStatus?: + | 'VEDTAKSBREV_PRODUSERES' + | 'INGEN_VEDTAKSBREV' + | 'INGEN_VEDTAKSBREV_ANKE' + | 'INGEN_VEDTAKSBREV_KLAGEBEHANDLING' + | 'INGEN_VEDTAKSBREV_BEHANDLING_ETTER_KLAGE' + | 'INGEN_VEDTAKSBREV_JUSTERING_AV_FERIEPENGER' + | 'INGEN_VEDTAKSBREV_INGEN_KONSEKVENS_FOR_YTELSE'; + overskrift?: string; + fritekstbrev?: string; + harRedigertVedtaksbrev?: boolean; + erRevurderingMedUendretUtfall?: boolean; + skjæringstidspunkt?: SkjæringstidspunktDto; + endretDekningsgrad?: boolean; + opphørsdato?: string; +}; + +export type BehandlingÅrsakDto = { + erAutomatiskRevurdering?: boolean; + behandlingArsakType?: + | 'RE-LOV' + | 'RE-RGLF' + | 'RE-FEFAKTA' + | 'RE-PRSSL' + | 'RE-ANNET' + | 'RE-MDL' + | 'RE-OPTJ' + | 'RE-FRDLING' + | 'RE-INNTK' + | 'RE-FØDSEL' + | 'RE-DØD' + | 'RE-SRTB' + | 'RE-FRIST' + | 'RE-BER-GRUN' + | 'RE-KLAG-U-INNTK' + | 'RE-KLAG-M-INNTK' + | 'ETTER_KLAGE' + | 'RE-MF' + | 'RE-MFIP' + | 'RE-AVAB' + | 'RE-END-FRA-BRUKER' + | 'RE-END-INNTEKTSMELD' + | 'BERØRT-BEHANDLING' + | 'REBEREGN-FERIEPENGER' + | 'RE-UTSATT-START' + | 'RE-SATS-REGULERING' + | 'ENDRE-DEKNINGSGRAD' + | 'INFOBREV_BEHANDLING' + | 'INFOBREV_OPPHOLD' + | 'INFOBREV_PÅMINNELSE' + | 'OPPHØR-NYTT-BARN' + | 'RE-HENDELSE-FØDSEL' + | 'RE-HENDELSE-DØD-F' + | 'RE-HENDELSE-DØD-B' + | 'RE-HENDELSE-DØDFØD' + | 'RE-HENDELSE-UTFLYTTING' + | 'RE-VEDTAK-PSB' + | 'FEIL_PRAKSIS_UTSETTELSE' + | 'FEIL_PRAKSIS_IVERKS_UTSET' + | 'KLAGE_TILBAKE' + | 'RE-YTELSE' + | 'RE-REGISTEROPPL' + | 'KØET-BEHANDLING' + | 'RE-TILST-YT-INNVIL' + | 'RE-TILST-YT-OPPH' + | '-'; + manueltOpprettet?: boolean; +}; + +export type ResourceLink = { + href: string; + rel: string; + requestPayload?: { + [key: string]: unknown; + }; + type: 'DELETE' | 'GET' | 'PATCH' | 'POST' | 'PUT'; +}; + +export type SkjæringstidspunktDto = { + dato?: string; + utenMinsterett?: boolean; +}; + +export type VilkårDto = { + vilkarType?: + | 'FP_VK_1' + | 'FP_VK_11' + | 'FP_VK_16' + | 'FP_VK_2' + | 'FP_VK_2_F' + | 'FP_VK_2_L' + | 'FP_VK_3' + | 'FP_VK_4' + | 'FP_VK_5' + | 'FP_VK_8' + | 'FP_VK_33' + | 'FP_VK_34' + | 'FP_VK_21' + | 'FP_VK_23' + | 'FP_VK_41' + | 'SVP_VK_1' + | '-'; + vilkarStatus?: 'OPPFYLT' | 'IKKE_OPPFYLT' | 'IKKE_VURDERT' | '-'; + avslagKode?: string; + lovReferanse?: string; + overstyrbar?: boolean; + evaluering?: string; + input?: string; +}; + +export type UuidDto = { + uuid?: string; +}; + +export type ReåpneBehandlingDto = { + behandlingUuid: string; + behandlingVersjon: number; +}; + +export type ByttBehandlendeEnhetDto = { + behandlingUuid: string; + enhetNavn?: string; + enhetId?: string; + begrunnelse?: string; + behandlingVersjon?: number; +}; + +export type SettBehandlingPaVentDto = { + behandlingUuid: string; + behandlingVersjon: number; + frist?: string; + ventearsak?: + | '-' + | 'AVV_DOK' + | 'AVV_FODSEL' + | 'FOR_TIDLIG_SOKNAD' + | 'SCANN' + | 'UTV_FRIST' + | 'VENT_PÅ_BRUKERTILBAKEMELDING' + | 'VENT_UTLAND_TRYGD' + | 'VENT_INNTEKT_RAPPORTERINGSFRIST' + | 'VENT_MANGLENDE_SYKEMELDING' + | 'VENT_OPDT_INNTEKTSMELDING' + | 'VENT_OPPTJENING_OPPLYSNINGER' + | 'VENT_PÅ_SISTE_AAP_MELDEKORT' + | 'VENT_SØKNAD_SENDT_INFORMASJONSBREV' + | 'VENT_ÅPEN_BEHANDLING' + | 'VENT_KABAL' + | 'ANKE_OVERSENDT_TIL_TRYGDERETTEN' + | 'ANKE_VENTER_PAA_MERKNADER_FRA_BRUKER' + | 'AVV_RESPONS_REVURDERING' + | 'VENT_TIDLIGERE_BEHANDLING' + | 'AAP_DP_SISTE_10_MND_SVP' + | 'AAP_DP_ENESTE_AKTIVITET_SVP' + | 'DELVIS_TILRETTELEGGING_OG_REFUSJON_SVP' + | 'FLERE_ARBEIDSFORHOLD_SAMME_ORG_SVP' + | 'FL_SN_IKKE_STOTTET_FOR_SVP' + | 'GRADERING_FLERE_ARBEIDSFORHOLD' + | 'OPPD_ÅPEN_BEH' + | 'REFUSJON_3_MÅNEDER' + | 'VENTELØNN_ELLER_MILITÆR_MED_FLERE_AKTIVITETER' + | 'VENT_BEREGNING_TILBAKE_I_TID' + | 'VENT_DEKGRAD_REGEL' + | 'VENT_DØDFØDSEL_80P_DEKNINGSGRAD' + | 'VENT_FEIL_ENDRINGSSØKNAD' + | 'VENT_GRADERING_UTEN_BEREGNINGSGRUNNLAG' + | 'VENT_INFOTRYGD' + | 'VENT_MANGLENDE_ARBEIDSFORHOLD' + | 'VENT_MILITÆR_OG_BG_UNDER_3G' + | 'ULIKE_STARTDATOER_SVP' + | 'VENT_LOVENDRING_8_41' + | 'VENT_PÅ_KORRIGERT_BESTEBEREGNING' + | 'VENT_PÅ_NY_INNTEKTSMELDING_MED_GYLDIG_ARB_ID' + | 'VENT_REGISTERINNHENTING' + | 'VENT_ØKONOMI'; +}; + +export type GjenopptaBehandlingDto = { + behandlingUuid: string; + behandlingVersjon: number; +}; + +export type HenleggBehandlingDto = { + behandlingUuid: string; + årsakKode: string; + begrunnelse?: string; + behandlingVersjon?: number; +}; + +export type SaksnummerDto = { + saksnummer: string; +}; + +export type BehandlingIdDto = { + behandlingUuid: string; +}; + +export type AksjonspunktDto = { + definisjon: + | '5001' + | '5027' + | '5004' + | '5005' + | '5006' + | '5007' + | '5008' + | '5011' + | '5012' + | '5013' + | '5014' + | '5015' + | '5016' + | '5017' + | '5002' + | '5026' + | '5028' + | '5030' + | '5031' + | '5033' + | '5034' + | '5003' + | '5035' + | '5037' + | '5038' + | '5039' + | '5040' + | '5043' + | '5046' + | '5047' + | '5049' + | '5051' + | '5052' + | '5054' + | '5055' + | '5057' + | '5058' + | '5059' + | '5060' + | '5061' + | '5068' + | '5064' + | '5065' + | '5063' + | '5066' + | '5071' + | '5072' + | '5069' + | '5073' + | '5076' + | '5077' + | '5085' + | '5082' + | '5084' + | '5029' + | '5086' + | '5089' + | '5041' + | '5062' + | '5091' + | '5092' + | '5095' + | '5096' + | '5074' + | '5101' + | '5102' + | '6002' + | '6003' + | '6004' + | '6005' + | '6006' + | '6008' + | '6009' + | '6010' + | '6011' + | '6065' + | '6014' + | '6015' + | '6045' + | '6016' + | '6018' + | '6017' + | '7001' + | '7002' + | '7003' + | '7005' + | '7007' + | '7008' + | '7011' + | '7013' + | '7014' + | '7020' + | '7030' + | '7033' + | '7037' + | '7039' + | '7040' + | "UNDEFINED('null')" + | '5009' + | '5019' + | '5020' + | '5021' + | '5022' + | '5023' + | '5024' + | '5025' + | '5032' + | '5036' + | '5042' + | '5044' + | '5045' + | '5048' + | '5050' + | '5053' + | '5056' + | '5067' + | '5070' + | '5075' + | '5078' + | '5079' + | '5080' + | '5081' + | '5083' + | '5087' + | '5088' + | '5090' + | '5093' + | '5094' + | '5097' + | '5098' + | '5099' + | '6007' + | '6012' + | '6013' + | '6068' + | '6070' + | '7004' + | '7006' + | '7009' + | '7015' + | '7016' + | '7017' + | '7018' + | '7019' + | '7021' + | '7022' + | '7023' + | '7024' + | '7025' + | '7026' + | '7027' + | '7028' + | '7029' + | '7032' + | '7034' + | '7035' + | '7036' + | '7038' + | '7041'; + status: 'AVBR' | 'OPPR' | 'UTFO'; + begrunnelse: string | null; + vilkarType: + | 'FP_VK_1' + | 'FP_VK_11' + | 'FP_VK_16' + | 'FP_VK_2' + | 'FP_VK_2_F' + | 'FP_VK_2_L' + | 'FP_VK_3' + | 'FP_VK_4' + | 'FP_VK_5' + | 'FP_VK_8' + | 'FP_VK_33' + | 'FP_VK_34' + | 'FP_VK_21' + | 'FP_VK_23' + | 'FP_VK_41' + | 'SVP_VK_1' + | '-'; + toTrinnsBehandling: boolean; + toTrinnsBehandlingGodkjent: boolean | null; + vurderPaNyttArsaker: Array< + 'FEIL_FAKTA' | 'FEIL_LOV' | 'SKJØNN' | 'UTREDNING' | 'SAKSFLYT' | 'BEGRUNNELSE' | '-' | 'ANNET' | 'FEIL_REGEL' + > | null; + besluttersBegrunnelse: string | null; + aksjonspunktType: 'AUTO' | 'MANU' | 'OVST' | 'SAOV' | '-'; + kanLoses: boolean; + erAktivt: boolean; + fristTid: string | null; + endretTidspunkt: string | null; + endretAv: string | null; +}; + +export type AsyncPollingStatus = { + status?: 'PENDING' | 'COMPLETE' | 'DELAYED' | 'CANCELLED' | 'HALTED'; + eta?: string; + message?: string; + pollIntervalMillis?: number; + location?: string; + cancelUri?: string; + readOnly?: boolean; + pending?: boolean; +}; + +export type UtvidetBehandlingDto = { + id?: number; + uuid?: string; + versjon?: number; + type?: 'BT-002' | 'BT-003' | 'BT-004' | 'BT-008' | 'BT-006' | 'BT-007' | 'BT-009' | '-'; + status?: 'AVSLU' | 'FVED' | 'IVED' | 'OPPRE' | 'UTRED'; + fagsakId?: number; + opprettet?: string; + avsluttet?: string; + endret?: string; + endretAvBrukernavn?: string; + behandlendeEnhetId?: string; + behandlendeEnhetNavn?: string; + erAktivPapirsoknad?: boolean; + førsteÅrsak?: BehandlingÅrsakDto; + behandlingsfristTid?: string; + gjeldendeVedtak?: boolean; + erPaaVent?: boolean; + originalVedtaksDato?: string; + behandlingHenlagt?: boolean; + behandlingPaaVent?: boolean; + behandlingPåVent?: boolean; + fristBehandlingPåVent?: string; + fristBehandlingPaaVent?: string; + venteArsakKode?: string; + venteÅrsakKode?: string; + sprakkode?: 'NB' | 'NN' | 'EN' | '-'; + språkkode?: 'NB' | 'NN' | 'EN' | '-'; + behandlingKøet?: boolean; + ansvarligSaksbehandler?: string; + toTrinnsBehandling?: boolean; + behandlingsresultat?: BehandlingsresultatDto; + behandlingÅrsaker?: Array; + vilkår?: Array; + links?: Array; + ansvarligBeslutter?: string; + aksjonspunkt?: Array; + harSøknad?: boolean; + harRegisterdata?: boolean; + harSattEndringsdato?: boolean; + alleUttaksperioderAvslått?: boolean; + sjekkSimuleringResultat?: boolean; + taskStatus?: AsyncPollingStatus; + behandlingKoet?: boolean; +}; + +export type NyBehandlingDto = { + saksnummer: string; + behandlingType: 'BT-002' | 'BT-003' | 'BT-004' | 'BT-008' | 'BT-006' | 'BT-007' | 'BT-009' | '-'; + behandlingArsakType?: + | 'RE-LOV' + | 'RE-RGLF' + | 'RE-FEFAKTA' + | 'RE-PRSSL' + | 'RE-ANNET' + | 'RE-MDL' + | 'RE-OPTJ' + | 'RE-FRDLING' + | 'RE-INNTK' + | 'RE-FØDSEL' + | 'RE-DØD' + | 'RE-SRTB' + | 'RE-FRIST' + | 'RE-BER-GRUN' + | 'RE-KLAG-U-INNTK' + | 'RE-KLAG-M-INNTK' + | 'ETTER_KLAGE' + | 'RE-MF' + | 'RE-MFIP' + | 'RE-AVAB' + | 'RE-END-FRA-BRUKER' + | 'RE-END-INNTEKTSMELD' + | 'BERØRT-BEHANDLING' + | 'REBEREGN-FERIEPENGER' + | 'RE-UTSATT-START' + | 'RE-SATS-REGULERING' + | 'ENDRE-DEKNINGSGRAD' + | 'INFOBREV_BEHANDLING' + | 'INFOBREV_OPPHOLD' + | 'INFOBREV_PÅMINNELSE' + | 'OPPHØR-NYTT-BARN' + | 'RE-HENDELSE-FØDSEL' + | 'RE-HENDELSE-DØD-F' + | 'RE-HENDELSE-DØD-B' + | 'RE-HENDELSE-DØDFØD' + | 'RE-HENDELSE-UTFLYTTING' + | 'RE-VEDTAK-PSB' + | 'FEIL_PRAKSIS_UTSETTELSE' + | 'FEIL_PRAKSIS_IVERKS_UTSET' + | 'KLAGE_TILBAKE' + | 'RE-YTELSE' + | 'RE-REGISTEROPPL' + | 'KØET-BEHANDLING' + | 'RE-TILST-YT-INNVIL' + | 'RE-TILST-YT-OPPH' + | '-'; + nyBehandlingEtterKlage?: boolean; +}; + +export type ProsessTaskGruppeIdDto = { + gruppe?: string; +}; + +export type BekreftedeAksjonspunkterDto = { + behandlingUuid: string; + behandlingVersjon: number; + bekreftedeAksjonspunktDtoer?: Array; +}; + +export type BekreftetAksjonspunktDto = { + begrunnelse?: string; +}; + +export type OverstyringAksjonspunktDto = { + begrunnelse?: string; +}; + +export type OverstyrteAksjonspunkterDto = { + behandlingUuid: string; + behandlingVersjon: number; + overstyrteAksjonspunktDtoer?: Array; +}; + +export type AnkeVurderingResultatDto = { + ankeVurdering?: + | 'ANKE_STADFESTE_YTELSESVEDTAK' + | 'ANKE_HJEMSENDE_UTEN_OPPHEV' + | 'ANKE_OPPHEVE_OG_HJEMSENDE' + | 'ANKE_OMGJOER' + | 'ANKE_AVVIS' + | '-'; + begrunnelse?: string; + fritekstTilBrev?: string; + ankeOmgjoerArsak?: 'NYE_OPPLYSNINGER' | 'ULIK_REGELVERKSTOLKNING' | 'ULIK_VURDERING' | 'PROSESSUELL_FEIL' | '-'; + ankeVurderingOmgjoer?: 'ANKE_TIL_GUNST' | 'ANKE_DELVIS_OMGJOERING_TIL_GUNST' | 'ANKE_TIL_UGUNST' | '-'; + erAnkerIkkePart?: boolean; + erFristIkkeOverholdt?: boolean; + erIkkeKonkret?: boolean; + erIkkeSignert?: boolean; + erSubsidiartRealitetsbehandles?: boolean; + erMerknaderMottatt?: boolean; + merknadKommentar?: string; + påAnketKlageBehandlingUuid?: string; + trygderettVurdering?: + | 'ANKE_STADFESTE_YTELSESVEDTAK' + | 'ANKE_HJEMSENDE_UTEN_OPPHEV' + | 'ANKE_OPPHEVE_OG_HJEMSENDE' + | 'ANKE_OMGJOER' + | 'ANKE_AVVIS' + | '-'; + trygderettOmgjoerArsak?: 'NYE_OPPLYSNINGER' | 'ULIK_REGELVERKSTOLKNING' | 'ULIK_VURDERING' | 'PROSESSUELL_FEIL' | '-'; + trygderettVurderingOmgjoer?: 'ANKE_TIL_GUNST' | 'ANKE_DELVIS_OMGJOERING_TIL_GUNST' | 'ANKE_TIL_UGUNST' | '-'; + sendtTilTrygderettenDato?: string; +}; + +export type AnkebehandlingDto = { + ankeVurderingResultat?: AnkeVurderingResultatDto; + underBehandlingKabal?: boolean; + underBehandlingKabalTrygderett?: boolean; + behandletAvKabal?: boolean; +}; + +export type Beløp = { + verdi?: number; + indexKey?: string; +}; + +export type DatoIntervallEntitet = { + fomDato?: string; + tomDato?: string; +}; + +export type InntektsmeldingDto = { + arbeidsgiverReferanse?: string; + arbeidsgiver?: string; + arbeidsgiverOrgnr?: string; + arbeidsgiverStartdato?: string; + innsendingstidspunkt?: string; + utsettelsePerioder?: Array; + graderingPerioder?: Array; + getRefusjonBeløpPerMnd?: Beløp; +}; + +export type NaturalYtelse = { + periode?: DatoIntervallEntitet; + beloepPerMnd?: Beløp; + type?: + | 'ELEKTRISK_KOMMUNIKASJON' + | 'AKSJER_UNDERKURS' + | 'LOSJI' + | 'KOST_DOEGN' + | 'BESOEKSREISER_HJEM' + | 'KOSTBESPARELSE_HJEM' + | 'RENTEFORDEL_LAAN' + | 'BIL' + | 'KOST_DAGER' + | 'BOLIG' + | 'FORSIKRINGER' + | 'FRI_TRANSPORT' + | 'OPSJONER' + | 'TILSKUDD_BARNEHAGE' + | 'ANNET' + | 'BEDRIFTSBARNEHAGE' + | 'YRKESBIL_KILOMETER' + | 'YRKESBIL_LISTEPRIS' + | 'UTENLANDSK_PENSJONSORDNING' + | '-'; + indexKey?: string; +}; + +export type Refusjon = { + refusjonsbeløpMnd?: number; + fomDato?: string; +}; + +export type ArbeidOgInntektsmeldingDto = { + inntektsmeldinger?: Array; + arbeidsforhold?: Array; + inntekter?: Array; + skjæringstidspunkt?: string; +}; + +export type ArbeidsforholdDto = { + arbeidsgiverReferanse?: string; + arbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; +}; + +export type InntektDto = { + arbeidsgiverIdent?: string; + inntekter?: Array; +}; + +export type InntektspostDto = { + beløp?: number; + fom?: string; + tom?: string; + type?: '-' | 'LØNN' | 'YTELSE' | 'VANLIG' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'NÆRING_FISKE_FANGST_FAMBARNEHAGE'; +}; + +export type PermisjonOgMangelDto = { + permisjonFom?: string; + permisjonTom?: string; + type?: + | '-' + | 'PERMISJON' + | 'UTDANNINGSPERMISJON' + | 'UTDANNINGSPERMISJON_IKKE_LOVFESTET' + | 'UTDANNINGSPERMISJON_LOVFESTET' + | 'VELFERDSPERMISJON' + | 'ANNEN_PERMISJON_IKKE_LOVFESTET' + | 'ANNEN_PERMISJON_LOVFESTET' + | 'PERMISJON_MED_FORELDREPENGER' + | 'PERMITTERING' + | 'PERMISJON_VED_MILITÆRTJENESTE'; + årsak?: + | 'PERMISJON' + | 'MANGLENDE_INNTEKTSMELDING' + | 'INNTEKTSMELDING_UTEN_ARBEIDSFORHOLD' + | 'ENDRING_I_ARBEIDSFORHOLDS_ID' + | 'PERMISJON_UTEN_SLUTTDATO'; + permisjonStatus?: '-' | 'BRUK_PERMISJON' | 'IKKE_BRUK_PERMISJON' | 'UGYLDIGE_PERIODER'; +}; + +export type ManueltArbeidsforholdDto = { + behandlingUuid: string; + begrunnelse?: string; + arbeidsgiverIdent: string; + internArbeidsforholdRef?: string; + arbeidsgiverNavn?: string; + fom: string; + tom?: string; + stillingsprosent: number; + vurdering: + | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_INNTEKTSMELDING' + | 'FORTSETT_UTEN_INNTEKTSMELDING' + | 'MELDING_TIL_ARBEIDSGIVER_NAV_NO' + | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_ARBEIDSFORHOLD' + | 'IKKE_OPPRETT_BASERT_PÅ_INNTEKTSMELDING' + | 'OPPRETT_BASERT_PÅ_INNTEKTSMELDING' + | 'MANUELT_OPPRETTET_AV_SAKSBEHANDLER' + | 'FJERN_FRA_BEHANDLINGEN' + | 'SLÅTT_SAMMEN_MED_ANNET' + | 'BRUK_MED_OVERSTYRT_PERIODE' + | 'INNTEKT_IKKE_MED_I_BG' + | 'BRUK' + | 'NYTT_ARBEIDSFORHOLD' + | '-'; + behandlingVersjon: number; +}; + +export type ManglendeOpplysningerVurderingDto = { + behandlingUuid: string; + vurdering?: + | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_INNTEKTSMELDING' + | 'FORTSETT_UTEN_INNTEKTSMELDING' + | 'MELDING_TIL_ARBEIDSGIVER_NAV_NO' + | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_ARBEIDSFORHOLD' + | 'IKKE_OPPRETT_BASERT_PÅ_INNTEKTSMELDING' + | 'OPPRETT_BASERT_PÅ_INNTEKTSMELDING' + | 'MANUELT_OPPRETTET_AV_SAKSBEHANDLER' + | 'FJERN_FRA_BEHANDLINGEN' + | 'SLÅTT_SAMMEN_MED_ANNET' + | 'BRUK_MED_OVERSTYRT_PERIODE' + | 'INNTEKT_IKKE_MED_I_BG' + | 'BRUK' + | 'NYTT_ARBEIDSFORHOLD' + | '-'; + begrunnelse?: string; + arbeidsgiverIdent: string; + internArbeidsforholdRef?: string; + behandlingVersjon: number; +}; + +export type BehandlingIdVersjonDto = { + behandlingUuid: string; + behandlingVersjon: number; +}; + +export type GraderingPeriodeDto = { + fom?: string; + tom?: string; + arbeidsprosent?: number; +}; + +export type InntektsmeldingerDto = { + inntektsmeldinger?: Array; +}; + +export type UtsettelsePeriodeDto = { + fom?: string; + tom?: string; + utsettelseArsak?: + | 'ARBEID' + | 'LOVBESTEMT_FERIE' + | 'SYKDOM' + | 'INSTITUSJONSOPPHOLD_SØKER' + | 'INSTITUSJONSOPPHOLD_BARNET' + | 'HV_OVELSE' + | 'NAV_TILTAK' + | 'FRI' + | '-'; +}; + +export type ArbeidsgiverOpplysningerDto = { + referanse?: string; + identifikator?: string; + navn?: string; + fødselsdato?: string; + erPrivatPerson?: boolean; +}; + +export type ArbeidsgiverOversiktDto = { + arbeidsgivere?: { + [key: string]: ArbeidsgiverOpplysningerDto; + }; +}; + +export type IayYtelseDto = { + relatertTilgrensendeYtelserForSoker?: Array; + relatertTilgrensendeYtelserForAnnenForelder?: Array; + innvilgetRelatertTilgrensendeYtelserForAnnenForelder?: Array; +}; + +export type RelaterteYtelserDto = { + relatertYtelseNavn?: string; + tilgrensendeYtelserListe?: Array; +}; + +export type TilgrensendeYtelserDto = { + periodeFraDato?: string; + periodeTilDato?: string; + statusNavn?: string; + saksNummer?: string; +}; + +export type ATogFliSammeOrganisasjonDto = { + andelsnr: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + inntektskategori: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + aktivitetStatus: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + kilde: + | 'SAKSBEHANDLER_KOFAKBER' + | 'PROSESS_BESTEBEREGNING' + | 'SAKSBEHANDLER_FORDELING' + | 'PROSESS_PERIODISERING' + | 'PROSESS_OMFORDELING' + | 'PROSESS_START' + | 'PROSESS_PERIODISERING_TILKOMMET_INNTEKT'; + lagtTilAvSaksbehandler?: boolean; + fastsattAvSaksbehandler?: boolean; + andelIArbeid: Array; + inntektPrMnd?: number; +}; + +export type AktivitetTomDatoMappingDto = { + tom: string; + aktiviteter: Array; +}; + +export type AndelForFaktaOmBeregningDto = { + belopReadOnly?: number; + fastsattBelop?: number; + inntektskategori?: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + aktivitetStatus?: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + refusjonskrav?: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + andelsnr?: number; + skalKunneEndreAktivitet?: boolean; + lagtTilAvSaksbehandler?: boolean; +}; + +export type AndelMedBeløpDto = { + andelsnr: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + inntektskategori: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + aktivitetStatus: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + kilde: + | 'SAKSBEHANDLER_KOFAKBER' + | 'PROSESS_BESTEBEREGNING' + | 'SAKSBEHANDLER_FORDELING' + | 'PROSESS_PERIODISERING' + | 'PROSESS_OMFORDELING' + | 'PROSESS_START' + | 'PROSESS_PERIODISERING_TILKOMMET_INNTEKT'; + lagtTilAvSaksbehandler?: boolean; + fastsattAvSaksbehandler?: boolean; + andelIArbeid: Array; + fastsattBelopPrMnd?: number; +}; + +export type Arbeidsgiver = { + identifikator?: string; + aktørId?: string; + orgnr?: string; + indexKey?: string; + erVirksomhet?: boolean; +}; + +export type ArbeidstakerUtenInntektsmeldingAndelDto = { + andelsnr: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + inntektskategori: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + aktivitetStatus: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + kilde: + | 'SAKSBEHANDLER_KOFAKBER' + | 'PROSESS_BESTEBEREGNING' + | 'SAKSBEHANDLER_FORDELING' + | 'PROSESS_PERIODISERING' + | 'PROSESS_OMFORDELING' + | 'PROSESS_START' + | 'PROSESS_PERIODISERING_TILKOMMET_INNTEKT'; + lagtTilAvSaksbehandler?: boolean; + fastsattAvSaksbehandler?: boolean; + andelIArbeid: Array; + mottarYtelse?: boolean; + inntektPrMnd?: number; +}; + +export type AvklarAktiviteterDto = { + aktiviteterTomDatoMapping?: Array; + skjæringstidspunkt: string; +}; + +export type AvklaringsbehovDto = { + definisjon: + | 'FASTSETT_BG_AT_FL' + | 'VURDER_VARIG_ENDRT_NYOPPSTR_NAERNG_SN' + | 'VURDER_VARIG_ENDRT_ARB_SITSJN_MDL_INAKTV' + | 'FORDEL_BG' + | 'FASTSETT_BG_TB_ARB' + | 'VURDER_NYTT_INNTKTSFRHLD' + | 'VURDER_REPRSNTR_STORTNGT' + | 'FASTSETT_BG_SN_NY_I_ARB_LIVT' + | 'AVKLAR_AKTIVITETER' + | 'VURDER_FAKTA_ATFL_SN' + | 'VURDER_REFUSJONSKRAV' + | 'OVST_BEREGNINGSAKTIVITETER' + | 'OVST_INNTEKT' + | 'AUTO_VENT_PAA_INNTKT_RAP_FRST' + | 'AUTO_VENT_PAA_SISTE_AAP_DP_MELDKRT' + | 'AUTO_VENT_FRISINN' + | 'INGEN_AKTIVITETER'; + status: 'OPPR' | 'UTFO' | 'AVBR'; + kanLoses: boolean; + erTrukket: boolean; + begrunnelse?: string; + vurdertAv?: string; + vurdertTidspunkt?: string; +}; + +export type AvslagsårsakPrPeriodeDto = { + fom: string; + tom: string; + avslagsårsak: + | 'FOR_LAVT_BG' + | 'INGEN_FRILANS_I_PERIODE_UTEN_YTELSE' + | 'AVKORTET_GRUNNET_LØPENDE_INNTEKT' + | 'AVKORTET_GRUNNET_ANNEN_INNTEKT'; +}; + +export type BeregningAktivitetDto = { + arbeidsgiverIdent?: string; + eksternArbeidsforholdId?: string; + fom: string; + tom: string; + arbeidsforholdId?: string; + arbeidsforholdType: + | 'AAP' + | 'ARBEID' + | 'DAGPENGER' + | 'FORELDREPENGER' + | 'FRILANS' + | 'MILITÆR_ELLER_SIVILTJENESTE' + | 'NÆRING' + | 'OMSORGSPENGER' + | 'OPPLÆRINGSPENGER' + | 'PLEIEPENGER' + | 'FRISINN' + | 'ETTERLØNN_SLUTTPAKKE' + | 'SVANGERSKAPSPENGER' + | 'SYKEPENGER' + | 'SYKEPENGER_AV_DAGPENGER' + | 'PLEIEPENGER_AV_DAGPENGER' + | 'VENTELØNN_VARTPENGER' + | 'VIDERE_ETTERUTDANNING' + | 'UTENLANDSK_ARBEIDSFORHOLD' + | 'UTDANNINGSPERMISJON' + | '-'; + skalBrukes?: boolean; +}; + +export type BeregningsgrunnlagArbeidsforholdDto = { + arbeidsgiverIdent?: string; + startdato?: string; + opphoersdato?: string; + arbeidsforholdId?: string; + eksternArbeidsforholdId?: string; + arbeidsforholdType?: + | 'AAP' + | 'ARBEID' + | 'DAGPENGER' + | 'FORELDREPENGER' + | 'FRILANS' + | 'MILITÆR_ELLER_SIVILTJENESTE' + | 'NÆRING' + | 'OMSORGSPENGER' + | 'OPPLÆRINGSPENGER' + | 'PLEIEPENGER' + | 'FRISINN' + | 'ETTERLØNN_SLUTTPAKKE' + | 'SVANGERSKAPSPENGER' + | 'SYKEPENGER' + | 'SYKEPENGER_AV_DAGPENGER' + | 'PLEIEPENGER_AV_DAGPENGER' + | 'VENTELØNN_VARTPENGER' + | 'VIDERE_ETTERUTDANNING' + | 'UTENLANDSK_ARBEIDSFORHOLD' + | 'UTDANNINGSPERMISJON' + | '-'; + refusjonPrAar?: number; + belopFraInntektsmeldingPrMnd?: number; + organisasjonstype?: 'JURIDISK_ENHET' | 'VIRKSOMHET' | 'KUNSTIG' | '-'; + naturalytelseBortfaltPrÅr?: number; + naturalytelseTilkommetPrÅr?: number; +}; + +export type BeregningsgrunnlagDto = { + avklaringsbehov: Array; + skjaeringstidspunktBeregning: string; + skjæringstidspunkt: string; + aktivitetStatus?: Array< + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-' + >; + beregningsgrunnlagPeriode?: Array; + sammenligningsgrunnlag: SammenligningsgrunnlagDto; + sammenligningsgrunnlagPrStatus?: Array; + halvG?: number; + grunnbeløp?: number; + faktaOmBeregning?: FaktaOmBeregningDto; + andelerMedGraderingUtenBG?: Array; + hjemmel?: + | 'F_9_9' + | 'F_9_8_8_28' + | 'F_9_9_8_28_8_30' + | 'F_9_9_8_35' + | 'F_9_9_8_38' + | 'F_9_9_8_40' + | 'F_9_9_8_41' + | 'F_9_9_8_42' + | 'F_9_9_8_43' + | 'F_9_9_8_47' + | 'F_9_9_8_49' + | 'F_14_7' + | 'F_14_7_8_30' + | 'F_14_7_8_28_8_30' + | 'F_14_7_8_35' + | 'F_14_7_8_38' + | 'F_14_7_8_40' + | 'F_14_7_8_41' + | 'F_14_7_8_42' + | 'F_14_7_8_43' + | 'F_14_7_8_47' + | 'F_14_7_8_49' + | 'F_22_13_6' + | 'COV_1_5' + | 'KORONALOVEN_3' + | '-'; + faktaOmFordeling?: FordelingDto; + dekningsgrad?: number; + ytelsesspesifiktGrunnlag?: YtelsespesifiktGrunnlagDto; + refusjonTilVurdering?: RefusjonTilVurderingDto; + erOverstyrtInntekt: boolean; + vilkårsperiodeFom?: string; + inntektsgrunnlag?: InntektsgrunnlagDto; + forlengelseperioder?: Array; +}; + +export type BeregningsgrunnlagPeriodeDto = { + beregningsgrunnlagPeriodeFom?: string; + beregningsgrunnlagPeriodeTom?: string; + beregnetPrAar?: number; + bruttoPrAar?: number; + bruttoInkludertBortfaltNaturalytelsePrAar?: number; + avkortetPrAar?: number; + redusertPrAar?: number; + periodeAarsaker?: Array< + | 'NATURALYTELSE_BORTFALT' + | 'ARBEIDSFORHOLD_AVSLUTTET' + | 'NATURALYTELSE_TILKOMMER' + | 'ENDRING_I_REFUSJONSKRAV' + | 'REFUSJON_OPPHØRER' + | 'GRADERING' + | 'GRADERING_OPPHØRER' + | 'ENDRING_I_AKTIVITETER_SØKT_FOR' + | 'TILKOMMET_INNTEKT' + | 'TILKOMMET_INNTEKT_MANUELT' + | 'TILKOMMET_INNTEKT_AVSLUTTET' + | 'REFUSJON_AVSLÅTT' + | 'REPRESENTERER_STORTINGET' + | 'REPRESENTERER_STORTINGET_AVSLUTTET' + | '-' + >; + dagsats?: number; + beregningsgrunnlagPrStatusOgAndel?: Array; +}; + +export type BeregningsgrunnlagPrStatusOgAndelAtDto = BeregningsgrunnlagPrStatusOgAndelDto & { + dtoType: 'BeregningsgrunnlagPrStatusOgAndelATDto'; +} & { + bortfaltNaturalytelse?: number; +}; + +export type BeregningsgrunnlagPrStatusOgAndelDto = { + aktivitetStatus?: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + beregningsperiodeFom?: string; + beregningsperiodeTom?: string; + beregnetPrAar?: number; + overstyrtPrAar?: number; + bruttoPrAar?: number; + avkortetPrAar?: number; + redusertPrAar?: number; + erTidsbegrensetArbeidsforhold?: boolean; + erNyIArbeidslivet?: boolean; + lonnsendringIBeregningsperioden?: boolean; + andelsnr?: number; + besteberegningPrAar?: number; + inntektskategori?: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + fastsattAvSaksbehandler?: boolean; + lagtTilAvSaksbehandler?: boolean; + belopPrMndEtterAOrdningen?: number; + belopPrAarEtterAOrdningen?: number; + dagsats?: number; + originalDagsatsFraTilstøtendeYtelse?: number; + fordeltPrAar?: number; + erTilkommetAndel?: boolean; + skalFastsetteGrunnlag?: boolean; + dtoType: string; +}; + +export type BeregningsgrunnlagPrStatusOgAndelDtoFelles = BeregningsgrunnlagPrStatusOgAndelDto & { + dtoType: 'BeregningsgrunnlagPrStatusOgAndelDtoFelles'; +}; + +export type BeregningsgrunnlagPrStatusOgAndelFlDto = BeregningsgrunnlagPrStatusOgAndelDto & { + dtoType: 'BeregningsgrunnlagPrStatusOgAndelFLDto'; +} & { + erNyoppstartet?: boolean; +}; + +export type BeregningsgrunnlagPrStatusOgAndelSnDto = BeregningsgrunnlagPrStatusOgAndelDto & { + dtoType: 'BeregningsgrunnlagPrStatusOgAndelSNDto'; +} & { + pgiSnitt?: number; + pgiVerdier?: Array; + næringer?: Array; +}; + +export type BeregningsgrunnlagPrStatusOgAndelYtelseDto = BeregningsgrunnlagPrStatusOgAndelDto & { + dtoType: 'BeregningsgrunnlagPrStatusOgAndelYtelseDto'; +} & { + belopFraMeldekortPrMnd?: number; + belopFraMeldekortPrAar?: number; + oppjustertGrunnlag?: number; +}; + +export type BesteberegningInntektDto = { + arbeidsgiverId?: string; + arbeidsgiverIdent?: string; + arbeidsforholdId?: string; + opptjeningAktivitetType: + | 'AAP' + | 'ARBEID' + | 'DAGPENGER' + | 'FORELDREPENGER' + | 'FRILANS' + | 'MILITÆR_ELLER_SIVILTJENESTE' + | 'NÆRING' + | 'OMSORGSPENGER' + | 'OPPLÆRINGSPENGER' + | 'PLEIEPENGER' + | 'FRISINN' + | 'ETTERLØNN_SLUTTPAKKE' + | 'SVANGERSKAPSPENGER' + | 'SYKEPENGER' + | 'SYKEPENGER_AV_DAGPENGER' + | 'PLEIEPENGER_AV_DAGPENGER' + | 'VENTELØNN_VARTPENGER' + | 'VIDERE_ETTERUTDANNING' + | 'UTENLANDSK_ARBEIDSFORHOLD' + | 'UTDANNINGSPERMISJON' + | '-'; + inntekt: number; +}; + +export type BesteberegningMånedGrunnlagDto = { + inntekter?: Array; + fom: string; + tom: string; +}; + +export type BesteberegninggrunnlagDto = { + besteMåneder?: [ + BesteberegningMånedGrunnlagDto, + BesteberegningMånedGrunnlagDto, + BesteberegningMånedGrunnlagDto, + BesteberegningMånedGrunnlagDto, + BesteberegningMånedGrunnlagDto, + BesteberegningMånedGrunnlagDto, + ]; + avvik?: number; +}; + +export type EgenNæringDto = { + utenlandskvirksomhetsnavn?: string; + orgnr?: string; + erVarigEndret?: boolean; + erNyoppstartet?: boolean; + virksomhetType?: 'DAGMAMMA' | 'FISKE' | 'FRILANSER' | 'JORDBRUK_SKOGBRUK' | 'ANNEN' | '-'; + begrunnelse?: string; + endringsdato?: string; + oppstartsdato?: string; + opphørsdato?: string; + regnskapsførerNavn?: string; + regnskapsførerTlf?: string; + kanRegnskapsførerKontaktes?: boolean; + erNyIArbeidslivet?: boolean; + oppgittInntekt?: number; +}; + +export type FaktaOmBeregningAndelDto = { + andelsnr: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + inntektskategori: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + aktivitetStatus: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + kilde: + | 'SAKSBEHANDLER_KOFAKBER' + | 'PROSESS_BESTEBEREGNING' + | 'SAKSBEHANDLER_FORDELING' + | 'PROSESS_PERIODISERING' + | 'PROSESS_OMFORDELING' + | 'PROSESS_START' + | 'PROSESS_PERIODISERING_TILKOMMET_INNTEKT'; + lagtTilAvSaksbehandler?: boolean; + fastsattAvSaksbehandler?: boolean; + andelIArbeid: Array; +}; + +export type FaktaOmBeregningDto = { + saksopplysninger?: Saksopplysninger; + kortvarigeArbeidsforhold?: Array; + frilansAndel?: FaktaOmBeregningAndelDto; + kunYtelse?: KunYtelseDto; + faktaOmBeregningTilfeller?: Array< + | 'VURDER_TIDSBEGRENSET_ARBEIDSFORHOLD' + | 'VURDER_SN_NY_I_ARBEIDSLIVET' + | 'VURDER_NYOPPSTARTET_FL' + | 'FASTSETT_MAANEDSINNTEKT_FL' + | 'FASTSETT_BG_ARBEIDSTAKER_UTEN_INNTEKTSMELDING' + | 'VURDER_LØNNSENDRING' + | 'FASTSETT_MÅNEDSLØNN_ARBEIDSTAKER_UTEN_INNTEKTSMELDING' + | 'VURDER_AT_OG_FL_I_SAMME_ORGANISASJON' + | 'FASTSETT_BESTEBEREGNING_FØDENDE_KVINNE' + | 'VURDER_ETTERLØNN_SLUTTPAKKE' + | 'FASTSETT_ETTERLØNN_SLUTTPAKKE' + | 'VURDER_MOTTAR_YTELSE' + | 'VURDER_BESTEBEREGNING' + | 'VURDER_MILITÆR_SIVILTJENESTE' + | 'VURDER_REFUSJONSKRAV_SOM_HAR_KOMMET_FOR_SENT' + | 'FASTSETT_BG_KUN_YTELSE' + | 'TILSTØTENDE_YTELSE' + | 'FASTSETT_ENDRET_BEREGNINGSGRUNNLAG' + | '-' + >; + arbeidstakerOgFrilanserISammeOrganisasjonListe?: Array; + arbeidsforholdMedLønnsendringUtenIM?: Array; + vurderMottarYtelse?: VurderMottarYtelseDto; + avklarAktiviteter?: AvklarAktiviteterDto; + vurderBesteberegning?: VurderBesteberegningDto; + andelerForFaktaOmBeregning?: Array; + vurderMilitaer?: VurderMilitærDto; + refusjonskravSomKommerForSentListe?: Array; +}; + +export type FordelBeregningsgrunnlagAndelDto = { + andelsnr: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + inntektskategori: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + aktivitetStatus: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + kilde: + | 'SAKSBEHANDLER_KOFAKBER' + | 'PROSESS_BESTEBEREGNING' + | 'SAKSBEHANDLER_FORDELING' + | 'PROSESS_PERIODISERING' + | 'PROSESS_OMFORDELING' + | 'PROSESS_START' + | 'PROSESS_PERIODISERING_TILKOMMET_INNTEKT'; + lagtTilAvSaksbehandler?: boolean; + fastsattAvSaksbehandler?: boolean; + andelIArbeid: Array; + fordelingForrigeBehandlingPrAar?: number; + refusjonskravPrAar?: number; + fordeltPrAar?: number; + belopFraInntektsmeldingPrAar?: number; + refusjonskravFraInntektsmeldingPrAar?: number; + nyttArbeidsforhold?: boolean; + arbeidsforholdType: + | 'AAP' + | 'ARBEID' + | 'DAGPENGER' + | 'FORELDREPENGER' + | 'FRILANS' + | 'MILITÆR_ELLER_SIVILTJENESTE' + | 'NÆRING' + | 'OMSORGSPENGER' + | 'OPPLÆRINGSPENGER' + | 'PLEIEPENGER' + | 'FRISINN' + | 'ETTERLØNN_SLUTTPAKKE' + | 'SVANGERSKAPSPENGER' + | 'SYKEPENGER' + | 'SYKEPENGER_AV_DAGPENGER' + | 'PLEIEPENGER_AV_DAGPENGER' + | 'VENTELØNN_VARTPENGER' + | 'VIDERE_ETTERUTDANNING' + | 'UTENLANDSK_ARBEIDSFORHOLD' + | 'UTDANNINGSPERMISJON' + | '-'; +}; + +export type FordelBeregningsgrunnlagArbeidsforholdDto = { + arbeidsgiverIdent?: string; + startdato?: string; + opphoersdato?: string; + arbeidsforholdId?: string; + eksternArbeidsforholdId?: string; + arbeidsforholdType?: + | 'AAP' + | 'ARBEID' + | 'DAGPENGER' + | 'FORELDREPENGER' + | 'FRILANS' + | 'MILITÆR_ELLER_SIVILTJENESTE' + | 'NÆRING' + | 'OMSORGSPENGER' + | 'OPPLÆRINGSPENGER' + | 'PLEIEPENGER' + | 'FRISINN' + | 'ETTERLØNN_SLUTTPAKKE' + | 'SVANGERSKAPSPENGER' + | 'SYKEPENGER' + | 'SYKEPENGER_AV_DAGPENGER' + | 'PLEIEPENGER_AV_DAGPENGER' + | 'VENTELØNN_VARTPENGER' + | 'VIDERE_ETTERUTDANNING' + | 'UTENLANDSK_ARBEIDSFORHOLD' + | 'UTDANNINGSPERMISJON' + | '-'; + refusjonPrAar?: number; + belopFraInntektsmeldingPrMnd?: number; + organisasjonstype?: 'JURIDISK_ENHET' | 'VIRKSOMHET' | 'KUNSTIG' | '-'; + naturalytelseBortfaltPrÅr?: number; + naturalytelseTilkommetPrÅr?: number; + perioderMedGraderingEllerRefusjon: Array; + permisjon?: PermisjonDto; +}; + +export type FordelBeregningsgrunnlagDto = { + fordelBeregningsgrunnlagPerioder: Array; + arbeidsforholdTilFordeling: Array; +}; + +export type FordelBeregningsgrunnlagPeriodeDto = { + fom: string; + tom?: string; + fordelBeregningsgrunnlagAndeler: Array; + harPeriodeAarsakGraderingEllerRefusjon?: boolean; + skalRedigereInntekt?: boolean; + skalPreutfyllesMedBeregningsgrunnlag?: boolean; + skalKunneEndreRefusjon?: boolean; +}; + +export type FordelingDto = { + vurderNyttInntektsforholdDto?: VurderNyttInntektsforholdDto; + vurderRepresentererStortinget?: VurderRepresentererStortingetDto; + fordelBeregningsgrunnlag?: FordelBeregningsgrunnlagDto; +}; + +export type ForeldrepengerGrunnlagDto = YtelsespesifiktGrunnlagDto & { + ytelsetype: 'ForeldrepengerGrunnlagDto'; +} & { + besteberegninggrunnlag?: BesteberegninggrunnlagDto; +}; + +export type FrisinnAndelDto = { + oppgittInntekt?: number; + statusSøktFor: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; +}; + +export type FrisinnGrunnlagDto = YtelsespesifiktGrunnlagDto & { + ytelsetype: 'FrisinnGrunnlagDto'; +} & { + opplysningerFL?: SøknadsopplysningerDto; + opplysningerSN?: SøknadsopplysningerDto; + perioderSøktFor: Array; + frisinnPerioder: Array; + avslagsårsakPrPeriode: Array; +}; + +export type FrisinnPeriodeDto = { + fom: string; + tom: string; + oppgittArbeidsinntekt?: number; + frisinnAndeler: Array; +}; + +export type InntektsforholdDto = { + aktivitetStatus: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + arbeidsgiverId?: string; + arbeidsforholdId?: string; + eksternArbeidsforholdId?: string; + periode: Periode; + inntektFraInntektsmeldingPrÅr?: number; + bruttoInntektPrÅr?: number; + skalRedusereUtbetaling?: boolean; +}; + +export type InntektsgrunnlagDto = { + måneder: Array; + pgiGrunnlag: Array; + sammenligningsgrunnlagInntekter: Array; + beregningsgrunnlagInntekter: Array; +}; + +export type InntektsgrunnlagInntektDto = { + inntektAktivitetType: 'ARBEIDSTAKERINNTEKT' | 'FRILANSINNTEKT' | 'YTELSEINNTEKT' | '-'; + beløp?: number; + arbeidsgiverIdent?: string; +}; + +export type InntektsgrunnlagMånedDto = { + fom: string; + tom: string; + inntekter?: Array; +}; + +export type KortvarigeArbeidsforholdDto = { + andelsnr: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + inntektskategori: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + aktivitetStatus: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + kilde: + | 'SAKSBEHANDLER_KOFAKBER' + | 'PROSESS_BESTEBEREGNING' + | 'SAKSBEHANDLER_FORDELING' + | 'PROSESS_PERIODISERING' + | 'PROSESS_OMFORDELING' + | 'PROSESS_START' + | 'PROSESS_PERIODISERING_TILKOMMET_INNTEKT'; + lagtTilAvSaksbehandler?: boolean; + fastsattAvSaksbehandler?: boolean; + andelIArbeid: Array; + erTidsbegrensetArbeidsforhold?: boolean; +}; + +export type KunYtelseDto = { + andeler?: Array; + fodendeKvinneMedDP?: boolean; + erBesteberegning?: boolean; +}; + +export type LønnsendringSaksopplysningDto = { + sisteLønnsendringsdato: string; + lønnsendringscenario: + | 'MANUELT_BEHANDLET' + | 'DELVIS_MÅNEDSINNTEKT_SISTE_MND' + | 'FULL_MÅNEDSINNTEKT_EN_MND' + | 'FULL_MÅNEDSINNTEKT_TO_MND'; + arbeidsforhold: ArbeidsforholdDto; +}; + +export type NyPeriodeDto = { + erRefusjon?: boolean; + erGradering?: boolean; + erSøktYtelse?: boolean; + fom?: string; + tom?: string; +}; + +export type OmsorgspengeGrunnlagDto = YtelsespesifiktGrunnlagDto & { + ytelsetype: 'OmsorgspengeGrunnlagDto'; +} & { + skalAvviksvurdere?: boolean; +}; + +export type OpplystPeriodeDto = { + fom: string; + tom: string; + statusSøktFor: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; +}; + +export type PgiGrunnlagDto = { + pgiType: 'LØNN' | 'NÆRING' | '-'; + beløp?: number; +}; + +export type PgiPrÅrDto = { + år: number; + inntekter?: Array; +}; + +export type Periode = { + fom?: string; + tom?: string; +}; + +export type PermisjonDto = { + permisjonFom: string; + permisjonTom: string; +}; + +export type PgiDto = { + beløp?: number; + årstall?: number; +}; + +export type RefusjonAndelTilVurderingDto = { + aktivitetStatus: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + tidligereUtbetalinger?: Array; + nyttRefusjonskravFom?: string; + fastsattNyttRefusjonskravFom?: string; + tidligsteMuligeRefusjonsdato?: string; + arbeidsgiver?: Arbeidsgiver; + internArbeidsforholdRef?: string; + eksternArbeidsforholdRef?: string; + skalKunneFastsetteDelvisRefusjon?: boolean; + fastsattDelvisRefusjonPrMnd?: number; + maksTillattDelvisRefusjonPrMnd?: number; +}; + +export type RefusjonTilVurderingDto = { + andeler: Array; +}; + +export type RefusjonskravSomKommerForSentDto = { + arbeidsgiverIdent: string; + erRefusjonskravGyldig?: boolean; +}; + +export type Saksopplysninger = { + arbeidsforholdMedLønnsendring?: Array; + lønnsendringSaksopplysning?: Array; + kortvarigeArbeidsforhold?: Array; +}; + +export type SammenligningsgrunnlagDto = { + sammenligningsgrunnlagFom?: string; + sammenligningsgrunnlagTom?: string; + rapportertPrAar?: number; + avvikPromille?: number; + avvikProsent?: number; + sammenligningsgrunnlagType?: + | 'SAMMENLIGNING_AT' + | 'SAMMENLIGNING_FL' + | 'SAMMENLIGNING_AT_FL' + | 'SAMMENLIGNING_SN' + | 'SAMMENLIGNING_ATFL_SN' + | 'SAMMENLIGNING_MIDL_INAKTIV'; + differanseBeregnet?: number; +}; + +export type SvangerskapspengerGrunnlagDto = YtelsespesifiktGrunnlagDto & { + ytelsetype: 'SvangerskapspengerGrunnlagDto'; +}; + +export type SøknadsopplysningerDto = { + oppgittÅrsinntekt?: number; + oppgittInntekt?: number; + erNyoppstartet?: boolean; +}; + +export type TidligereUtbetalingDto = { + fom: string; + tom?: string; + erTildeltRefusjon: boolean; +}; + +export type VurderBesteberegningDto = { + skalHaBesteberegning?: boolean; +}; + +export type VurderInntektsforholdPeriodeDto = { + fom: string; + tom: string; + inntektsforholdListe: Array; +}; + +export type VurderMilitærDto = { + harMilitaer?: boolean; +}; + +export type VurderMottarYtelseDto = { + erFrilans?: boolean; + frilansMottarYtelse?: boolean; + frilansInntektPrMnd?: number; + arbeidstakerAndelerUtenIM?: Array; +}; + +export type VurderNyttInntektsforholdDto = { + vurderInntektsforholdPerioder: Array; + harMottattOmsorgsstønadEllerFosterhjemsgodtgjørelse: boolean; +}; + +export type VurderRepresentererStortingetDto = { + stortingsperiodeFom?: string; + stortingsperiodeTom?: string; + representererStortinget?: boolean; +}; + +export type YtelsespesifiktGrunnlagDto = { + ytelsetype: string; +}; + +export type BeregningsresultatMedUttaksplanDto = { + perioder?: Array; +}; + +export type BeregningsresultatPeriodeAndelDto = { + arbeidsgiverReferanse?: string; + refusjon?: number; + tilSoker?: number; + uttak?: UttakDto; + utbetalingsgrad?: number; + sisteUtbetalingsdato?: string; + aktivitetStatus?: + | 'ARBEIDSAVKLARINGSPENGER' + | 'ARBEIDSTAKER' + | 'DAGPENGER' + | 'FRILANSER' + | 'MILITÆR_ELLER_SIVIL' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'KOMBINERT_AT_FL' + | 'KOMBINERT_AT_SN' + | 'KOMBINERT_FL_SN' + | 'KOMBINERT_AT_FL_SN' + | 'BRUKERS_ANDEL' + | 'KUN_YTELSE' + | 'TTLSTØTENDE_YTELSE' + | 'VENTELØNN_VARTPENGER' + | 'UDEFINERT'; + arbeidsforholdId?: string; + eksternArbeidsforholdId?: string; + aktørId?: string; + arbeidsforholdType?: + | 'AAP' + | 'ARBEID' + | 'DAGPENGER' + | 'FORELDREPENGER' + | 'FRILANS' + | 'FRILOPP' + | 'MILITÆR_ELLER_SIVILTJENESTE' + | 'NÆRING' + | 'OMSORGSPENGER' + | 'OPPLÆRINGSPENGER' + | 'PLEIEPENGER' + | 'FRISINN' + | 'ETTERLØNN_SLUTTPAKKE' + | 'SVANGERSKAPSPENGER' + | 'SYKEPENGER' + | 'VENTELØNN_VARTPENGER' + | 'VIDERE_ETTERUTDANNING' + | 'UTENLANDSK_ARBEIDSFORHOLD' + | 'UTDANNINGSPERMISJON' + | '-'; + stillingsprosent?: number; +}; + +export type BeregningsresultatPeriodeDto = { + fom?: string; + tom?: string; + dagsats?: number; + andeler?: Array; +}; + +export type UttakDto = { + stonadskontoType?: string; + periodeResultatType?: string; + gradering?: boolean; +}; + +export type BeregningsresultatEngangsstønadDto = { + beregnetTilkjentYtelse?: number; + satsVerdi?: number; + antallBarn?: number; +}; + +export type FeriepengegrunnlagAndelDto = { + aktivitetStatus: + | 'ARBEIDSAVKLARINGSPENGER' + | 'ARBEIDSTAKER' + | 'DAGPENGER' + | 'FRILANSER' + | 'MILITÆR_ELLER_SIVIL' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'KOMBINERT_AT_FL' + | 'KOMBINERT_AT_SN' + | 'KOMBINERT_FL_SN' + | 'KOMBINERT_AT_FL_SN' + | 'BRUKERS_ANDEL' + | 'KUN_YTELSE' + | 'TTLSTØTENDE_YTELSE' + | 'VENTELØNN_VARTPENGER' + | 'UDEFINERT'; + arbeidsgiverId: string; + arbeidsforholdId: string; + opptjeningsår: number; + årsbeløp: number; + erBrukerMottaker: boolean; +}; + +export type FeriepengegrunnlagDto = { + andeler: Array; +}; + +export type AntallBarn = { + kilde?: 'SAKSBEHANDLER' | 'SØKNAD' | 'FOLKEREGISTER'; + antall?: number; +}; + +export type BarnHendelseData = { + fødselsdato?: string; + dødsdato?: string; +}; + +export type FødselDto = { + søknad?: Søknad; + register?: Register; + gjeldende?: Gjeldende; +}; + +export type Gjeldende = { + termin?: Termin; + utstedtdato?: Utstedtdato; + antallBarn?: AntallBarn; + barn?: Array; + fødselDokumetasjonStatus?: 'DOKUMENTERT' | 'IKKE_DOKUMENTERT' | 'IKKE_VURDERT'; +}; + +export type GjeldendeBarn = { + kilde?: 'SAKSBEHANDLER' | 'SØKNAD' | 'FOLKEREGISTER'; + barn?: BarnHendelseData; + kanOverstyres?: boolean; +}; + +export type Register = { + barn?: Array; +}; + +export type Søknad = { + status?: 'MOTTATT' | 'BEHANDLET'; + mottattTidspunkt?: string; +}; + +export type Termin = { + kilde?: 'SAKSBEHANDLER' | 'SØKNAD' | 'FOLKEREGISTER'; + termindato?: string; +}; + +export type Utstedtdato = { + kilde?: 'SAKSBEHANDLER' | 'SØKNAD' | 'FOLKEREGISTER'; + utstedtdato?: string; +}; + +export type InnsynDokumentDto = { + fikkInnsyn?: boolean; + journalpostId?: string; + dokumentId?: string; +}; + +export type InnsynVedtaksdokumentasjonDto = { + behandlingUuid?: string; + tittel?: string; + opprettetDato?: string; +}; + +export type InnsynsbehandlingDto = { + innsynMottattDato?: string; + innsynResultatType?: 'INNV' | 'DELV' | 'AVVIST' | '-'; + vedtaksdokumentasjon?: Array; + dokumenter?: Array; +}; + +export type KlageFormkravResultatDto = { + paKlagdBehandlingId?: number; + paKlagdBehandlingUuid?: string; + paklagdBehandlingType?: 'BT-002' | 'BT-003' | 'BT-004' | 'BT-008' | 'BT-006' | 'BT-007' | 'BT-009' | '-'; + begrunnelse?: string; + erKlagerPart?: boolean; + erKlageKonkret?: boolean; + erKlagefirstOverholdt?: boolean; + erSignert?: boolean; + avvistArsaker?: Array< + | 'KLAGET_FOR_SENT' + | 'KLAGE_UGYLDIG' + | 'IKKE_PAKLAGD_VEDTAK' + | 'KLAGER_IKKE_PART' + | 'IKKE_KONKRET' + | 'IKKE_SIGNERT' + | '-' + >; +}; + +export type KlageVurderingResultatDto = { + klageVurdertAv?: string; + klageVurdering?: + | 'OPPHEVE_YTELSESVEDTAK' + | 'STADFESTE_YTELSESVEDTAK' + | 'MEDHOLD_I_KLAGE' + | 'AVVIS_KLAGE' + | 'HJEMSENDE_UTEN_Å_OPPHEVE' + | '-'; + begrunnelse?: string; + klageMedholdArsak?: 'NYE_OPPLYSNINGER' | 'ULIK_REGELVERKSTOLKNING' | 'ULIK_VURDERING' | 'PROSESSUELL_FEIL' | '-'; + klageVurderingOmgjoer?: 'GUNST_MEDHOLD_I_KLAGE' | 'DELVIS_MEDHOLD_I_KLAGE' | 'UGUNST_MEDHOLD_I_KLAGE' | '-'; + klageHjemmel?: + | '14-02' + | '14-04' + | '14-05' + | '14-06' + | '14-07' + | '14-09' + | '14-10' + | '14-11' + | '14-12' + | '14-13' + | '14-14' + | '14-15' + | '14-16' + | '14-17' + | '8-2' + | '21-3' + | '22-13' + | '22-15' + | '883-5' + | '883-6' + | '-'; + godkjentAvMedunderskriver?: boolean; + fritekstTilBrev?: string; +}; + +export type KlagebehandlingDto = { + klageFormkravResultatNFP?: KlageFormkravResultatDto; + klageVurderingResultatNFP?: KlageVurderingResultatDto; + klageFormkravResultatKA?: KlageFormkravResultatDto; + klageVurderingResultatNK?: KlageVurderingResultatDto; + aktuelleHjemler?: Array< + | '14-02' + | '14-04' + | '14-05' + | '14-06' + | '14-07' + | '14-09' + | '14-10' + | '14-11' + | '14-12' + | '14-13' + | '14-14' + | '14-15' + | '14-16' + | '14-17' + | '8-2' + | '21-3' + | '22-13' + | '22-15' + | '883-5' + | '883-6' + | '-' + >; + underBehandlingKabal?: boolean; + behandletAvKabal?: boolean; +}; + +export type MottattKlagedokumentDto = { + mottattDato?: string; +}; + +export type KlageFormKravAksjonspunktMellomlagringDto = { + kode?: string; + behandlingUuid: string; + erKlagerPart?: boolean; + erFristOverholdt?: boolean; + erKonkret?: boolean; + erSignert?: boolean; + erTilbakekreving?: boolean; + klageTilbakekreving?: KlageTilbakekrevingDto; + begrunnelse?: string; + fritekstTilBrev?: string; + paKlagdBehandlingUuid?: string; +}; + +export type KlageTilbakekrevingDto = { + tilbakekrevingUuid: string; + tilbakekrevingVedtakDato?: string; + tilbakekrevingBehandlingType?: string; +}; + +export type KlageVurderingResultatAksjonspunktMellomlagringDto = { + kode?: string; + behandlingUuid: string; + klageVurdering?: + | 'OPPHEVE_YTELSESVEDTAK' + | 'STADFESTE_YTELSESVEDTAK' + | 'MEDHOLD_I_KLAGE' + | 'AVVIS_KLAGE' + | 'HJEMSENDE_UTEN_Å_OPPHEVE' + | '-'; + begrunnelse?: string; + fritekstTilBrev?: string; + klageMedholdArsak?: 'NYE_OPPLYSNINGER' | 'ULIK_REGELVERKSTOLKNING' | 'ULIK_VURDERING' | 'PROSESSUELL_FEIL' | '-'; + klageVurderingOmgjoer?: 'GUNST_MEDHOLD_I_KLAGE' | 'DELVIS_MEDHOLD_I_KLAGE' | 'UGUNST_MEDHOLD_I_KLAGE' | '-'; + klageHjemmel?: + | '14-02' + | '14-04' + | '14-05' + | '14-06' + | '14-07' + | '14-09' + | '14-10' + | '14-11' + | '14-12' + | '14-13' + | '14-14' + | '14-15' + | '14-16' + | '14-17' + | '8-2' + | '21-3' + | '22-13' + | '22-15' + | '883-5' + | '883-6' + | '-'; +}; + +export type OppdragDto = { + saksnummer?: string; +}; + +export type OpptjeningIUtlandDokStatusDto = { + dokStatus?: 'DOKUMENTASJON_ER_INNHENTET' | 'DOKUMENTASJON_VIL_BLI_INNHENTET' | 'DOKUMENTASJON_VIL_IKKE_BLI_INNHENTET'; +}; + +export type FastsattOpptjeningAktivitetDto = { + fom?: string; + tom?: string; + klasse?: 'BEKREFTET_GODKJENT' | 'BEKREFTET_AVVIST' | 'ANTATT_GODKJENT' | 'MELLOMLIGGENDE_PERIODE' | '-'; +}; + +export type FastsattOpptjeningDto = { + opptjeningFom?: string; + opptjeningTom?: string; + opptjeningperiode?: OpptjeningPeriodeDto; + fastsattOpptjeningAktivitetList?: Array; +}; + +export type FerdiglignetNæringDto = { + år?: string; + beløp?: number; +}; + +export type OpptjeningAktivitetDto = { + aktivitetType?: + | 'AAP' + | 'ARBEID' + | 'DAGPENGER' + | 'FORELDREPENGER' + | 'FRILANS' + | 'FRILOPP' + | 'MILITÆR_ELLER_SIVILTJENESTE' + | 'NÆRING' + | 'OMSORGSPENGER' + | 'OPPLÆRINGSPENGER' + | 'PLEIEPENGER' + | 'FRISINN' + | 'ETTERLØNN_SLUTTPAKKE' + | 'SVANGERSKAPSPENGER' + | 'SYKEPENGER' + | 'VENTELØNN_VARTPENGER' + | 'VIDERE_ETTERUTDANNING' + | 'UTENLANDSK_ARBEIDSFORHOLD' + | 'UTDANNINGSPERMISJON' + | '-'; + originalFom?: string; + originalTom?: string; + opptjeningFom?: string; + opptjeningTom?: string; + arbeidsgiverReferanse?: string; + arbeidsforholdRef?: string; + stillingsandel?: number; + naringRegistreringsdato?: string; + erManueltOpprettet?: boolean; + erGodkjent?: boolean; + erEndret?: boolean; + begrunnelse?: string; + erPeriodeEndret?: boolean; +}; + +export type OpptjeningDto = { + fastsattOpptjening?: FastsattOpptjeningDto; + opptjeningAktivitetList?: Array; + ferdiglignetNæring?: Array; +}; + +export type OpptjeningPeriodeDto = { + måneder?: number; + dager?: number; +}; + +export type PersonopplysningTilbakeDto = { + aktoerId?: string; + antallBarn?: number; +}; + +export type PersonadresseDto = { + fom?: string; + tom?: string; + adresseType?: + | 'BOSTEDSADRESSE' + | 'BOSTEDSADRESSE_UTLAND' + | 'POSTADRESSE' + | 'POSTADRESSE_UTLAND' + | 'MIDLERTIDIG_POSTADRESSE_NORGE' + | 'MIDLERTIDIG_POSTADRESSE_UTLAND' + | 'UKJENT_ADRESSE'; + adresselinje1?: string; + adresselinje2?: string; + adresselinje3?: string; + postNummer?: string; + poststed?: string; + land?: string; +}; + +export type PersonopplysningBasisDto = { + fnr?: string; + aktoerId?: string; + diskresjonskode?: 'UDEF' | 'SPSF' | 'SPFO'; + navn?: string; + kjønn?: 'K' | 'M' | '-'; + sivilstand?: + | 'ENKE' + | 'GIFT' + | 'GJPA' + | 'GLAD' + | 'NULL' + | 'REPA' + | 'SAMB' + | 'SEPA' + | 'SEPR' + | 'SKIL' + | 'SKPA' + | 'UGIF'; + dødsdato?: string; + fødselsdato?: string; + adresser?: Array; +}; + +export type PersonoversiktDto = { + bruker?: PersonopplysningBasisDto; + annenPart?: PersonopplysningBasisDto; + barn?: Array; +}; + +export type Annenpart = { + adresser?: Array; + regioner?: Array; + personstatuser?: Array; +}; + +export type LegacyManuellBehandling = { + perioder?: Array; +}; + +export type ManuellBehandlingResultat = { + søkerHarAleneomsorg?: 'JA' | 'NEI' | 'IKKE_RELEVANT'; + annenpartRettighet?: Rettighet; +}; + +export type MedlemPeriode = { + vurderingsdato?: string; + oppholdsrettVurdering?: boolean; + erEosBorger?: boolean; + lovligOppholdVurdering?: boolean; + bosattVurdering?: boolean; + medlemskapManuellVurderingType?: '-' | 'MEDLEM' | 'UNNTAK' | 'IKKE_RELEVANT' | 'OPPHOR_PGA_ENDRING_I_TPS'; + begrunnelse?: string; +}; + +export type MedlemskapDto = { + manuellBehandlingResultat?: ManuellBehandlingResultat; + legacyManuellBehandling?: LegacyManuellBehandling; + regioner?: Array; + personstatuser?: Array; + utenlandsopphold?: Array; + adresser?: Array; + oppholdstillatelser?: Array; + medlemskapsperioder?: Array; + avvik?: Array< + | 'BOSATT_UTENLANDSOPPHOLD' + | 'BOSATT_MANGLENDE_BOSTEDSADRESSE' + | 'BOSATT_UTENLANDSADRESSE' + | 'BOSATT_UGYLDIG_PERSONSTATUS' + | 'TREDJELAND_MANGLENDE_LOVLIG_OPPHOLD' + | 'EØS_MANGLENDE_ANSETTELSE_MED_INNTEKT' + | 'MEDL_PERIODER' + >; + annenpart?: Annenpart; +}; + +export type MedlemskapPeriode = { + fom?: string; + tom?: string; + erMedlem?: boolean; + lovvalgsland?: string; + studieland?: string; + medlemskapType?: 'ENDELIG' | 'FORELOPIG' | 'AVKLARES' | '-'; + dekningType?: + | 'FTL_2_6' + | 'FTL_2_7_a' + | 'FTL_2_7_b' + | 'FTL_2_9_1_a' + | 'FTL_2_9_1_b' + | 'FTL_2_9_1_c' + | 'FTL_2_9_2_a' + | 'FTL_2_9_2_c' + | 'FULL' + | 'IHT_AVTALE' + | 'OPPHOR' + | 'UNNTATT' + | '-'; + beslutningsdato?: string; +}; + +export type Oppholdstillatelse = { + fom?: string; + tom?: string; + type?: 'MIDLERTIDIG' | 'PERMANENT' | '-'; +}; + +export type Personstatus = { + fom?: string; + tom?: string; + type?: 'ADNR' | 'BOSA' | 'DØD' | 'FOSV' | 'FØDR' | 'UREG' | 'UTPE' | 'UTVA' | '-'; +}; + +export type Region = { + fom?: string; + tom?: string; + type?: 'NORDEN' | 'EOS' | 'ANNET' | '-'; +}; + +export type Utenlandsopphold = { + fom?: string; + tom?: string; + landkode?: + | '???' + | 'ABW' + | 'AFG' + | 'AGO' + | 'AIA' + | 'ALA' + | 'ALB' + | 'AND' + | 'ANT' + | 'ARE' + | 'ARG' + | 'ARM' + | 'ASM' + | 'ATG' + | 'AUS' + | 'AUT' + | 'AZE' + | 'BDI' + | 'BEL' + | 'BEN' + | 'BES' + | 'BFA' + | 'BGD' + | 'BGR' + | 'BHR' + | 'BHS' + | 'BIH' + | 'BLM' + | 'BLR' + | 'BLZ' + | 'BMU' + | 'BOL' + | 'BRA' + | 'BRB' + | 'BRN' + | 'BTN' + | 'BVT' + | 'BWA' + | 'CAF' + | 'CAN' + | 'CCK' + | 'CHE' + | 'CHL' + | 'CHN' + | 'CIV' + | 'CMR' + | 'COD' + | 'COG' + | 'COK' + | 'COL' + | 'COM' + | 'CPV' + | 'CRI' + | 'CSK' + | 'CUB' + | 'CUW' + | 'CXR' + | 'CYM' + | 'CYP' + | 'CZE' + | 'DDR' + | 'DEU' + | 'DJI' + | 'DMA' + | 'DNK' + | 'DOM' + | 'DZA' + | 'ECU' + | 'EGY' + | 'ERI' + | 'ESH' + | 'ESP' + | 'EST' + | 'ETH' + | 'FIN' + | 'FJI' + | 'FLK' + | 'FRA' + | 'FRO' + | 'FSM' + | 'GAB' + | 'GBR' + | 'GEO' + | 'GGY' + | 'GHA' + | 'GIB' + | 'GIN' + | 'GLP' + | 'GMB' + | 'GNB' + | 'GNQ' + | 'GRC' + | 'GRD' + | 'GRL' + | 'GTM' + | 'GUF' + | 'GUM' + | 'GUY' + | 'HKG' + | 'HMD' + | 'HND' + | 'HRV' + | 'HTI' + | 'HUN' + | 'IDN' + | 'IMN' + | 'IND' + | 'IOT' + | 'IRL' + | 'IRN' + | 'IRQ' + | 'ISL' + | 'ISR' + | 'ITA' + | 'JAM' + | 'JEY' + | 'JOR' + | 'JPN' + | 'KAZ' + | 'KEN' + | 'KGZ' + | 'KHM' + | 'KIR' + | 'KNA' + | 'KOR' + | 'KWT' + | 'LAO' + | 'LBN' + | 'LBR' + | 'LBY' + | 'LCA' + | 'LIE' + | 'LKA' + | 'LSO' + | 'LTU' + | 'LUX' + | 'LVA' + | 'MAC' + | 'MAF' + | 'MAR' + | 'MCO' + | 'MDA' + | 'MDG' + | 'MDV' + | 'MEX' + | 'MHL' + | 'MKD' + | 'MLI' + | 'MLT' + | 'MMR' + | 'MNE' + | 'MNG' + | 'MNP' + | 'MOZ' + | 'MRT' + | 'MSR' + | 'MTQ' + | 'MUS' + | 'MWI' + | 'MYS' + | 'MYT' + | 'NAM' + | 'NCL' + | 'NER' + | 'NFK' + | 'NGA' + | 'NIC' + | 'NIU' + | 'NLD' + | 'NOR' + | 'NPL' + | 'NRU' + | 'NZL' + | 'OMN' + | 'PAK' + | 'PAN' + | 'PCN' + | 'PER' + | 'PHL' + | 'PLW' + | 'PNG' + | 'POL' + | 'PRI' + | 'PRK' + | 'PRT' + | 'PRY' + | 'PSE' + | 'PYF' + | 'QAT' + | 'REU' + | 'ROU' + | 'RUS' + | 'RWA' + | 'SAU' + | 'SCG' + | 'SDN' + | 'SEN' + | 'SGP' + | 'SGS' + | 'SHN' + | 'SJM' + | 'SLB' + | 'SLE' + | 'SLV' + | 'SMR' + | 'SOM' + | 'SPM' + | 'SRB' + | 'SSD' + | 'STP' + | 'SUN' + | 'SUR' + | 'SVK' + | 'SVN' + | 'SWE' + | 'SWZ' + | 'SXM' + | 'SYC' + | 'SYR' + | 'TCA' + | 'TCD' + | 'TGO' + | 'THA' + | 'TJK' + | 'TKL' + | 'TKM' + | 'TLS' + | 'TON' + | 'TTO' + | 'TUN' + | 'TUR' + | 'TUV' + | 'TWN' + | 'TZA' + | 'UGA' + | 'UKR' + | 'UMI' + | 'URY' + | 'USA' + | 'UZB' + | 'VAT' + | 'VCT' + | 'VEN' + | 'VGB' + | 'VIR' + | 'VNM' + | 'VUT' + | 'WLF' + | 'WSM' + | 'XUK' + | 'XXK' + | 'XXX' + | 'YEM' + | 'YUG' + | 'ZAF' + | 'ZMB' + | 'ZWE' + | '-'; +}; + +export type SvpArbeidsforholdDto = { + tilretteleggingId?: number; + tilretteleggingBehovFom?: string; + tilretteleggingDatoer?: Array; + uttakArbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; + arbeidsgiverReferanse?: string; + opplysningerOmRisiko?: string; + opplysningerOmTilrettelegging?: string; + kopiertFraTidligereBehandling?: boolean; + mottattTidspunkt?: string; + internArbeidsforholdReferanse?: string; + eksternArbeidsforholdReferanse?: string; + skalBrukes?: boolean; + kanTilrettelegges?: boolean; + stillingsprosentStartTilrettelegging?: number; + velferdspermisjoner?: Array; + avklarteOppholdPerioder?: Array; + begrunnelse?: string; +}; + +export type SvpAvklartOppholdPeriodeDto = { + fom: string; + tom: string; + oppholdÅrsak: 'SYKEPENGER' | 'FERIE'; + oppholdKilde?: 'SØKNAD' | 'INNTEKTSMELDING' | 'REGISTRERT_AV_SAKSBEHANDLER'; + forVisning?: boolean; +}; + +export type SvpTilretteleggingDatoDto = { + fom?: string; + type?: 'HEL_TILRETTELEGGING' | 'DELVIS_TILRETTELEGGING' | 'INGEN_TILRETTELEGGING'; + stillingsprosent?: number; + overstyrtUtbetalingsgrad?: number; + kilde?: 'ENDRET_AV_SAKSBEHANDLER' | 'REGISTRERT_AV_SAKSBEHANDLER' | 'TIDLIGERE_VEDTAK' | 'SØKNAD'; + mottattDato?: string; +}; + +export type SvpTilretteleggingDto = { + termindato?: string; + fødselsdato?: string; + arbeidsforholdListe?: Array; + saksbehandlet?: boolean; +}; + +export type VelferdspermisjonDto = { + permisjonFom?: string; + permisjonTom?: string; + permisjonsprosent?: number; + type?: + | '-' + | 'PERMISJON' + | 'UTDANNINGSPERMISJON' + | 'UTDANNINGSPERMISJON_IKKE_LOVFESTET' + | 'UTDANNINGSPERMISJON_LOVFESTET' + | 'VELFERDSPERMISJON' + | 'ANNEN_PERMISJON_IKKE_LOVFESTET' + | 'ANNEN_PERMISJON_LOVFESTET' + | 'PERMISJON_MED_FORELDREPENGER' + | 'PERMITTERING' + | 'PERMISJON_VED_MILITÆRTJENESTE'; + erGyldig?: boolean; +}; + +export type DekningsgradInfoDto = { + avklartDekningsgrad?: number; + søker?: OppgittDekningsgradDto; + annenPart?: OppgittDekningsgradDto; +}; + +export type ManglendeVedleggDto = { + dokumentType?: + | 'SØKNAD_SVANGERSKAPSPENGER' + | 'SØKNAD_FORELDREPENGER_ADOPSJON' + | 'SØKNAD_ENGANGSSTØNAD_FØDSEL' + | 'SØKNAD_ENGANGSSTØNAD_ADOPSJON' + | 'SØKNAD_FORELDREPENGER_FØDSEL' + | 'FLEKSIBELT_UTTAK_FORELDREPENGER' + | 'FORELDREPENGER_ENDRING_SØKNAD' + | 'INNTEKTSMELDING' + | 'KLAGE_DOKUMENT' + | 'I500027' + | 'I000114' + | 'I000119' + | 'DOKUMENTASJON_AV_TERMIN_ELLER_FØDSEL' + | 'DOKUMENTASJON_AV_OMSORGSOVERTAKELSE' + | 'BEKREFTELSE_VENTET_FØDSELSDATO' + | 'FØDSELSATTEST' + | 'I000141' + | 'LEGEERKLÆRING' + | 'DOK_INNLEGGELSE' + | 'BESKRIVELSE_FUNKSJONSNEDSETTELSE' + | 'I000120' + | 'I000121' + | 'I000122' + | 'I000123' + | 'I000124' + | 'DOK_MORS_UTDANNING_ARBEID_SYKDOM' + | 'DOK_FERIE' + | 'DOK_ARBEIDSFORHOLD' + | 'BEKREFTELSE_DELTAR_KVALIFISERINGSPROGRAM' + | 'BEKREFTELSE_FRA_STUDIESTED' + | 'BEKREFTELSE_FRA_ARBEIDSGIVER' + | 'I000112' + | 'DOK_HV' + | 'DOK_NAV_TILTAK' + | 'I000130' + | 'I000131' + | 'I000132' + | 'I000133' + | 'I000109' + | 'I000142' + | 'INNTEKTSOPPLYSNING_SELVSTENDIG' + | 'DOK_INNTEKT' + | 'INNTEKTSOPPLYSNINGER' + | 'RESULTATREGNSKAP' + | 'DOK_MILITÆR_SIVIL_TJENESTE' + | 'DOK_ETTERLØNN' + | 'I000146' + | 'I000052' + | 'KOPI_SKATTEMELDING' + | 'I000140' + | 'BEKREFTELSE_OPPHOLDSTILLATELSE' + | 'I000143' + | 'OPPHOLDSOPPLYSNINGER' + | 'I000110' + | 'I000111' + | 'I000118' + | 'ETTERSENDT_SØKNAD_SVANGERSKAPSPENGER_SELVSTENDIG' + | 'ETTERSENDT_SØKNAD_FORELDREPENGER_ADOPSJON' + | 'ETTERSENDT_SØKNAD_ENGANGSSTØNAD_FØDSEL' + | 'ETTERSENDT_SØKNAD_ENGANGSSTØNAD_ADOPSJON' + | 'ETTERSENDT_SØKNAD_FORELDREPENGER_FØDSEL' + | 'ETTERSENDT_FLEKSIBELT_UTTAK_FORELDREPENGER' + | 'ETTERSENDT_FORELDREPENGER_ENDRING_SØKNAD' + | 'BREV_UTLAND' + | 'ANNET_SKJEMA_UTLAND_IKKE_NAV' + | 'BREV' + | 'I000145' + | 'I000144' + | 'ANNET_SKJEMA_IKKE_NAV' + | 'ANNET' + | '-'; + dokumentTittel?: string; + arbeidsgiverReferanse?: string; + brukerHarSagtAtIkkeKommer?: boolean; +}; + +export type OppgittDekningsgradDto = { + søknadsdato?: string; + dekningsgrad?: number; +}; + +export type OppgittFordelingDto = { + startDatoForPermisjon?: string; + dekningsgrader?: DekningsgradInfoDto; +}; + +export type OppgittTilknytningDto = { + oppholdNorgeNa?: boolean; + oppholdSistePeriode?: boolean; + oppholdNestePeriode?: boolean; + utlandsoppholdFor?: Array; + utlandsoppholdEtter?: Array; +}; + +export type SoknadAdopsjonDto = SoknadDto & { + omsorgsovertakelseDato?: string; + barnetsAnkomstTilNorgeDato?: string; + adopsjonFodelsedatoer?: { + [key: string]: string; + }; + farSokerType?: + | 'ADOPTERER_ALENE' + | 'ANDRE_FORELDER_DØD' + | 'OVERTATT_OMSORG' + | 'OVERTATT_OMSORG_F' + | 'ANDRE_FORELD_DØD_F' + | '-'; +}; + +export type SoknadDto = { + soknadType?: 'ST-001' | 'ST-002'; + mottattDato?: string; + begrunnelseForSenInnsending?: string; + antallBarn?: number; + oppgittTilknytning?: OppgittTilknytningDto; + manglendeVedlegg?: Array; + oppgittFordeling?: OppgittFordelingDto; + søknadsfrist?: SøknadsfristDto; +}; + +export type SoknadFodselDto = SoknadDto & { + utstedtdato?: string; + termindato?: string; + farSokerType?: + | 'ADOPTERER_ALENE' + | 'ANDRE_FORELDER_DØD' + | 'OVERTATT_OMSORG' + | 'OVERTATT_OMSORG_F' + | 'ANDRE_FORELD_DØD_F' + | '-'; + fodselsdatoer?: { + [key: string]: string; + }; +}; + +export type SøknadsfristDto = { + mottattDato?: string; + utledetSøknadsfrist?: string; + søknadsperiodeStart?: string; + søknadsperiodeSlutt?: string; + dagerOversittetFrist?: number; +}; + +export type UtlandsoppholdDto = { + landNavn?: string; + fom?: string; + tom?: string; +}; + +export type SoknadBackendDto = { + soknadType?: 'ST-001' | 'ST-002'; + mottattDato?: string; + oppgittAleneomsorg?: boolean; +}; + +export type DetaljertSimuleringResultatDto = { + periode?: PeriodeDto; + ingenPerioderMedAvvik?: boolean; + sumEtterbetaling?: number; + sumFeilutbetaling?: number; + sumInntrekk?: number; + perioderPerMottaker?: Array; +}; + +export type PeriodeDto = { + fom?: string; + tom?: string; +}; + +export type SimuleringDto = { + simuleringResultat?: DetaljertSimuleringResultatDto; + simuleringResultatUtenInntrekk?: DetaljertSimuleringResultatDto; + slåttAvInntrekk?: boolean; +}; + +export type SimuleringForMottakerDto = { + mottakerType?: 'BRUKER' | 'ARBG_ORG' | 'ARBG_PRIV'; + mottakerNummer?: string; + mottakerIdentifikator?: string; + resultatPerFagområde?: Array; + resultatOgMotregningRader?: Array; + nesteUtbPeriode?: PeriodeDto; +}; + +export type SimuleringResultatPerFagområdeDto = { + fagOmrådeKode?: + | 'REFUTG' + | 'FP' + | 'FPREF' + | 'SP' + | 'SPREF' + | 'SVP' + | 'SVPREF' + | 'PB' + | 'PBREF' + | 'PN' + | 'PNREF' + | 'OM' + | 'OMREF' + | 'OPP' + | 'OPPREF' + | 'OOP' + | 'OOPREF' + | 'UNG'; + rader?: Array; +}; + +export type SimuleringResultatPerMånedDto = { + periode?: PeriodeDto; + beløp?: number; +}; + +export type SimuleringResultatRadDto = { + feltnavn?: + | 'nyttBeløp' + | 'tidligereUtbetalt' + | 'differanse' + | 'resultatEtterMotregning' + | 'inntrekkNesteMåned' + | 'resultat'; + resultaterPerMåned?: Array; +}; + +export type TilbakekrevingValgDto = { + grunnerTilReduksjon?: boolean; + videreBehandling?: '-' | 'TILBAKEKR_OPPRETT' | 'TILBAKEKR_IGNORER' | 'TILBAKEKR_INNTREKK' | 'TILBAKEKR_OPPDATER'; + varseltekst?: string; +}; + +export type VarseltekstDto = { + varseltekst?: string; +}; + +export type AktivitetIdentifikatorDto = { + uttakArbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; + arbeidsgiverReferanse?: string; + arbeidsforholdId?: string; +}; + +export type AktivitetSaldoDto = { + aktivitetIdentifikator?: AktivitetIdentifikatorDto; + saldo?: number; +}; + +export type KontoUtvidelser = { + prematurdager?: number; + flerbarnsdager?: number; +}; + +export type SaldoerDto = { + stonadskontoer?: { + [key: string]: StønadskontoDto; + }; + tapteDagerFpff?: number; +}; + +export type StønadskontoDto = { + stonadskontotype?: + | 'MØDREKVOTE' + | 'FEDREKVOTE' + | 'FELLESPERIODE' + | 'FORELDREPENGER' + | 'FORELDREPENGER_FØR_FØDSEL' + | 'FLERBARNSDAGER' + | 'UTEN_AKTIVITETSKRAV' + | 'MINSTERETT_NESTE_STØNADSPERIODE' + | 'MINSTERETT'; + maxDager?: number; + saldo?: number; + aktivitetSaldoDtoList?: Array; + gyldigForbruk?: boolean; + kontoUtvidelser?: KontoUtvidelser; +}; + +export type BehandlingMedUttaksperioderDto = { + behandlingUuid: string; + perioder: Array; +}; + +export type InternArbeidsforholdRef = { + referanse?: string; + indexKey?: string; + uuidreferanse?: string; +}; + +export type Trekkdager = { + [key: string]: unknown; +}; + +export type UttakResultatPeriodeAktivitetLagreDto = { + stønadskontoType?: + | 'FELLESPERIODE' + | 'MØDREKVOTE' + | 'FEDREKVOTE' + | 'FORELDREPENGER' + | 'FORELDREPENGER_FØR_FØDSEL' + | '-'; + trekkdagerDesimaler: Trekkdager; + arbeidsgiver?: Arbeidsgiver; + arbeidsgiverReferanse?: string; + arbeidsforholdId?: InternArbeidsforholdRef; + utbetalingsgrad?: number; + uttakArbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; +}; + +export type UttakResultatPeriodeLagreDto = { + fom: string; + tom: string; + aktiviteter: Array; + begrunnelse?: string; + periodeResultatType: 'INNVILGET' | 'AVSLÅTT' | 'MANUELL_BEHANDLING'; + periodeResultatÅrsak: + | '-' + | '2002' + | '2003' + | '2004' + | '2005' + | '2006' + | '2007' + | '2010' + | '2011' + | '2012' + | '2013' + | '2014' + | '2015' + | '2016' + | '2017' + | '2018' + | '2019' + | '2020' + | '2021' + | '2022' + | '2023' + | '2024' + | '2025' + | '2026' + | '2027' + | '2028' + | '2030' + | '2031' + | '2032' + | '2033' + | '2034' + | '2035' + | '2036' + | '2037' + | '2038' + | '2039' + | '4002' + | '4003' + | '4005' + | '4007' + | '4008' + | '4012' + | '4013' + | '4020' + | '4022' + | '4023' + | '4025' + | '4030' + | '4031' + | '4032' + | '4033' + | '4034' + | '4035' + | '4037' + | '4038' + | '4039' + | '4040' + | '4041' + | '4050' + | '4051' + | '4052' + | '4053' + | '4054' + | '4055' + | '4056' + | '4057' + | '4058' + | '4059' + | '4060' + | '4061' + | '4062' + | '4063' + | '4064' + | '4065' + | '4066' + | '4067' + | '4068' + | '4069' + | '4070' + | '4071' + | '4072' + | '4073' + | '4074' + | '4075' + | '4076' + | '4077' + | '4081' + | '4082' + | '4084' + | '4085' + | '4086' + | '4087' + | '4088' + | '4089' + | '4092' + | '4093' + | '4095' + | '4096' + | '4097' + | '4098' + | '4099' + | '4100' + | '4102' + | '4103' + | '4104' + | '4105' + | '4106' + | '4107' + | '4110' + | '4111' + | '4112' + | '4115' + | '4116' + | '4117'; + utsettelseType: + | 'ARBEID' + | 'FERIE' + | 'SYKDOM_SKADE' + | 'SØKER_INNLAGT' + | 'BARN_INNLAGT' + | 'HV_OVELSE' + | 'NAV_TILTAK' + | 'FRI' + | '-'; + oppholdÅrsak: + | '-' + | 'UTTAK_MØDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FEDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FELLESP_ANNEN_FORELDER' + | 'UTTAK_FORELDREPENGER_ANNEN_FORELDER'; + flerbarnsdager?: boolean; + samtidigUttak?: boolean; + samtidigUttaksprosent?: number; + graderingInnvilget?: boolean; + graderingAvslagÅrsak: '-' | '4504' | '4501' | '4502' | '4503' | '4523'; + mottattDato?: string; +}; + +export type AktivitetskravGrunnlagArbeid = { + orgNummer?: string; + stillingsprosent?: number; + permisjon?: Permisjon; +}; + +export type DokumentasjonVurderingBehovDto = { + fom: string; + tom: string; + type: 'UTSETTELSE' | 'OVERFØRING' | 'UTTAK'; + årsak: + | 'INNLEGGELSE_SØKER' + | 'INNLEGGELSE_BARN' + | 'HV_ØVELSE' + | 'NAV_TILTAK' + | 'SYKDOM_SØKER' + | 'INNLEGGELSE_ANNEN_FORELDER' + | 'SYKDOM_ANNEN_FORELDER' + | 'BARE_SØKER_RETT' + | 'ALENEOMSORG' + | 'AKTIVITETSKRAV_ARBEID' + | 'AKTIVITETSKRAV_UTDANNING' + | 'AKTIVITETSKRAV_KVALPROG' + | 'AKTIVITETSKRAV_INTROPROG' + | 'AKTIVITETSKRAV_TRENGER_HJELP' + | 'AKTIVITETSKRAV_INNLAGT' + | 'AKTIVITETSKRAV_ARBEID_OG_UTDANNING' + | 'AKTIVITETSKRAV_IKKE_OPPGITT' + | 'TIDLIG_OPPSTART_FAR'; + vurdering?: 'GODKJENT' | 'GODKJENT_AUTOMATISK' | 'IKKE_GODKJENT' | 'IKKE_DOKUMENTERT'; + morsStillingsprosent?: number; + aktivitetskravGrunnlag?: Array; +}; + +export type Permisjon = { + prosent?: number; + type?: '-' | 'UTDANNING' | 'FORELDREPENGER' | 'PERMITTERING' | 'ANNEN_PERMISJON'; +}; + +export type FaktaUttakPeriodeDto = { + fom: string; + tom: string; + uttakPeriodeType?: + | 'FELLESPERIODE' + | 'MØDREKVOTE' + | 'FEDREKVOTE' + | 'FORELDREPENGER' + | 'FORELDREPENGER_FØR_FØDSEL' + | '-'; + utsettelseÅrsak?: + | 'ARBEID' + | 'LOVBESTEMT_FERIE' + | 'SYKDOM' + | 'INSTITUSJONSOPPHOLD_SØKER' + | 'INSTITUSJONSOPPHOLD_BARNET' + | 'HV_OVELSE' + | 'NAV_TILTAK' + | 'FRI' + | '-'; + overføringÅrsak?: + | 'INSTITUSJONSOPPHOLD_ANNEN_FORELDER' + | 'SYKDOM_ANNEN_FORELDER' + | 'IKKE_RETT_ANNEN_FORELDER' + | 'ALENEOMSORG' + | '-'; + oppholdÅrsak?: + | '-' + | 'UTTAK_MØDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FEDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FELLESP_ANNEN_FORELDER' + | 'UTTAK_FORELDREPENGER_ANNEN_FORELDER'; + arbeidstidsprosent?: number; + arbeidsforhold?: ArbeidsforholdDto; + samtidigUttaksprosent?: number; + flerbarnsdager?: boolean; + morsAktivitet?: + | '-' + | 'ARBEID' + | 'UTDANNING' + | 'KVALPROG' + | 'INTROPROG' + | 'TRENGER_HJELP' + | 'INNLAGT' + | 'ARBEID_OG_UTDANNING' + | 'UFØRE' + | 'IKKE_OPPGITT'; + periodeKilde?: 'SØKNAD' | 'TIDLIGERE_VEDTAK' | 'ANDRE_NAV_VEDTAK' | 'SAKSBEHANDLER'; + begrunnelse?: string; +}; + +export type SvangerskapspengerUttakResultatArbeidsforholdDto = { + arbeidsforholdIkkeOppfyltÅrsak?: '-' | '8301' | '8302' | '8303' | '8312'; + arbeidsgiverReferanse?: string; + arbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; + perioder?: Array; +}; + +export type SvangerskapspengerUttakResultatDto = { + uttaksResultatArbeidsforhold?: Array; +}; + +export type SvangerskapspengerUttakResultatPeriodeDto = { + utbetalingsgrad?: number; + periodeResultatType?: 'INNVILGET' | 'AVSLÅTT' | 'MANUELL_BEHANDLING'; + periodeIkkeOppfyltÅrsak?: + | '-' + | '8304' + | '8305' + | '8306' + | '8308' + | '8309' + | '8310' + | '8311' + | '8313' + | '8314' + | '8315' + | '8316' + | '8317'; + fom?: string; + tom?: string; +}; + +export type FilterDto = { + kreverSammenhengendeUttakTom?: string; + utenMinsterett?: boolean; + søkerErMor?: boolean; +}; + +export type UttakResultatPeriodeAktivitetDto = { + stønadskontoType?: + | 'FELLESPERIODE' + | 'MØDREKVOTE' + | 'FEDREKVOTE' + | 'FORELDREPENGER' + | 'FORELDREPENGER_FØR_FØDSEL' + | '-'; + prosentArbeid?: number; + arbeidsforholdId?: string; + eksternArbeidsforholdId?: string; + arbeidsgiverReferanse?: string; + utbetalingsgrad?: number; + uttakArbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; + gradering?: boolean; + trekkdagerDesimaler?: number; +}; + +export type UttakResultatPeriodeDto = { + fom?: string; + tom?: string; + aktiviteter?: Array; + periodeResultatType?: 'INNVILGET' | 'AVSLÅTT' | 'MANUELL_BEHANDLING'; + begrunnelse?: string; + periodeResultatÅrsak?: + | '-' + | '2002' + | '2003' + | '2004' + | '2005' + | '2006' + | '2007' + | '2010' + | '2011' + | '2012' + | '2013' + | '2014' + | '2015' + | '2016' + | '2017' + | '2018' + | '2019' + | '2020' + | '2021' + | '2022' + | '2023' + | '2024' + | '2025' + | '2026' + | '2027' + | '2028' + | '2030' + | '2031' + | '2032' + | '2033' + | '2034' + | '2035' + | '2036' + | '2037' + | '2038' + | '2039' + | '4002' + | '4003' + | '4005' + | '4007' + | '4008' + | '4012' + | '4013' + | '4020' + | '4022' + | '4023' + | '4025' + | '4030' + | '4031' + | '4032' + | '4033' + | '4034' + | '4035' + | '4037' + | '4038' + | '4039' + | '4040' + | '4041' + | '4050' + | '4051' + | '4052' + | '4053' + | '4054' + | '4055' + | '4056' + | '4057' + | '4058' + | '4059' + | '4060' + | '4061' + | '4062' + | '4063' + | '4064' + | '4065' + | '4066' + | '4067' + | '4068' + | '4069' + | '4070' + | '4071' + | '4072' + | '4073' + | '4074' + | '4075' + | '4076' + | '4077' + | '4081' + | '4082' + | '4084' + | '4085' + | '4086' + | '4087' + | '4088' + | '4089' + | '4092' + | '4093' + | '4095' + | '4096' + | '4097' + | '4098' + | '4099' + | '4100' + | '4102' + | '4103' + | '4104' + | '4105' + | '4106' + | '4107' + | '4110' + | '4111' + | '4112' + | '4115' + | '4116' + | '4117'; + manuellBehandlingÅrsak?: + | '-' + | '5001' + | '5002' + | '5003' + | '5004' + | '5005' + | '5006' + | '5007' + | '5009' + | '5010' + | '5011' + | '5012' + | '5014' + | '5016' + | '5018' + | '5019' + | '5024' + | '5025' + | '5026' + | '5027' + | '5028' + | '5029' + | '5030' + | '5031' + | '5032'; + graderingAvslagÅrsak?: '-' | '4504' | '4501' | '4502' | '4503' | '4523'; + flerbarnsdager?: boolean; + samtidigUttak?: boolean; + samtidigUttaksprosent?: number; + graderingInnvilget?: boolean; + periodeType?: 'FELLESPERIODE' | 'MØDREKVOTE' | 'FEDREKVOTE' | 'FORELDREPENGER' | 'FORELDREPENGER_FØR_FØDSEL' | '-'; + utsettelseType?: + | 'ARBEID' + | 'FERIE' + | 'SYKDOM_SKADE' + | 'SØKER_INNLAGT' + | 'BARN_INNLAGT' + | 'HV_OVELSE' + | 'NAV_TILTAK' + | 'FRI' + | '-'; + oppholdÅrsak?: + | '-' + | 'UTTAK_MØDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FEDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FELLESP_ANNEN_FORELDER' + | 'UTTAK_FORELDREPENGER_ANNEN_FORELDER'; + mottattDato?: string; + tidligstMottattDato?: string; + erUtbetalingRedusertTilMorsStillingsprosent?: boolean; + gradertAktivitet?: UttakResultatPeriodeAktivitetDto; + periodeResultatÅrsakLovhjemmel?: string; + graderingsAvslagÅrsakLovhjemmel?: string; +}; + +export type UttakResultatPerioderDto = { + perioderSøker?: Array; + perioderAnnenpart?: Array; + annenForelderHarRett?: boolean; + aleneomsorg?: boolean; + annenForelderRettEØS?: boolean; + oppgittAnnenForelderRettEØS?: boolean; + årsakFilter?: FilterDto; + endringsdato?: string; +}; + +export type Beskrivelse = { + header?: string; + kommentarer?: Array; +}; + +export type Dokument = { + journalpostId?: string; + dokumentId?: string; + tittel?: string; +}; + +export type OppgaveDto = { + oppgaveId?: string; + oppgavetype?: 'VUR_KONSEKVENS' | 'VUR_DOKUMENT'; + beskrivelser?: Array; + dokumenter?: Array; +}; + +export type VergeBackendDto = { + aktoerId?: string; + navn?: string; + organisasjonsnummer?: string; + gyldigFom?: string; + gyldigTom?: string; + vergeType?: 'BARN' | 'FBARN' | 'VOKSEN' | 'ADVOKAT' | 'ANNEN_F'; +}; + +export type VergeDto = { + vergeType: 'BARN' | 'FBARN' | 'VOKSEN' | 'ADVOKAT' | 'ANNEN_F'; + gyldigFom?: string; + gyldigTom?: string; + navn?: string; + fnr?: string; + organisasjonsnummer?: string; +}; + +export type YtelseFordelingDto = { + overstyrtOmsorg?: boolean; + førsteUttaksdato?: string; + ønskerJustertVedFødsel?: boolean; +}; + +export type OmsorgOgRettDto = { + søknad?: Søknad; + registerdata?: RegisterData; + manuellBehandlingResultat?: ManuellBehandlingResultat; + rettighetstype?: + | 'ALENEOMSORG' + | 'BEGGE_RETT' + | 'BEGGE_RETT_EØS' + | 'BARE_MOR_RETT' + | 'BARE_FAR_RETT' + | 'BARE_FAR_RETT_MOR_UFØR'; + relasjonsRolleType?: 'EKTE' | 'BARN' | 'FARA' | 'MORA' | 'REPA' | 'MMOR' | 'ANPA' | '-'; +}; + +export type RegisterData = { + harAnnenpartUføretrygd?: 'JA' | 'NEI' | 'IKKE_RELEVANT'; + harAnnenpartForeldrepenger?: 'JA' | 'NEI' | 'IKKE_RELEVANT'; + harAnnenpartEngangsstønad?: 'JA' | 'NEI' | 'IKKE_RELEVANT'; +}; + +export type Rettighet = { + harRettNorge?: 'JA' | 'NEI' | 'IKKE_RELEVANT'; + harOppholdEØS?: 'JA' | 'NEI' | 'IKKE_RELEVANT'; + harRettEØS?: 'JA' | 'NEI' | 'IKKE_RELEVANT'; + harUføretrygd?: 'JA' | 'NEI' | 'IKKE_RELEVANT'; +}; + +export type BestillDokumentDto = { + behandlingUuid?: string; + brevmalkode: + | 'FRITEK' + | 'FRIHTM' + | 'INNVES' + | 'AVSLES' + | 'INVFOR' + | 'AVSFOR' + | 'OPPFOR' + | 'ANUFOR' + | 'INVSVP' + | 'OPPSVP' + | 'AVSSVP' + | 'INFOAF' + | 'INNOPP' + | 'VARREV' + | 'IOHENL' + | 'INNSYN' + | 'IKKESO' + | 'INGEND' + | 'FORSAK' + | 'FORMED' + | 'FORMEF' + | 'FORTID' + | 'KGEAVV' + | 'KGEOMG' + | 'KGEOVE' + | 'ELYSIM' + | 'ENDUTB' + | 'INFOPU' + | 'FORPUS' + | 'KLAGAV' + | 'KAVVIS' + | 'KLAGNY' + | 'KHJEMS' + | 'VEDMED' + | 'KOMGJO' + | 'KLAGOV' + | 'KOVKLA' + | 'KLAGVE' + | 'KSTADF' + | 'VEDOGA' + | 'ANKEBO' + | 'ANKOMG' + | 'ANKOPP' + | 'KGESTA' + | 'KGEHJE'; + fritekst?: string; + arsakskode?: + | 'BARNIKKEREG' + | 'JOBBFULLTID' + | 'IKKEOPPTJENT' + | 'UTVANDRET' + | 'JOBBUTLAND' + | 'IKKEOPPHOLD' + | 'JOBB6MND' + | 'AKTIVITET' + | 'ANNET'; +}; + +export type ForhåndsvisDokumentDto = { + behandlingUuid: string; + dokumentMal?: + | 'FRITEK' + | 'FRIHTM' + | 'INNVES' + | 'AVSLES' + | 'INVFOR' + | 'AVSFOR' + | 'OPPFOR' + | 'ANUFOR' + | 'INVSVP' + | 'OPPSVP' + | 'AVSSVP' + | 'INFOAF' + | 'INNOPP' + | 'VARREV' + | 'IOHENL' + | 'INNSYN' + | 'IKKESO' + | 'INGEND' + | 'FORSAK' + | 'FORMED' + | 'FORMEF' + | 'FORTID' + | 'KGEAVV' + | 'KGEOMG' + | 'KGEOVE' + | 'ELYSIM' + | 'ENDUTB' + | 'INFOPU' + | 'FORPUS' + | 'KLAGAV' + | 'KAVVIS' + | 'KLAGNY' + | 'KHJEMS' + | 'VEDMED' + | 'KOMGJO' + | 'KLAGOV' + | 'KOVKLA' + | 'KLAGVE' + | 'KSTADF' + | 'VEDOGA' + | 'ANKEBO' + | 'ANKOMG' + | 'ANKOPP' + | 'KGESTA' + | 'KGEHJE'; + arsakskode?: + | 'BARNIKKEREG' + | 'JOBBFULLTID' + | 'IKKEOPPTJENT' + | 'UTVANDRET' + | 'JOBBUTLAND' + | 'IKKEOPPHOLD' + | 'JOBB6MND' + | 'AKTIVITET' + | 'ANNET'; + automatiskVedtaksbrev?: boolean; + tittel?: string; + fritekst?: string; +}; + +export type DokumentKvitteringDto = { + behandlingUuid: string; + saksnummer: Saksnummer; + dokumentbestillingUuid: string; + journalpostId: string; + dokumentId: string; +}; + +export type Saksnummer = { + saksnummer: string; +}; + +export type MellomlagreHtmlDto = { + behandlingUuid: string; + redigertInnhold?: string; +}; + +export type DokumentDto = { + journalpostId?: string; + dokumentId?: string; + behandlinger?: Array; + behandlingUuidList?: Array; + tidspunkt?: string; + tittel?: string; + kommunikasjonsretning?: 'INN' | 'UT' | 'NOTAT'; + gjelderFor?: string; + arbeidsgiverReferanse?: string; +}; + +export type MottattDokumentDto = { + mottattDato?: string; + dokumentTypeId?: + | 'SØKNAD_SVANGERSKAPSPENGER' + | 'SØKNAD_FORELDREPENGER_ADOPSJON' + | 'SØKNAD_ENGANGSSTØNAD_FØDSEL' + | 'SØKNAD_ENGANGSSTØNAD_ADOPSJON' + | 'SØKNAD_FORELDREPENGER_FØDSEL' + | 'FLEKSIBELT_UTTAK_FORELDREPENGER' + | 'FORELDREPENGER_ENDRING_SØKNAD' + | 'INNTEKTSMELDING' + | 'KLAGE_DOKUMENT' + | 'I500027' + | 'I000114' + | 'I000119' + | 'DOKUMENTASJON_AV_TERMIN_ELLER_FØDSEL' + | 'DOKUMENTASJON_AV_OMSORGSOVERTAKELSE' + | 'BEKREFTELSE_VENTET_FØDSELSDATO' + | 'FØDSELSATTEST' + | 'I000141' + | 'LEGEERKLÆRING' + | 'DOK_INNLEGGELSE' + | 'BESKRIVELSE_FUNKSJONSNEDSETTELSE' + | 'I000120' + | 'I000121' + | 'I000122' + | 'I000123' + | 'I000124' + | 'DOK_MORS_UTDANNING_ARBEID_SYKDOM' + | 'DOK_FERIE' + | 'DOK_ARBEIDSFORHOLD' + | 'BEKREFTELSE_DELTAR_KVALIFISERINGSPROGRAM' + | 'BEKREFTELSE_FRA_STUDIESTED' + | 'BEKREFTELSE_FRA_ARBEIDSGIVER' + | 'I000112' + | 'DOK_HV' + | 'DOK_NAV_TILTAK' + | 'I000130' + | 'I000131' + | 'I000132' + | 'I000133' + | 'I000109' + | 'I000142' + | 'INNTEKTSOPPLYSNING_SELVSTENDIG' + | 'DOK_INNTEKT' + | 'INNTEKTSOPPLYSNINGER' + | 'RESULTATREGNSKAP' + | 'DOK_MILITÆR_SIVIL_TJENESTE' + | 'DOK_ETTERLØNN' + | 'I000146' + | 'I000052' + | 'KOPI_SKATTEMELDING' + | 'I000140' + | 'BEKREFTELSE_OPPHOLDSTILLATELSE' + | 'I000143' + | 'OPPHOLDSOPPLYSNINGER' + | 'I000110' + | 'I000111' + | 'I000118' + | 'ETTERSENDT_SØKNAD_SVANGERSKAPSPENGER_SELVSTENDIG' + | 'ETTERSENDT_SØKNAD_FORELDREPENGER_ADOPSJON' + | 'ETTERSENDT_SØKNAD_ENGANGSSTØNAD_FØDSEL' + | 'ETTERSENDT_SØKNAD_ENGANGSSTØNAD_ADOPSJON' + | 'ETTERSENDT_SØKNAD_FORELDREPENGER_FØDSEL' + | 'ETTERSENDT_FLEKSIBELT_UTTAK_FORELDREPENGER' + | 'ETTERSENDT_FORELDREPENGER_ENDRING_SØKNAD' + | 'BREV_UTLAND' + | 'ANNET_SKJEMA_UTLAND_IKKE_NAV' + | 'BREV' + | 'I000145' + | 'I000144' + | 'ANNET_SKJEMA_IKKE_NAV' + | 'ANNET' + | '-'; + dokumentKategori?: + | '-' + | 'KLGA' + | 'ITSKJ' + | 'SOKN' + | 'ESKJ' + | 'BRV' + | 'EDIALOG' + | 'FNOT' + | 'IBRV' + | 'KONVEARK' + | 'KONVSYS' + | 'PUBEOS' + | 'SEDOK' + | 'TSKJ' + | 'VBRV'; +}; + +export type JournalpostIdDto = { + journalpostId: string; +}; + +export type DokumentIdDto = { + dokumentId?: string; +}; + +export type AktoerInfoDto = { + aktørId?: string; + person?: PersonDto; + fagsaker?: Array; +}; + +export type FagsakSøkDto = { + saksnummer?: string; + fagsakYtelseType?: 'ES' | 'FP' | 'SVP' | '-'; + status?: 'OPPR' | 'UBEH' | 'LOP' | 'AVSLU'; + relasjonsRolleType?: 'EKTE' | 'BARN' | 'FARA' | 'MORA' | 'REPA' | 'MMOR' | 'ANPA' | '-'; + aktørId?: string; + person?: PersonDto; + barnFødt?: string; + opprettet?: string; + endret?: string; +}; + +export type PersonDto = { + aktørId?: string; + navn?: string; + fødselsnummer?: string; + kjønn?: 'K' | 'M' | '-'; + diskresjonskode?: string; + fødselsdato?: string; + dødsdato?: string; + dodsdato?: string; + språkkode?: 'NB' | 'NN' | 'EN' | '-'; +}; + +export type AktoerIdDto = { + aktoerId?: string; +}; + +export type EndreUtlandMarkeringDto = { + saksnummer: string; + fagsakMarkeringer?: Array< + | 'EØS_BOSATT_NORGE' + | 'BOSATT_UTLAND' + | 'SAMMENSATT_KONTROLL' + | 'DØD_DØDFØDSEL' + | 'PRAKSIS_UTSETTELSE' + | 'BARE_FAR_RETT' + | 'SELVSTENDIG_NÆRING' + | 'HASTER' + >; +}; + +export type FagsakBackendDto = { + saksnummer?: string; + fagsakYtelseType?: 'ES' | 'FP' | 'SVP' | '-'; + status?: 'OPPR' | 'UBEH' | 'LOP' | 'AVSLU'; + relasjonsRolleType?: 'EKTE' | 'BARN' | 'FARA' | 'MORA' | 'REPA' | 'MMOR' | 'ANPA' | '-'; + aktørId?: string; + dekningsgrad?: number; +}; + +export type AnnenPartBehandlingDto = { + saksnummer?: string; + relasjonsRolleType?: 'EKTE' | 'BARN' | 'FARA' | 'MORA' | 'REPA' | 'MMOR' | 'ANPA' | '-'; + behandlingUuid?: string; +}; + +export type BehandlingOperasjonerDto = { + uuid?: string; + behandlingKanBytteEnhet?: boolean; + behandlingKanHenlegges?: boolean; + behandlingKanGjenopptas?: boolean; + behandlingKanOpnesForEndringer?: boolean; + behandlingKanMerkesHaster?: boolean; + behandlingKanSettesPaVent?: boolean; + behandlingKanSendeMelding?: boolean; + behandlingFraBeslutter?: boolean; + behandlingTilGodkjenning?: boolean; + vergeBehandlingsmeny?: 'SKJUL' | 'OPPRETT' | 'FJERN'; +}; + +export type BehandlingOpprettingDto = { + behandlingType?: 'BT-002' | 'BT-003' | 'BT-004' | 'BT-008' | 'BT-006' | 'BT-007' | 'BT-009' | '-'; + kanOppretteBehandling?: boolean; +}; + +export type BrevmalDto = { + kode: string; + navn: string; + tilgjengelig?: boolean; +}; + +export type FagsakBehandlingDto = { + id?: number; + uuid?: string; + versjon?: number; + type?: 'BT-002' | 'BT-003' | 'BT-004' | 'BT-008' | 'BT-006' | 'BT-007' | 'BT-009' | '-'; + status?: 'AVSLU' | 'FVED' | 'IVED' | 'OPPRE' | 'UTRED'; + fagsakId?: number; + opprettet?: string; + avsluttet?: string; + endret?: string; + endretAvBrukernavn?: string; + behandlendeEnhetId?: string; + behandlendeEnhetNavn?: string; + erAktivPapirsoknad?: boolean; + førsteÅrsak?: BehandlingÅrsakDto; + behandlingsfristTid?: string; + gjeldendeVedtak?: boolean; + erPaaVent?: boolean; + originalVedtaksDato?: string; + behandlingHenlagt?: boolean; + behandlingPaaVent?: boolean; + behandlingPåVent?: boolean; + fristBehandlingPåVent?: string; + fristBehandlingPaaVent?: string; + venteArsakKode?: string; + venteÅrsakKode?: string; + sprakkode?: 'NB' | 'NN' | 'EN' | '-'; + språkkode?: 'NB' | 'NN' | 'EN' | '-'; + behandlingKøet?: boolean; + ansvarligSaksbehandler?: string; + toTrinnsBehandling?: boolean; + behandlingsresultat?: BehandlingsresultatDto; + behandlingÅrsaker?: Array; + vilkår?: Array; + links?: Array; + behandlingTillatteOperasjoner?: BehandlingOperasjonerDto; + brevmaler?: Array; + totrinnskontrollÅrsaker?: Array; + totrinnskontrollReadonly?: boolean; + risikoAksjonspunkt?: AksjonspunktDto; + kontrollResultat?: KontrollresultatDto; + ugunstAksjonspunkt?: boolean; + behandlingKoet?: boolean; +}; + +export type FagsakFullDto = { + saksnummer?: string; + fagsakYtelseType?: 'ES' | 'FP' | 'SVP' | '-'; + relasjonsRolleType?: 'EKTE' | 'BARN' | 'FARA' | 'MORA' | 'REPA' | 'MMOR' | 'ANPA' | '-'; + status?: 'OPPR' | 'UBEH' | 'LOP' | 'AVSLU'; + aktørId?: string; + sakSkalTilInfotrygd?: boolean; + dekningsgrad?: number; + bruker?: PersonDto; + brukerManglerAdresse?: boolean; + annenPart?: PersonDto; + annenpartBehandling?: AnnenPartBehandlingDto; + familiehendelse?: SakHendelseDto; + fagsakMarkeringer?: Array; + behandlingTypeKanOpprettes?: Array; + behandlinger?: Array; + historikkinnslag?: Array; + notater?: Array; + kontrollResultat?: KontrollresultatDto; + harVergeIÅpenBehandling?: boolean; +}; + +export type FagsakMarkeringDto = { + fagsakMarkering?: + | 'EØS_BOSATT_NORGE' + | 'BOSATT_UTLAND' + | 'SAMMENSATT_KONTROLL' + | 'DØD_DØDFØDSEL' + | 'PRAKSIS_UTSETTELSE' + | 'BARE_FAR_RETT' + | 'SELVSTENDIG_NÆRING' + | 'HASTER'; + kortNavn?: string; +}; + +export type FagsakNotatDto = { + opprettetAv?: string; + opprettetTidspunkt?: string; + notat?: string; +}; + +export type FaresignalgruppeDto = { + faresignaler?: Array; +}; + +export type HistorikkAktørDto = { + type?: 'BESL' | 'SBH' | 'SOKER' | 'ARBEIDSGIVER' | 'VL' | '-'; + ident?: string; +}; + +export type HistorikkInnslagDokumentLinkDto = { + tag?: string; + journalpostId?: string; + dokumentId?: string; + utgått?: boolean; +}; + +export type HistorikkinnslagDto = { + behandlingUuid?: string; + aktør?: HistorikkAktørDto; + skjermlenke?: + | 'ANKE_MERKNADER' + | 'ANKE_VURDERING' + | 'BEREGNING_ENGANGSSTOENAD' + | 'BEREGNING_FORELDREPENGER' + | 'BESTEBEREGNING' + | 'FAKTA_FOR_OMSORG' + | 'FAKTA_FOR_OPPTJENING' + | 'FAKTA_OM_ADOPSJON' + | 'FAKTA_OM_ARBEIDSFORHOLD' + | 'FAKTA_OM_ARBEIDSFORHOLD_INNTEKTSMELDING' + | 'FAKTA_OM_ARBEIDSFORHOLD_PERMISJON' + | 'FAKTA_OM_BEREGNING' + | 'FAKTA_OM_FOEDSEL' + | 'FAKTA_OM_FORDELING' + | 'FAKTA_OM_MEDLEMSKAP' + | 'FAKTA_OM_OMSORG_OG_FORELDREANSVAR' + | 'FAKTA_OM_OPPTJENING' + | 'FAKTA_OM_SIMULERING' + | 'FAKTA_OM_UTTAK' + | 'FAKTA_OM_AKTIVITETSKRAV' + | 'FAKTA_OMSORG_OG_RETT' + | 'FAKTA_OM_VERGE' + | 'FORMKRAV_KLAGE_KA' + | 'FORMKRAV_KLAGE_NFP' + | 'KLAGE_BEH_NFP' + | 'KLAGE_BEH_NK' + | 'KONTROLL_AV_SAKSOPPLYSNINGER' + | 'OPPLYSNINGSPLIKT' + | 'PUNKT_FOR_ADOPSJON' + | 'PUNKT_FOR_FOEDSEL' + | 'PUNKT_FOR_FORELDREANSVAR' + | 'PUNKT_FOR_MEDLEMSKAP' + | 'PUNKT_FOR_MEDLEMSKAP_LØPENDE' + | 'PUNKT_FOR_OMSORG' + | 'PUNKT_FOR_OPPTJENING' + | 'PUNKT_FOR_SVANGERSKAPSPENGER' + | 'PUNKT_FOR_SVP_INNGANG' + | 'SOEKNADSFRIST' + | 'TILKJENT_YTELSE' + | '-' + | 'UTLAND' + | 'UTTAK' + | 'VEDTAK' + | 'VURDER_FARESIGNALER' + | 'FAKTA_OM_UTTAK_DOKUMENTASJON' + | 'FAKTA_UTTAK'; + opprettetTidspunkt?: string; + dokumenter?: Array; + tittel?: string; + linjer?: Array; +}; + +export type KontrollresultatDto = { + kontrollresultat?: 'HOY' | 'IKKE_HOY' | 'IKKE_KLASSIFISERT' | '-'; + iayFaresignaler?: FaresignalgruppeDto; + medlFaresignaler?: FaresignalgruppeDto; + faresignalVurdering?: + | 'INNVIRKNING' + | 'INNVILGET_REDUSERT' + | 'INNVILGET_UENDRET' + | 'AVSLAG_FARESIGNAL' + | 'AVSLAG_ANNET' + | 'INGEN_INNVIRKNING' + | '-'; +}; + +export type Linje = { + type?: 'TEKST' | 'LINJESKIFT'; + tekst?: string; +}; + +export type SakHendelseDto = { + hendelseType?: 'ADPSJN' | 'OMSRGO' | 'FODSL' | 'TERM' | '-'; + hendelseDato?: string; + antallBarn?: number; + dødfødsel?: boolean; +}; + +export type TotrinnsBeregningDto = { + fastsattVarigEndringNaering?: boolean; + faktaOmBeregningTilfeller?: Array< + | 'VURDER_TIDSBEGRENSET_ARBEIDSFORHOLD' + | 'VURDER_SN_NY_I_ARBEIDSLIVET' + | 'VURDER_NYOPPSTARTET_FL' + | 'FASTSETT_MAANEDSINNTEKT_FL' + | 'FASTSETT_BG_ARBEIDSTAKER_UTEN_INNTEKTSMELDING' + | 'VURDER_LØNNSENDRING' + | 'FASTSETT_MÅNEDSLØNN_ARBEIDSTAKER_UTEN_INNTEKTSMELDING' + | 'VURDER_AT_OG_FL_I_SAMME_ORGANISASJON' + | 'FASTSETT_BESTEBEREGNING_FØDENDE_KVINNE' + | 'VURDER_ETTERLØNN_SLUTTPAKKE' + | 'FASTSETT_ETTERLØNN_SLUTTPAKKE' + | 'VURDER_MOTTAR_YTELSE' + | 'VURDER_BESTEBEREGNING' + | 'VURDER_MILITÆR_SIVILTJENESTE' + | 'VURDER_REFUSJONSKRAV_SOM_HAR_KOMMET_FOR_SENT' + | 'FASTSETT_BG_KUN_YTELSE' + | 'TILSTØTENDE_YTELSE' + | 'FASTSETT_ENDRET_BEREGNINGSGRUNNLAG' + | '-' + >; +}; + +export type TotrinnskontrollAksjonspunkterDto = { + aksjonspunktKode?: string; + opptjeningAktiviteter?: Array; + beregningDto?: TotrinnsBeregningDto; + besluttersBegrunnelse?: string; + totrinnskontrollGodkjent?: boolean; + vurderPaNyttArsaker?: Array< + 'FEIL_FAKTA' | 'FEIL_LOV' | 'SKJØNN' | 'UTREDNING' | 'SAKSFLYT' | 'BEGRUNNELSE' | '-' | 'ANNET' | 'FEIL_REGEL' + >; + uttakPerioder?: Array; +}; + +export type TotrinnskontrollAktivitetDto = { + aktivitetType?: string; + erEndring?: boolean; + godkjent?: boolean; + arbeidsgiverReferanse?: string; + arbeidsgiverNavn?: string; + orgnr?: string; + privatpersonFødselsdato?: string; +}; + +export type TotrinnskontrollSkjermlenkeContextDto = { + skjermlenkeType?: string; + totrinnskontrollAksjonspunkter?: Array; +}; + +export type UttakPeriodeEndringDto = { + fom?: string; + tom?: string; + erSlettet?: boolean; + erEndret?: boolean; + erLagtTil?: boolean; +}; + +export type LagreFagsakNotatDto = { + saksnummer: string; + notat: string; +}; + +export type SokefeltDto = { + searchString: string; +}; + +export type AvklartBarnDto = { + fodselsdato?: string; + dodsdato?: string; +}; + +export type AvklartDataAdopsjonDto = FamiliehendelseDto & { + mannAdoptererAlene?: boolean; + ektefellesBarn?: boolean; + omsorgsovertakelseDato?: string; + ankomstNorge?: string; + adopsjonFodelsedatoer?: { + [key: string]: string; + }; + fødselsdatoer?: { + [key: string]: string; + }; +}; + +export type AvklartDataFodselDto = FamiliehendelseDto & { + dokumentasjonForligger?: boolean; + dokumentasjonForeligger?: boolean; + avklartBarn?: Array; + brukAntallBarnFraTps?: boolean; + termindato?: string; + antallBarnTermin?: number; + utstedtdato?: string; + morForSykVedFodsel?: boolean; + vedtaksDatoSomSvangerskapsuke?: number; +}; + +export type AvklartDataOmsorgDto = FamiliehendelseDto & { + omsorgsovertakelseDato?: string; + vilkarType?: 'FP_VK_5' | 'FP_VK_8' | 'FP_VK_33' | '-'; + antallBarnTilBeregning?: number; + foreldreansvarDato?: string; + fødselsdatoer?: { + [key: string]: string; + }; +}; + +export type FamiliehendelseDto = { + soknadType?: 'ST-001' | 'ST-002'; + skjaringstidspunkt?: string; +}; + +export type FamilieHendelseGrunnlagDto = { + oppgitt?: FamiliehendelseDto; + gjeldende?: FamiliehendelseDto; + register?: FamiliehendelseDto; +}; + +export type FagsakInfomasjonDto = { + aktørId: string; + behandlingstemaOffisiellKode: string; +}; + +export type FamiliehendelseInfoDto = { + familiehendelseDato?: string; + familihendelseType?: 'FØDSEL' | 'TERMIN' | 'ADOPSJON' | 'OMSORG'; +}; + +export type SakInfoV2Dto = { + saksnummer: SaksnummerDto; + ytelseType: 'ES' | 'FP' | 'SVP'; + status: 'UNDER_BEHANDLING' | 'LØPENDE' | 'AVSLUTTET'; + familiehendelseInfoDto?: FamiliehendelseInfoDto; + opprettetDato: string; + førsteUttaksdato?: string; +}; + +export type AktørIdDto = { + aktørId: string; +}; + +export type SakInntektsmeldingDto = { + bruker: AktørIdDto; + ytelse: 'FORELDREPENGER' | 'SVANGERSKAPSPENGER'; +}; + +export type JournalpostKnyttningDto = { + saksnummerDto: SaksnummerDto; + journalpostIdDto: JournalpostIdDto; +}; + +export type JournalpostMottakDto = { + saksnummer: string; + journalpostId: string; + forsendelseId?: string; + eksternReferanseId?: string; + behandlingstemaOffisiellKode: string; + dokumentTypeIdOffisiellKode?: string; + forsendelseMottatt?: string; + forsendelseMottattTidspunkt?: string; + dokumentKategoriOffisiellKode?: string; + journalForendeEnhet?: string; + payloadXml?: string; + payloadLength?: number; +}; + +export type OpprettSakDto = { + journalpostId?: string; + behandlingstemaOffisiellKode: string; + aktørId: string; +}; + +export type OpprettSakV2Dto = { + journalpostId?: string; + ytelseType: 'ES' | 'FP' | 'SVP'; + aktørId: string; +}; + +export type BehandlendeFagsystemDto = { + behandlesIVedtaksløsningen?: boolean; + sjekkMotInfotrygd?: boolean; + manuellVurdering?: boolean; + saksnummerDto?: SaksnummerDto; +}; + +export type VurderFagsystemDto = { + journalpostId?: string; + strukturertSøknad: boolean; + aktørId: string; + behandlingstemaOffisiellKode: string; + adopsjonsBarnFodselsdatoer?: Array; + barnTermindato?: string; + barnFodselsdato?: string; + omsorgsovertakelsedato?: string; + årsakInnsendingInntektsmelding?: string; + saksnummer?: string; + annenPart?: string; + virksomhetsnummer?: string; + arbeidsgiverAktørId?: string; + arbeidsforholdsid?: string; + forsendelseMottatt?: string; + forsendelseMottattTidspunkt?: string; + startDatoForeldrepengerInntektsmelding?: string; + dokumentTypeIdOffisiellKode?: string; + dokumentKategoriOffisiellKode?: string; + brukerRolle?: 'MOR' | 'FAR' | 'MEDMOR'; +}; + +export type BeregningSatsDto = { + satsType: 'ENGANG' | 'GRUNNBELØP' | 'GSNITT' | '-'; + satsFom: string; + satsTom?: string; + satsVerdi: number; +}; + +export type EndreInntektsmeldingDto = { + behandlingUuid: string; + journalpostId: string; + refusjonOpphørFom?: string; + startdatoPermisjon?: string; + refusjonPrMndFraStart?: number; + refusjonsendringer?: Array; +}; + +export type RefusjonsendringDto = { + fom: string; + beløp: number; +}; + +export type ByttAktørRequestDto = { + utgåttAktørId: string; + gyldigAktørId: string; +}; + +export type KvitteringDto = { + behandlingUuid: string; + fagsystemId: number; + maksDato: string; + oppdaterProsessTask: boolean; +}; + +export type K27PatchDto = { + behandlingUuid: string; + fagsystemId: number; + maksDato: string; +}; + +export type OppdragPatchDto = { + behandingUuid: string; + brukerErMottaker: boolean; + arbeidsgiverOrgnr?: string; + kodeEndring: string; + fagsystemId: number; + oppdragslinjer: Array; + 'bruk-ompostering116'?: boolean; + 'omposter-fom'?: string; +}; + +export type OppdragslinjePatchDto = { + kodeEndring: string; + opphoerFom?: string; + kodeKlassifik: string; + fom: string; + tom: string; + sats: number; + satsType: string; + delytelseId: number; + refDelytelseId?: number; + refFagsystemId?: number; +}; + +export type OppgittAnnenAktivitetDto = { + periode: Periode; + arbeidType: + | 'ETTERLØNN_SLUTTPAKKE' + | 'FORENKLET_OPPGJØRSORDNING' + | 'FRILANSER' + | 'FRILANSER_OPPDRAGSTAKER' + | 'LØNN_UNDER_UTDANNING' + | 'MARITIMT_ARBEIDSFORHOLD' + | 'MILITÆR_ELLER_SIVILTJENESTE' + | 'ORDINÆRT_ARBEIDSFORHOLD' + | 'PENSJON_OG_ANDRE_TYPER_YTELSER_UTEN_ANSETTELSESFORHOLD' + | 'NÆRING' + | 'UTENLANDSK_ARBEIDSFORHOLD' + | 'VENTELØNN_VARTPENGER' + | 'VANLIG' + | '-'; +}; + +export type OppgittArbeidsforholdDto = { + periode: Periode; + arbeidType: + | 'ETTERLØNN_SLUTTPAKKE' + | 'FORENKLET_OPPGJØRSORDNING' + | 'FRILANSER' + | 'FRILANSER_OPPDRAGSTAKER' + | 'LØNN_UNDER_UTDANNING' + | 'MARITIMT_ARBEIDSFORHOLD' + | 'MILITÆR_ELLER_SIVILTJENESTE' + | 'ORDINÆRT_ARBEIDSFORHOLD' + | 'PENSJON_OG_ANDRE_TYPER_YTELSER_UTEN_ANSETTELSESFORHOLD' + | 'NÆRING' + | 'UTENLANDSK_ARBEIDSFORHOLD' + | 'VENTELØNN_VARTPENGER' + | 'VANLIG' + | '-'; + erUtenlandskInntekt?: boolean; + landkode: string; + inntekt?: number; + virksomhetNavn?: string; +}; + +export type OppgittEgenNæringDto = { + periode: Periode; + virksomhet?: Organisasjon; + virksomhetType?: 'DAGMAMMA' | 'FISKE' | 'JORDBRUK_SKOGBRUK' | 'ANNEN' | '-'; + regnskapsførerNavn?: string; + regnskapsførerTlf?: string; + virksomhetNavn?: string; + landkode: string; + endringDato?: string; + erVarigEndring?: boolean; + endringBegrunnelse?: string; + bruttoInntekt?: number; + erNyoppstartet?: boolean; + erNærRelasjon?: boolean; + erNyIArbeidslivet?: boolean; +}; + +export type OppgittFrilansDto = { + harInntektFraFosterhjem?: boolean; + erNyoppstartet?: boolean; + erNærRelasjon?: boolean; + frilansoppdrag: Array; +}; + +export type OppgittFrilansoppdragDto = { + periode: Periode; + oppdragsgiver?: string; + inntekt?: number; +}; + +export type OppgittOpptjeningDto = { + journalpostId?: string; + innsendingstidspunkt?: string; + eksternReferanse: string; + opprettetTidspunkt: string; + arbeidsforhold?: Array; + egenNæring?: Array; + annenAktivitet?: Array; + frilans?: OppgittFrilansDto; +}; + +export type Organisasjon = { + ident: string; +}; + +export type ProsessTaskIdDto = { + prosessTaskId: number; +}; + +export type InfotrygdRestanseDto = { + fnr?: string; + valg?: string; + type?: string; + registrert?: string; + mottatt?: string; + vedtatt?: string; + reellEnhet?: string; + behandlendeEnhet?: string; +}; + +export type TaskInput = { + fom?: string; + tom?: string; + ytelseType?: 'ES' | 'FP' | 'SVP' | '-'; + delayBetween?: number; +}; + +export type AnnenForelder = { + aktørId: string; + saksnummer?: string; + ytelseType?: 'FORELDREPENGER' | 'SVANGERSKAPSPENGER' | 'ENGANGSSTØNAD'; + saksrolle?: 'MOR' | 'FAR' | 'MEDMOR' | 'UKJENT'; +}; + +export type Barn = { + aktørId?: string; + fødselsdato: string; + dødsdato?: string; +}; + +export type Beregning = { + grunnbeløp: number; + årsbeløp: BeregningÅrsbeløp; + andeler?: Array; + næringOrgNr?: Array; + hjemmel: + | 'ARBEID' + | 'NÆRING' + | 'FRILANS' + | 'ARBEID_FRILANS' + | 'ARBEID_NÆRING' + | 'NÆRING_FRILANS' + | 'ARBEID_NÆRING_FRILANS' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'BESTEBEREGNING' + | 'MILITÆR_SIVIL' + | 'ANNEN'; + fastsatt: 'AUTOMATISK' | 'SKJØNN'; +}; + +export type BeregningAndel = { + aktivitet?: + | 'ARBEIDSAVKLARINGSPENGER' + | 'ARBEIDSTAKER' + | 'DAGPENGER' + | 'FRILANSER' + | 'MILITÆR_SIVILTJENESTE' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'YTELSE'; + arbeidsgiver?: string; + årsbeløp?: BeregningÅrsbeløp; +}; + +export type BeregningÅrsbeløp = { + brutto?: number; + avkortet?: number; + redusert?: number; + dagsats?: number; +}; + +export type FamilieHendelse = { + fødselsdato?: string; + termindato?: string; + antallBarn?: number; + omsorgsovertakelse?: string; +}; + +export type ForeldrepengerRettigheter = { + dekningsgrad: number; + rettighetType: 'ALENEOMSORG' | 'BARE_SØKER_RETT' | 'BEGGE_RETT' | 'BEGGE_RETT_EØS'; + stønadskonti: Array; + stønadsutvidelser?: Array; +}; + +export type Gradering = { + prosent?: number; + uttakAktivitet?: UttakAktivitet; +}; + +export type Stønadskonto = { + type: 'FORELDREPENGER' | 'FORELDREPENGER_FØR_FØDSEL' | 'MØDREKVOTE' | 'FELLESPERIODE' | 'FEDREKVOTE'; + maksdager: number; + restdager: number; + minsterett?: number; +}; + +export type StønadsstatistikkUtbetalingPeriode = { + fom: string; + tom: string; + inntektskategori: + | 'ARBEIDSTAKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | 'SJØMANN' + | 'FRILANSER' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER'; + arbeidsgiver?: string; + mottaker: 'BRUKER' | 'ARBEIDSGIVER'; + dagsats: number; + utbetalingsgrad: number; +}; + +export type StønadsstatistikkUttakPeriode = { + fom: string; + tom: string; + type?: 'UTTAK' | 'UTSETTELSE' | 'AVSLAG'; + stønadskontoType?: 'FORELDREPENGER' | 'FORELDREPENGER_FØR_FØDSEL' | 'MØDREKVOTE' | 'FELLESPERIODE' | 'FEDREKVOTE'; + rettighetType: 'ALENEOMSORG' | 'BARE_SØKER_RETT' | 'BEGGE_RETT' | 'BEGGE_RETT_EØS'; + forklaring?: + | 'UTSETTELSE_FERIE' + | 'UTSETTELSE_ARBEID' + | 'UTSETTELSE_INNLEGGELSE' + | 'UTSETTELSE_BARNINNLAGT' + | 'UTSETTELSE_SYKDOM' + | 'UTSETTELSE_HVOVELSE' + | 'UTSETTELSE_NAVTILTAK' + | 'OVERFØRING_ANNEN_PART_SYKDOM' + | 'OVERFØRING_ANNEN_PART_INNLAGT' + | 'OVERFØRING_ALENEOMSORG' + | 'OVERFØRING_BARE_SØKER_RETT' + | 'AKTIVITETSKRAV_ARBEID' + | 'AKTIVITETSKRAV_UTDANNING' + | 'AKTIVITETSKRAV_ARBEIDUTDANNING' + | 'AKTIVITETSKRAV_SYKDOM' + | 'AKTIVITETSKRAV_INNLEGGELSE' + | 'AKTIVITETSKRAV_INTRODUKSJONSPROGRAM' + | 'AKTIVITETSKRAV_KVALIFISERINGSPROGRAM' + | 'MINSTERETT' + | 'FLERBARNSDAGER' + | 'SAMTIDIG_MØDREKVOTE' + | 'AVSLAG_ANNET' + | 'AVSLAG_AKTIVITETSKRAV' + | 'AVSLAG_SØKNADSFRIST' + | 'AVSLAG_IKKE_SØKT' + | 'AVSLAG_UTSETTELSE' + | 'AVSLAG_UTSETTELSE_TILBAKE_I_TID' + | 'AVSLAG_PLEIEPENGER' + | 'AVSLAG_STØNADSPERIODE_UTLØPT' + | 'AVSLAG_VILKÅR'; + søknadsdato?: string; + erUtbetaling?: boolean; + virkedager?: number; + trekkdager: number; + gradering?: Gradering; + samtidigUttakProsent?: number; +}; + +export type StønadsstatistikkVedtak = { + saksnummer?: string; + fagsakId?: number; + ytelseType: 'FORELDREPENGER' | 'SVANGERSKAPSPENGER' | 'ENGANGSSTØNAD'; + lovVersjon: + | 'FORELDREPENGER_2019_01_01' + | 'FORELDREPENGER_FRI_2021_10_01' + | 'FORELDREPENGER_MINSTERETT_2022_08_02' + | 'FORELDREPENGER_UTJEVNE80_2024_07_01' + | 'FORELDREPENGER_MINSTERETT_2024_08_02' + | 'ENGANGSSTØNAD_2019_01_01' + | 'ENGANGSSTØNAD_MEDLEM_2024_10_01' + | 'SVANGERSKAPSPENGER_2019_01_01'; + behandlingUuid: string; + forrigeBehandlingUuid?: string; + revurderingÅrsak?: + | 'MANUELL' + | 'UTTAKMANUELL' + | 'KLAGE' + | 'ETTERKONTROLL' + | 'SØKNAD' + | 'INNTEKTSMELDING' + | 'FOLKEREGISTER' + | 'PLEIEPENGER' + | 'NYSAK' + | 'ANNENFORELDER' + | 'REGULERING' + | 'PRAKSIS_UTSETTELSE'; + søknadsdato: string; + skjæringstidspunkt?: string; + vedtakstidspunkt: string; + vedtaksresultat: 'INNVILGET' | 'AVSLAG' | 'OPPHØR'; + vilkårIkkeOppfylt?: + | 'MEDLEMSKAP' + | 'SØKNADSFRIST' + | 'OPPLYSNINGSPLIKT' + | 'SVANGERSKAPSPENGER' + | 'ENGANGSSTØNAD' + | 'FORELDREPENGER_GENERELL' + | 'FORELDREPENGER_OPPTJENING' + | 'FORELDREPENGER_BEREGNING' + | 'FORELDREPENGER_UTTAK'; + søker: string; + saksrolle: 'MOR' | 'FAR' | 'MEDMOR' | 'UKJENT'; + utlandsTilsnitt: 'NASJONAL' | 'EØS_BOSATT_NORGE' | 'BOSATT_UTLAND'; + annenForelder?: AnnenForelder; + familieHendelse?: FamilieHendelse; + beregning?: Beregning; + utbetalingsreferanse: string; + behandlingId?: number; + engangsstønadInnvilget?: number; + foreldrepengerRettigheter?: ForeldrepengerRettigheter; + uttaksperioder?: Array; + utbetalingssperioder?: Array; +}; + +export type Stønadsutvidelse = { + type: 'FLERBARNSDAGER' | 'PREMATURDAGER'; + dager?: number; +}; + +export type MigreringTaskInput = { + fom?: string; +}; + +export type FpSakInntektsmeldingDto = { + erAktiv?: boolean; + stillingsprosent?: number; + inntektPrMnd?: number; + refusjonPrMnd?: number; + arbeidsgiverNavn?: string; + arbeidsgiverIdent?: string; + journalpostId?: string; + mottattTidspunkt?: string; + startDatoPermisjon?: string; + bortfalteNaturalytelser?: Array; + refusjonsperioder?: Array; +}; + +export type Naturalytelse = { + fomDato?: string; + tomDato?: string; + beløpPerMnd?: number; + type?: + | 'ELEKTRISK_KOMMUNIKASJON' + | 'AKSJER_GRUNNFONDSBEVIS_TIL_UNDERKURS' + | 'LOSJI' + | 'KOST_DØGN' + | 'BESØKSREISER_HJEMMET_ANNET' + | 'KOSTBESPARELSE_I_HJEMMET' + | 'RENTEFORDEL_LÅN' + | 'BIL' + | 'KOST_DAGER' + | 'BOLIG' + | 'SKATTEPLIKTIG_DEL_FORSIKRINGER' + | 'FRI_TRANSPORT' + | 'OPSJONER' + | 'TILSKUDD_BARNEHAGEPLASS' + | 'ANNET' + | 'BEDRIFTSBARNEHAGEPLASS' + | 'YRKEBIL_TJENESTLIGBEHOV_KILOMETER' + | 'YRKEBIL_TJENESTLIGBEHOV_LISTEPRIS' + | 'INNBETALING_TIL_UTENLANDSK_PENSJONSORDNING'; +}; + +export type Aksjonspunkt = { + type?: + | 'VENT_MANUELT_SATT' + | 'VENT_FØDSEL' + | 'VENT_KOMPLETT_SØKNAD' + | 'VENT_REVURDERING' + | 'VENT_TIDLIG_SØKNAD' + | 'VENT_KØET_BEHANDLING' + | 'VENT_SØKNAD' + | 'VENT_INNTEKT_RAPPORTERINGSFRIST' + | 'VENT_SISTE_AAP_ELLER_DP_MELDEKORT' + | 'VENT_ETTERLYST_INNTEKTSMELDING' + | 'VENT_ANKE_OVERSENDT_TIL_TRYGDERETTEN' + | 'VENT_SYKEMELDING' + | 'VENT_KABAL_KLAGE' + | 'VENT_PÅ_KABAL_ANKE'; + venteårsak?: + | 'ANKE_VENTER_PÅ_MERKNADER_FRA_BRUKER' + | 'AVVENT_DOKUMTANSJON' + | 'AVVENT_FØDSEL' + | 'AVVENT_RESPONS_REVURDERING' + | 'BRUKERTILBAKEMELDING' + | 'UTLAND_TRYGD' + | 'FOR_TIDLIG_SOKNAD' + | 'UTVIDET_FRIST' + | 'INNTEKT_RAPPORTERINGSFRIST' + | 'MANGLENDE_SYKEMELDING' + | 'MANGLENDE_INNTEKTSMELDING' + | 'OPPTJENING_OPPLYSNINGER' + | 'SISTE_AAP_ELLER_DP_MELDEKORT' + | 'SENDT_INFORMASJONSBREV' + | 'ÅPEN_BEHANDLING'; + tidsfrist?: string; +}; + +export type Aktivitet = { + type?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS'; + arbeidsgiver?: string; + arbeidsforholdId?: string; + arbeidsgiverNavn?: string; +}; + +export type ArbeidsforholdUttak = { + aktivitet?: Aktivitet; + behovFom?: string; + risikoFaktorer?: string; + tiltak?: string; + svpPerioder?: Array; + oppholdsperioder?: Array; + ikkeOppfyltÅrsak?: + | 'ARBEIDSGIVER_KAN_TILRETTELEGGE' + | 'ARBEIDSGIVER_KAN_TILRETTELEGGE_FREM_TIL_3_UKER_FØR_TERMIN' + | 'ANNET'; +}; + +export type EsSak = Sak & { + type: 'EsSak'; +} & { + saksnummer?: string; + aktørId?: string; + familieHendelse?: FamilieHendelse; + avsluttet?: boolean; + aksjonspunkt?: Array; + søknader?: Array; + vedtak?: Array; +}; + +export type FpSak = Sak & { + type: 'FpSak'; +} & { + saksnummer?: string; + aktørId?: string; + familieHendelse?: FamilieHendelse; + avsluttet?: boolean; + vedtak?: Array; + oppgittAnnenPart?: string; + aksjonspunkt?: Array; + søknader?: Array; + brukerRolle?: 'MOR' | 'FAR' | 'MEDMOR' | 'UKJENT'; + fødteBarn?: Array; + rettigheter?: Rettigheter; + ønskerJustertUttakVedFødsel?: boolean; +}; + +export type OppholdPeriode = { + fom?: string; + tom?: string; + årsak?: 'FERIE' | 'SYKEPENGER'; + kilde?: 'SØKNAD' | 'SAKSBEHANDLER' | 'INNTEKTSMELDING'; +}; + +export type Resultat = { + type?: 'INNVILGET' | 'INNVILGET_GRADERING' | 'AVSLÅTT'; + årsak?: + | 'ANNET' + | 'AVSLAG_HULL_I_UTTAKSPLAN' + | 'AVSLAG_UTSETTELSE_TILBAKE_I_TID' + | 'INNVILGET_UTTAK_AVSLÅTT_GRADERING_TILBAKE_I_TID' + | 'AVSLAG_FRATREKK_PLEIEPENGER'; + aktiviteter?: Array; + trekkerMinsterett?: boolean; +}; + +export type Rettigheter = { + aleneomsorg?: boolean; + morUføretrygd?: boolean; + annenForelderTilsvarendeRettEØS?: boolean; +}; + +export type Sak = { + type: string; +}; + +export type SvpPeriode = { + fom?: string; + tom?: string; + tilretteleggingType?: 'HEL' | 'DELVIS' | 'INGEN'; + arbeidstidprosent?: number; + utbetalingsgrad?: number; + resultatÅrsak?: + | 'INNVILGET' + | 'AVSLAG_SØKNADSFRIST' + | 'AVSLAG_ANNET' + | 'AVSLAG_INNGANGSVILKÅR' + | 'OPPHØR_OVERGANG_FORELDREPENGER' + | 'OPPHØR_FØDSEL' + | 'OPPHØR_TIDSPERIODE_FØR_TERMIN' + | 'OPPHØR_OPPHOLD_I_YTELSEN' + | 'OPPHØR_ANNET'; +}; + +export type SvpSak = Sak & { + type: 'SvpSak'; +} & { + saksnummer?: string; + aktørId?: string; + familieHendelse?: FamilieHendelse; + avsluttet?: boolean; + aksjonspunkt?: Array; + søknader?: Array; + vedtak?: Array; +}; + +export type Tilrettelegging = { + aktivitet?: Aktivitet; + behovFom?: string; + risikoFaktorer?: string; + tiltak?: string; + perioder?: Array; + oppholdsperioder?: Array; +}; + +export type UttakAktivitet = { + type?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; + arbeidsgiver?: string; + arbeidsforholdId?: string; +}; + +export type Uttaksperiode = { + fom?: string; + tom?: string; + utsettelseÅrsak?: + | 'HV_ØVELSE' + | 'ARBEID' + | 'LOVBESTEMT_FERIE' + | 'SØKER_SYKDOM' + | 'SØKER_INNLAGT' + | 'BARN_INNLAGT' + | 'NAV_TILTAK' + | 'FRI'; + oppholdÅrsak?: + | 'MØDREKVOTE_ANNEN_FORELDER' + | 'FEDREKVOTE_ANNEN_FORELDER' + | 'FELLESPERIODE_ANNEN_FORELDER' + | 'FORELDREPENGER_ANNEN_FORELDER'; + overføringÅrsak?: + | 'INSTITUSJONSOPPHOLD_ANNEN_FORELDER' + | 'SYKDOM_ANNEN_FORELDER' + | 'IKKE_RETT_ANNEN_FORELDER' + | 'ALENEOMSORG'; + samtidigUttak?: number; + flerbarnsdager?: boolean; + morsAktivitet?: + | 'ARBEID' + | 'UTDANNING' + | 'KVALPROG' + | 'INTROPROG' + | 'TRENGER_HJELP' + | 'INNLAGT' + | 'ARBEID_OG_UTDANNING' + | 'UFØRE' + | 'IKKE_OPPGITT'; + resultat?: Resultat; +}; + +export type UttaksperiodeAktivitet = { + aktivitet?: UttakAktivitet; + konto?: 'FORELDREPENGER' | 'MØDREKVOTE' | 'FEDREKVOTE' | 'FELLESPERIODE' | 'FORELDREPENGER_FØR_FØDSEL'; + trekkdager?: number; + arbeidstidsprosent?: number; +}; + +export type Vedtak = { + behandlingstema?: InfotrygdKode; + identdato?: string; + opphørFom?: string; + opprinneligIdentdato?: string; + periode?: Periode; + registrert?: string; + saksbehandlerId?: string; + arbeidskategori?: InfotrygdKode; + arbeidsforhold?: Array; + dekningsgrad?: number; + fødselsdatoBarn?: string; + gradering?: number; + utbetalinger?: Array; +}; + +export type EnkelRespons = { + status?: string; +}; + +export type AdressebeskyttelseHendelseDto = HendelseDto & { + aktørId: Array; +}; + +export type DødHendelseDto = HendelseDto & { + aktørId: Array; + dødsdato?: string; +}; + +export type DødfødselHendelseDto = HendelseDto & { + aktørId: Array; + dødfødselsdato?: string; +}; + +export type FødselHendelseDto = HendelseDto & { + aktørIdForeldre: Array; + fødselsdato?: string; +}; + +export type HendelseDto = { + id: string; + endringstype: 'OPPRETTET' | 'KORRIGERT' | 'ANNULLERT' | 'OPPHOERT'; + avsenderSystem?: string; + hendelsetype?: string; + alleAktørId?: Array; +}; + +export type HendelseWrapperDto = { + hendelse: HendelseDto; + alleAktørId?: Array; +}; + +export type UtflyttingHendelseDto = HendelseDto & { + aktørId: Array; + utflyttingsdato?: string; +}; + +export type Arbeidsforhold = { + arbeidsgiverOrgnr?: string; + inntekt?: number; + inntektsperiode?: InfotrygdKode; + refusjon?: boolean; + refusjonTom?: string; + identdato?: string; + opprinneligIdentdato?: string; +}; + +export type InfotrygdKode = { + kode?: string; + termnavn?: string; +}; + +export type InfotrygdVedtakDto = { + saker?: Array; + vedtakKjeder?: Array; +}; + +export type SakDto = { + resultat?: string; + registrert?: string; + sakId?: string; + type?: string; + vedtatt?: string; + valg?: string; + undervalg?: string; + nivaa?: string; +}; + +export type Utbetaling = { + periode?: Periode; + utbetalingsgrad?: number; + arbeidsgiverOrgnr?: string; + erRefusjon?: boolean; + dagsats?: number; + identdato?: string; + opprinneligIdentdato?: string; +}; + +export type VedtakKjede = { + opprinneligIdentdato?: string; + behandlingstema?: InfotrygdKode; + vedtak?: Array; +}; + +export type LosAksjonspunktDto = { + definisjon?: string; + status?: 'AVBRUTT' | 'OPPRETTET' | 'UTFØRT'; + fristTid?: string; +}; + +export type LosBehandlingDto = { + behandlingUuid: string; + kildesystem: 'FPSAK' | 'FPTILBAKE'; + saksnummer: string; + ytelse: 'ENGANGSTØNAD' | 'FORELDREPENGER' | 'SVANGERSKAPSPENGER'; + aktørId: string; + behandlingstype: + | 'FØRSTEGANGS' + | 'REVURDERING' + | 'TILBAKEBETALING' + | 'TILBAKEBETALING_REVURDERING' + | 'KLAGE' + | 'ANKE' + | 'INNSYN'; + behandlingsstatus: 'OPPRETTET' | 'UTREDES' | 'FATTER_VEDTAK' | 'IVERKSETTER_VEDTAK' | 'AVSLUTTET'; + opprettetTidspunkt: string; + behandlendeEnhetId?: string; + behandlingsfrist?: string; + ansvarligSaksbehandlerIdent?: string; + aksjonspunkt?: Array; + behandlingsårsaker?: Array< + | 'SØKNAD' + | 'INNTEKTSMELDING' + | 'FOLKEREGISTER' + | 'PLEIEPENGER' + | 'ETTERKONTROLL' + | 'MANUELL' + | 'BERØRT' + | 'UTSATT_START' + | 'OPPHØR_NY_SAK' + | 'REGULERING' + | 'KLAGE_OMGJØRING' + | 'KLAGE_TILBAKEBETALING' + | 'ANNET' + >; + faresignaler?: boolean; + refusjonskrav?: boolean; + saksegenskaper?: Array; + foreldrepengerDto?: LosForeldrepengerDto; + behandlingsegenskaper?: Array; + tilbakeDto?: LosTilbakeDto; +}; + +export type LosForeldrepengerDto = { + førsteUttakDato?: string; +}; + +export type LosTilbakeDto = { + feilutbetaltBeløp?: number; + førsteFeilutbetalingDato?: string; +}; + +export type LosFagsakEgenskaperDto = { + saksegenskaper?: Array; + fagsakMarkering?: string; +}; + +export type NøkkeltallBehandlingVentefristUtløper = { + behandlendeEnhet?: string; + fagsakYtelseType?: 'ES' | 'FP' | 'SVP' | '-'; + behandlingFrist?: string; + antall?: number; +}; + +export type NøkkeltallBehandlingFørsteUttak = { + behandlendeEnhet?: string; + behandlingType?: 'BT-002' | 'BT-003' | 'BT-004' | 'BT-008' | 'BT-006' | 'BT-007' | 'BT-009' | '-'; + behandlingVenteStatus?: 'PÅ_VENT' | 'IKKE_PÅ_VENT'; + førsteUttakMåned?: string; + antall?: number; +}; + +export type InitLinksDto = { + innloggetBruker?: InnloggetNavAnsattDto; + behandlendeEnheter?: Array; + links?: Array; + sakLinks?: Array; +}; + +export type InnloggetNavAnsattDto = { + brukernavn?: string; + navn?: string; + kanSaksbehandle?: boolean; + kanVeilede?: boolean; + kanOverstyre?: boolean; + kanOppgavestyre?: boolean; + kanBehandleKode6?: boolean; + funksjonellTid?: string; +}; + +export type OrganisasjonsEnhet = { + enhetId?: string; + enhetNavn?: string; +}; + +export type GenererVedtaksXmlDto = { + fom: string; + tom: string; + maksAntall: number; +}; + +export type FeedDto = { + tittel?: string; + inneholderFlereElementer?: boolean; + elementer?: Array; +}; + +export type FeedElement = { + type?: string; + sekvensId?: number; + innhold?: { + [key: string]: unknown; + }; + metadata?: { + [key: string]: unknown; + }; +}; + +export type SekvensIdParam = { + [key: string]: unknown; +}; + +export type MaxAntallParam = { + [key: string]: unknown; +}; + +export type HendelseTypeParam = { + [key: string]: unknown; +}; + +export type AktørParam = { + [key: string]: unknown; +}; + +export type SakOgPersonerDto = { + saksnummer?: string; + saksident?: string; + identer?: Array; +}; + +export type ProsessTaskDataDto = { + id: number; + taskType: string; + nesteKjøringEtter?: string; + gruppe: string; + sekvens: string; + status: string; + sistKjørt?: string; + sisteFeilKode?: string; + taskParametre?: { + [key: string]: string; + }; +}; + +export type ProsessTaskOpprettInputDto = { + taskType: string; + taskParametre: { + [key: string]: string; + }; +}; + +export type FeiletProsessTaskDataDto = { + id: number; + taskType: string; + nesteKjøringEtter?: string; + gruppe: string; + sekvens: string; + status: string; + sistKjørt?: string; + sisteFeilKode?: string; + taskParametre?: { + [key: string]: string; + }; + sisteKjøringServerProsess?: string; + sisteFeilTekst?: string; + feiledeForsøk?: number; +}; + +/** + * Resultatet av asynkron-restart av en eksisterende prosesstask + */ +export type ProsessTaskRestartResultatDto = { + prosessTaskId: number; + /** + * Nåværende status (KLAR) + */ + prosessTaskStatus: string; + /** + * Kjøretidspunkt for restart av prosessen + */ + nesteKjoeretidspunkt: string; +}; + +/** + * Resultatet av asynkron-restart av feilede prosesstasks + */ +export type ProsessTaskRetryAllResultatDto = { + /** + * Prosesstasks som restartes + */ + prosessTaskIds?: Array; +}; + +export type SokeFilterDto = { + tekst: string; + sisteKjoeretidspunktFraOgMed?: string; + sisteKjoeretidspunktTilOgMed?: string; +}; + +export type CallbackData = { + /** + * callbackDto + */ + body?: CallbackDto; + path?: never; + query?: never; + url: '/api/registerdata/iay/callback'; +}; + +export type CallbackResponses = { + /** + * default response + */ + default: unknown; +}; + +export type AutoRunBatchData = { + body?: never; + path?: never; + query?: never; + url: '/api/batch/autorun'; +}; + +export type AutoRunBatchErrors = { + /** + * Feilet pga ukjent feil + */ + 500: unknown; +}; + +export type AutoRunBatchResponses = { + /** + * Starter batch-scheduler + */ + 200: unknown; +}; + +export type HentBehandlingResultatForBackendData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/backend-root'; +}; + +export type HentBehandlingResultatForBackendResponses = { + /** + * Returnerer behandling + */ + 200: BehandlingDto; +}; + +export type HentBehandlingResultatForBackendResponse = + HentBehandlingResultatForBackendResponses[keyof HentBehandlingResultatForBackendResponses]; + +export type BehandlingErHasteSakData = { + /** + * BehandlingId for behandling som merkes som Haster + */ + body?: ReåpneBehandlingDto; + path?: never; + query?: never; + url: '/api/behandlinger/haster'; +}; + +export type BehandlingErHasteSakResponses = { + /** + * default response + */ + default: unknown; +}; + +export type ByttBehandlendeEnhetData = { + /** + * Ny enhet som skal byttes + */ + body?: ByttBehandlendeEnhetDto; + path?: never; + query?: never; + url: '/api/behandlinger/bytt-enhet'; +}; + +export type ByttBehandlendeEnhetResponses = { + /** + * default response + */ + default: unknown; +}; + +export type EndreFristForBehandlingPaVentData = { + /** + * Frist for behandling på vent + */ + body?: SettBehandlingPaVentDto; + path?: never; + query?: never; + url: '/api/behandlinger/endre-pa-vent'; +}; + +export type EndreFristForBehandlingPaVentResponses = { + /** + * default response + */ + default: unknown; +}; + +export type GjenopptaBehandlingData = { + /** + * BehandlingId for behandling som skal gjenopptas + */ + body?: GjenopptaBehandlingDto; + path?: never; + query?: never; + url: '/api/behandlinger/gjenoppta'; +}; + +export type GjenopptaBehandlingResponses = { + /** + * Gjenoppta behandling påstartet i bakgrunnen + */ + 200: unknown; +}; + +export type HenleggBehandlingData = { + /** + * Henleggelsesårsak + */ + body?: HenleggBehandlingDto; + path?: never; + query?: never; + url: '/api/behandlinger/henlegg'; +}; + +export type HenleggBehandlingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentAnnenPartsGjeldendeBehandlingData = { + body?: never; + path?: never; + query: { + /** + * Saksnummer må være et eksisterende saksnummer + */ + saksnummer: SaksnummerDto; + }; + url: '/api/behandlinger/annen-part-behandling'; +}; + +export type HentAnnenPartsGjeldendeBehandlingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentBehandlingResultatData = { + body?: never; + path?: never; + query: { + behandlingId: BehandlingIdDto; + }; + url: '/api/behandlinger'; +}; + +export type HentBehandlingResultatResponses = { + /** + * Returnerer Behandling + */ + 200: UtvidetBehandlingDto; +}; + +export type HentBehandlingResultatResponse = HentBehandlingResultatResponses[keyof HentBehandlingResultatResponses]; + +export type HentBehandlingData = { + body: BehandlingIdDto; + path?: never; + query?: never; + url: '/api/behandlinger'; +}; + +export type HentBehandlingResponses = { + /** + * Hent behandling initiert, Returnerer link til å polle på fremdrift + */ + 202: unknown; +}; + +export type OpprettNyBehandlingData = { + /** + * Saksnummer og flagg om det er ny behandling etter klage + */ + body?: NyBehandlingDto; + path?: never; + query?: never; + url: '/api/behandlinger'; +}; + +export type OpprettNyBehandlingResponses = { + /** + * Opprett ny behandling pågår + */ + 202: unknown; +}; + +export type HentBehandlingerData = { + body?: never; + path?: never; + query: { + /** + * Saksnummer må være et eksisterende saksnummer + */ + saksnummer: SaksnummerDto; + }; + url: '/api/behandlinger/alle'; +}; + +export type HentBehandlingerResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentBehandlingerResponse = HentBehandlingerResponses[keyof HentBehandlingerResponses]; + +export type SettBehandlingPaVentData = { + /** + * Frist for behandling på vent + */ + body?: SettBehandlingPaVentDto; + path?: never; + query?: never; + url: '/api/behandlinger/sett-pa-vent'; +}; + +export type SettBehandlingPaVentResponses = { + /** + * default response + */ + default: unknown; +}; + +export type ÅpneBehandlingForEndringerData = { + /** + * BehandlingId for behandling som skal åpnes for endringer + */ + body?: ReåpneBehandlingDto; + path?: never; + query?: never; + url: '/api/behandlinger/opne-for-endringer'; +}; + +export type ÅpneBehandlingForEndringerResponses = { + /** + * Åpning av behandling for endringer påstartet i bakgrunnen + */ + 200: unknown; +}; + +export type HentBehandlingMidlertidigStatusData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + gruppe?: ProsessTaskGruppeIdDto; + }; + url: '/api/behandling/status'; +}; + +export type HentBehandlingMidlertidigStatusErrors = { + /** + * ProsessTasks har feilet + */ + 418: AsyncPollingStatus; +}; + +export type HentBehandlingMidlertidigStatusError = + HentBehandlingMidlertidigStatusErrors[keyof HentBehandlingMidlertidigStatusErrors]; + +export type HentBehandlingMidlertidigStatusResponses = { + /** + * Returnerer Status + */ + 200: AsyncPollingStatus; +}; + +export type HentBehandlingMidlertidigStatusResponse = + HentBehandlingMidlertidigStatusResponses[keyof HentBehandlingMidlertidigStatusResponses]; + +export type HentBehandlingResultat1Data = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling'; +}; + +export type HentBehandlingResultat1Responses = { + /** + * Returnerer Behandling + */ + 200: UtvidetBehandlingDto; +}; + +export type HentBehandlingResultat1Response = HentBehandlingResultat1Responses[keyof HentBehandlingResultat1Responses]; + +export type BekreftData = { + /** + * Liste over aksjonspunkt som skal bekreftes, inklusiv data som trengs for å løse de. + */ + body?: BekreftedeAksjonspunkterDto; + path?: never; + query?: never; + url: '/api/behandling/aksjonspunkt'; +}; + +export type BekreftResponses = { + /** + * default response + */ + default: unknown; +}; + +export type BesluttData = { + /** + * Liste over aksjonspunkt som skal bekreftes, inklusiv data som trengs for å løse de. + */ + body?: BekreftedeAksjonspunkterDto; + path?: never; + query?: never; + url: '/api/behandling/aksjonspunkt/beslutt'; +}; + +export type BesluttResponses = { + /** + * default response + */ + default: unknown; +}; + +export type GetAksjonspunkterData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/aksjonspunkt-v2'; +}; + +export type GetAksjonspunkterResponses = { + 200: Array; +}; + +export type GetAksjonspunkterResponse = GetAksjonspunkterResponses[keyof GetAksjonspunkterResponses]; + +export type OverstyrData = { + /** + * Liste over overstyring aksjonspunkter. + */ + body?: OverstyrteAksjonspunkterDto; + path?: never; + query?: never; + url: '/api/behandling/aksjonspunkt/overstyr'; +}; + +export type OverstyrResponses = { + /** + * default response + */ + default: unknown; +}; + +export type GetAnkeVurderingData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/anke/anke-vurdering-v2'; +}; + +export type GetAnkeVurderingResponses = { + /** + * Returnerer vurdering av en anke fra ulike instanser + */ + 200: AnkebehandlingDto; +}; + +export type GetAnkeVurderingResponse = GetAnkeVurderingResponses[keyof GetAnkeVurderingResponses]; + +export type GetAlleInntektsmeldingerData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/arbeid-inntektsmelding/alle-inntektsmeldinger'; +}; + +export type GetAlleInntektsmeldingerResponses = { + 200: InntektsmeldingDto; +}; + +export type GetAlleInntektsmeldingerResponse = + GetAlleInntektsmeldingerResponses[keyof GetAlleInntektsmeldingerResponses]; + +export type GetArbeidOgInntektsmeldingerData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/arbeid-inntektsmelding'; +}; + +export type GetArbeidOgInntektsmeldingerResponses = { + /** + * Returnerer ArbeidOgInntektsmeldingDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: ArbeidOgInntektsmeldingDto; +}; + +export type GetArbeidOgInntektsmeldingerResponse = + GetArbeidOgInntektsmeldingerResponses[keyof GetArbeidOgInntektsmeldingerResponses]; + +export type LagreManuelleArbeidsforholdData = { + /** + * Registrering av arbeidsforhold. + */ + body: ManueltArbeidsforholdDto; + path?: never; + query?: never; + url: '/api/behandling/arbeid-inntektsmelding/lagre-arbeidsforhold'; +}; + +export type LagreManuelleArbeidsforholdResponses = { + /** + * default response + */ + default: unknown; +}; + +export type LagreVurderingAvManglendeOpplysningerData = { + /** + * Vurdering av opplysning som mangler. + */ + body: ManglendeOpplysningerVurderingDto; + path?: never; + query?: never; + url: '/api/behandling/arbeid-inntektsmelding/lagre-vurdering'; +}; + +export type LagreVurderingAvManglendeOpplysningerResponses = { + /** + * default response + */ + default: unknown; +}; + +export type ÅpneForEndringData = { + /** + * BehandlingUID og versjon på behadlingen. + */ + body: BehandlingIdVersjonDto; + path?: never; + query?: never; + url: '/api/behandling/arbeid-inntektsmelding/apne-for-ny-vurdering'; +}; + +export type ÅpneForEndringResponses = { + /** + * default response + */ + default: unknown; +}; + +export type GetAlleInntektsmeldinger1Data = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/inntektsmeldinger-alle'; +}; + +export type GetAlleInntektsmeldinger1Responses = { + /** + * Returnerer InntektsmeldingerDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: InntektsmeldingerDto; +}; + +export type GetAlleInntektsmeldinger1Response = + GetAlleInntektsmeldinger1Responses[keyof GetAlleInntektsmeldinger1Responses]; + +export type GetArbeidsgiverOpplysningerData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/arbeidsgivere-opplysninger'; +}; + +export type GetArbeidsgiverOpplysningerResponses = { + /** + * Returnerer InntektArbeidYtelseDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: ArbeidsgiverOversiktDto; +}; + +export type GetArbeidsgiverOpplysningerResponse = + GetArbeidsgiverOpplysningerResponses[keyof GetArbeidsgiverOpplysningerResponses]; + +export type GetInntektArbeidYtelserData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/inntekt-arbeid-ytelse'; +}; + +export type GetInntektArbeidYtelserResponses = { + /** + * Returnerer InntektArbeidYtelseDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: IayYtelseDto; +}; + +export type GetInntektArbeidYtelserResponse = GetInntektArbeidYtelserResponses[keyof GetInntektArbeidYtelserResponses]; + +export type HentBeregningsgrunnlagData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/beregningsgrunnlag'; +}; + +export type HentBeregningsgrunnlagResponses = { + /** + * default response + */ + default: BeregningsgrunnlagDto; +}; + +export type HentBeregningsgrunnlagResponse = HentBeregningsgrunnlagResponses[keyof HentBeregningsgrunnlagResponses]; + +export type HentBeregningsresultatDagytelseData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/beregningsresultat/dagytelse'; +}; + +export type HentBeregningsresultatDagytelseResponses = { + /** + * default response + */ + default: BeregningsresultatMedUttaksplanDto; +}; + +export type HentBeregningsresultatDagytelseResponse = + HentBeregningsresultatDagytelseResponses[keyof HentBeregningsresultatDagytelseResponses]; + +export type HentBeregningsresultatEngangsstønadData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/beregningsresultat/engangsstonad'; +}; + +export type HentBeregningsresultatEngangsstønadResponses = { + /** + * default response + */ + default: BeregningsresultatEngangsstønadDto; +}; + +export type HentBeregningsresultatEngangsstønadResponse = + HentBeregningsresultatEngangsstønadResponses[keyof HentBeregningsresultatEngangsstønadResponses]; + +export type HentFeriepengerData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/feriepengegrunnlag'; +}; + +export type HentFeriepengerResponses = { + /** + * default response + */ + default: FeriepengegrunnlagDto; +}; + +export type HentFeriepengerResponse = HentFeriepengerResponses[keyof HentFeriepengerResponses]; + +export type HentFødselData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/fodsel/fakta-fodsel'; +}; + +export type HentFødselResponses = { + /** + * Returnerer Fakta om fødsel og termin) + */ + 200: FødselDto; +}; + +export type HentFødselResponse = HentFødselResponses[keyof HentFødselResponses]; + +export type HentAlleInnslagData = { + body?: never; + path?: never; + query: { + /** + * Saksnummer må være et eksisterende saksnummer + */ + saksnummer: SaksnummerDto; + }; + url: '/api/historikk'; +}; + +export type HentAlleInnslagResponses = { + /** + * default response + */ + default: unknown; +}; + +export type GetInnsynsbehandlingData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/innsyn'; +}; + +export type GetInnsynsbehandlingResponses = { + /** + * Returnerer innsynsbehandling eller ingenting hvis uuid ikke peker på en innsynsbehandling + */ + 200: InnsynsbehandlingDto; +}; + +export type GetInnsynsbehandlingResponse = GetInnsynsbehandlingResponses[keyof GetInnsynsbehandlingResponses]; + +export type GetKlageVurderingData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/klage-v2'; +}; + +export type GetKlageVurderingResponses = { + /** + * Returnerer vurdering av en klage fra ulike instanser + */ + 200: KlagebehandlingDto; +}; + +export type GetKlageVurderingResponse = GetKlageVurderingResponses[keyof GetKlageVurderingResponses]; + +export type GetMottattKlagedokumentData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/klage/mottatt-klagedokument-v2'; +}; + +export type GetMottattKlagedokumentResponses = { + /** + * Returnerer mottatt klagedokument + */ + 200: MottattKlagedokumentDto; +}; + +export type GetMottattKlagedokumentResponse = GetMottattKlagedokumentResponses[keyof GetMottattKlagedokumentResponses]; + +export type MellomlagreAvvistFormKravData = { + /** + * KlageVurderingAdapter tilpasset til mellomlagring. + */ + body?: KlageFormKravAksjonspunktMellomlagringDto; + path?: never; + query?: never; + url: '/api/behandling/klage/mellomlagre-formkrav-klage'; +}; + +export type MellomlagreAvvistFormKravResponses = { + /** + * default response + */ + default: unknown; +}; + +export type MellomlagreKlageData = { + /** + * KlageVurderingAdapter tilpasset til mellomlagring. + */ + body?: KlageVurderingResultatAksjonspunktMellomlagringDto; + path?: never; + query?: never; + url: '/api/behandling/klage/mellomlagre-klage'; +}; + +export type MellomlagreKlageResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentOppdragData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/oppdrag/oppdraginfo'; +}; + +export type HentOppdragResponses = { + /** + * default response + */ + default: OppdragDto; +}; + +export type HentOppdragResponse = HentOppdragResponses[keyof HentOppdragResponses]; + +export type GetDokStatusData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/opptjening/utlanddokstatus'; +}; + +export type GetDokStatusResponses = { + /** + * Om dok skal hentes eller ikke + */ + 200: OpptjeningIUtlandDokStatusDto; +}; + +export type GetDokStatusResponse = GetDokStatusResponses[keyof GetDokStatusResponses]; + +export type GetOpptjeningData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/opptjening'; +}; + +export type GetOpptjeningResponses = { + /** + * Returnerer Opptjening, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: OpptjeningDto; +}; + +export type GetOpptjeningResponse = GetOpptjeningResponses[keyof GetOpptjeningResponses]; + +export type GetPersonopplysningerTilbakeData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/person/personopplysninger-tilbake'; +}; + +export type GetPersonopplysningerTilbakeResponses = { + /** + * Returnerer Personopplysninger, null hvis ikke finnes (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: PersonopplysningTilbakeDto; +}; + +export type GetPersonopplysningerTilbakeResponse = + GetPersonopplysningerTilbakeResponses[keyof GetPersonopplysningerTilbakeResponses]; + +export type GetPersonoversiktData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/person/personoversikt'; +}; + +export type GetPersonoversiktResponses = { + /** + * Returnerer Personopplysninger, null hvis ikke finnes (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: PersonoversiktDto; +}; + +export type GetPersonoversiktResponse = GetPersonoversiktResponses[keyof GetPersonoversiktResponses]; + +export type HentMedlemskapV3Data = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/person/medlemskap-v3'; +}; + +export type HentMedlemskapV3Responses = { + /** + * Returnerer Medlemskap, null hvis ikke finnes (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: MedlemskapDto; +}; + +export type HentMedlemskapV3Response = HentMedlemskapV3Responses[keyof HentMedlemskapV3Responses]; + +export type TilretteleggingData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/svangerskapspenger/tilrettelegging-v2'; +}; + +export type TilretteleggingResponses = { + /** + * default response + */ + default: SvpTilretteleggingDto; +}; + +export type TilretteleggingResponse = TilretteleggingResponses[keyof TilretteleggingResponses]; + +export type GetSøknadData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/soknad'; +}; + +export type GetSøknadResponses = { + /** + * Returnerer Søknad, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: SoknadDto; +}; + +export type GetSøknadResponse = GetSøknadResponses[keyof GetSøknadResponses]; + +export type GetSøknadBackendData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/soknad-backend'; +}; + +export type GetSøknadBackendResponses = { + /** + * RReturnerer forenklet søknad til andre applikasjoner + */ + 200: SoknadDto; +}; + +export type GetSøknadBackendResponse = GetSøknadBackendResponses[keyof GetSøknadBackendResponses]; + +export type HentSimuleringResultatData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/tilbakekreving/simulering-resultat'; +}; + +export type HentSimuleringResultatResponses = { + /** + * default response + */ + default: SimuleringDto; +}; + +export type HentSimuleringResultatResponse = HentSimuleringResultatResponses[keyof HentSimuleringResultatResponses]; + +export type HentTilbakekrevingValgData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/tilbakekreving/valg'; +}; + +export type HentTilbakekrevingValgResponses = { + /** + * default response + */ + default: TilbakekrevingValgDto; +}; + +export type HentTilbakekrevingValgResponse = HentTilbakekrevingValgResponses[keyof HentTilbakekrevingValgResponses]; + +export type HentVarseltekstData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/tilbakekreving/varseltekst'; +}; + +export type HentVarseltekstResponses = { + /** + * default response + */ + default: VarseltekstDto; +}; + +export type HentVarseltekstResponse = HentVarseltekstResponses[keyof HentVarseltekstResponses]; + +export type GetStonadskontoerData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/uttak/stonadskontoer'; +}; + +export type GetStonadskontoerResponses = { + /** + * default response + */ + default: SaldoerDto; +}; + +export type GetStonadskontoerResponse = GetStonadskontoerResponses[keyof GetStonadskontoerResponses]; + +export type GetStonadskontoerGittUttaksperioderData = { + /** + * Behandling og liste med uttaksperioder + */ + body: BehandlingMedUttaksperioderDto; + path?: never; + query?: never; + url: '/api/behandling/uttak/stonadskontoerGittUttaksperioder'; +}; + +export type GetStonadskontoerGittUttaksperioderResponses = { + /** + * default response + */ + default: SaldoerDto; +}; + +export type GetStonadskontoerGittUttaksperioderResponse = + GetStonadskontoerGittUttaksperioderResponses[keyof GetStonadskontoerGittUttaksperioderResponses]; + +export type HentArbeidsforholdData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/uttak/fakta-arbeidsforhold'; +}; + +export type HentArbeidsforholdResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentArbeidsforholdResponse = HentArbeidsforholdResponses[keyof HentArbeidsforholdResponses]; + +export type HentDokumentasjonVurderingBehovData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/uttak/vurder-dokumentasjon'; +}; + +export type HentDokumentasjonVurderingBehovResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentDokumentasjonVurderingBehovResponse = + HentDokumentasjonVurderingBehovResponses[keyof HentDokumentasjonVurderingBehovResponses]; + +export type HentFaktaUttakPerioderData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/uttak/kontroller-fakta-perioder-v2'; +}; + +export type HentFaktaUttakPerioderResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentFaktaUttakPerioderResponse = HentFaktaUttakPerioderResponses[keyof HentFaktaUttakPerioderResponses]; + +export type HentSvangerskapspengerUttakResultatData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/uttak/resultat-svangerskapspenger'; +}; + +export type HentSvangerskapspengerUttakResultatResponses = { + /** + * default response + */ + default: SvangerskapspengerUttakResultatDto; +}; + +export type HentSvangerskapspengerUttakResultatResponse = + HentSvangerskapspengerUttakResultatResponses[keyof HentSvangerskapspengerUttakResultatResponses]; + +export type HentUttakResultatPerioderData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/uttak/resultat-perioder'; +}; + +export type HentUttakResultatPerioderResponses = { + /** + * default response + */ + default: UttakResultatPerioderDto; +}; + +export type HentUttakResultatPerioderResponse = + HentUttakResultatPerioderResponses[keyof HentUttakResultatPerioderResponses]; + +export type FerdigstillOppgaveData = { + /** + * OppgaveId for oppgave som skal ferdigstilles + */ + body: string; + path?: never; + query?: never; + url: '/api/behandling/vedtak/ferdigstill-oppgave'; +}; + +export type FerdigstillOppgaveResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentOppgaverData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/vedtak/hent-oppgaver'; +}; + +export type HentOppgaverResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentOppgaverResponse = HentOppgaverResponses[keyof HentOppgaverResponses]; + +export type FjernVergeData = { + body?: never; + path?: never; + query?: { + /** + * Behandling uuid + */ + uuid?: UuidDto; + }; + url: '/api/verge/fjern'; +}; + +export type FjernVergeResponses = { + /** + * Verge/fullmektig fjernet + */ + 200: unknown; +}; + +export type GetVergeBackendData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/verge/backend'; +}; + +export type GetVergeBackendResponses = { + /** + * Verge hvis eksisterer ellers null + */ + 200: VergeBackendDto; +}; + +export type GetVergeBackendResponse = GetVergeBackendResponses[keyof GetVergeBackendResponses]; + +export type HentVergeData = { + body?: never; + path?: never; + query?: { + /** + * Behandling uuid + */ + uuid?: UuidDto; + }; + url: '/api/verge'; +}; + +export type HentVergeResponses = { + /** + * Verge/fullmektig funnet + */ + 200: unknown; + /** + * Ingen verge/fullmektig + */ + 204: void; +}; + +export type HentVergeResponse = HentVergeResponses[keyof HentVergeResponses]; + +export type OpprettVergeData = { + body?: VergeDto; + path?: never; + query?: { + /** + * Behandling uuid + */ + uuid?: UuidDto; + }; + url: '/api/verge/opprett'; +}; + +export type OpprettVergeResponses = { + /** + * Verge/fullmektig opprettes + */ + 200: unknown; +}; + +export type GetYtelsefordelingData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/ytelsefordeling'; +}; + +export type GetYtelsefordelingResponses = { + /** + * Returnerer Ytelsefordeling mellom parter, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: YtelseFordelingDto; +}; + +export type GetYtelsefordelingResponse = GetYtelsefordelingResponses[keyof GetYtelsefordelingResponses]; + +export type HentRettOgOmsorgData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/omsorg-og-rett'; +}; + +export type HentRettOgOmsorgResponses = { + /** + * Returnerer informasjon fra søknad og registerdata som omhandler brukers og annen parts rett og omsorg i behandlingen + */ + 200: OmsorgOgRettDto; +}; + +export type HentRettOgOmsorgResponse = HentRettOgOmsorgResponses[keyof HentRettOgOmsorgResponses]; + +export type BestillDokumentData = { + /** + * Inneholder kode til brevmal og data som skal flettes inn i brevet + */ + body?: BestillDokumentDto; + path?: never; + query?: never; + url: '/api/brev/bestill'; +}; + +export type BestillDokumentResponses = { + /** + * default response + */ + default: unknown; +}; + +export type ForhåndsvisDokumentData = { + /** + * Inneholder kode til brevmal og bestillingsdetaljer. + */ + body?: ForhåndsvisDokumentDto; + path?: never; + query?: never; + url: '/api/brev/forhandsvis'; +}; + +export type ForhåndsvisDokumentResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HarSendtVarselOmRevurderingData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/brev/varsel/revurdering'; +}; + +export type HarSendtVarselOmRevurderingResponses = { + /** + * default response + */ + default: boolean; +}; + +export type HarSendtVarselOmRevurderingResponse = + HarSendtVarselOmRevurderingResponses[keyof HarSendtVarselOmRevurderingResponses]; + +export type HentOverstyringAvBrevMedOrginaltBrevPåHtmlFormatData = { + body?: never; + path?: never; + query?: { + /** + * behandlingUUID + */ + uuid?: UuidDto; + }; + url: '/api/brev/overstyring'; +}; + +export type HentOverstyringAvBrevMedOrginaltBrevPåHtmlFormatResponses = { + /** + * default response + */ + default: unknown; +}; + +export type KvitteringV3Data = { + body?: DokumentKvitteringDto; + path?: never; + query?: never; + url: '/api/brev/kvittering/v3'; +}; + +export type KvitteringV3Responses = { + /** + * default response + */ + default: unknown; +}; + +export type MellomlagringAvOverstyringData = { + body: MellomlagreHtmlDto; + path?: never; + query?: never; + url: '/api/brev/overstyring/mellomlagring'; +}; + +export type MellomlagringAvOverstyringResponses = { + /** + * default response + */ + default: unknown; +}; + +export type RegenererVedtaksXmlData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/datavarehus/regenerer_vedtaksdokument'; +}; + +export type RegenererVedtaksXmlResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentAlleDokumenterForSakData = { + body?: never; + path?: never; + query: { + /** + * Saksnummer + */ + saksnummer: SaksnummerDto; + }; + url: '/api/dokument/hent-dokumentliste'; +}; + +export type HentAlleDokumenterForSakResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentAlleDokumenterForSakResponse = + HentAlleDokumenterForSakResponses[keyof HentAlleDokumenterForSakResponses]; + +export type HentAlleMottatteDokumenterForBehandlingData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/dokument/hent-mottattdokumentliste'; +}; + +export type HentAlleMottatteDokumenterForBehandlingResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentAlleMottatteDokumenterForBehandlingResponse = + HentAlleMottatteDokumenterForBehandlingResponses[keyof HentAlleMottatteDokumenterForBehandlingResponses]; + +export type HentDokumentData = { + body?: never; + path?: never; + query: { + /** + * Saksnummer + */ + saksnummer: SaksnummerDto; + /** + * Unik identifikator av journalposten (forsendelsenivå) + */ + journalpostId: JournalpostIdDto; + /** + * Unik identifikator av DokumentInfo/Dokumentbeskrivelse (dokumentnivå) + */ + dokumentId: DokumentIdDto; + }; + url: '/api/dokument/hent-dokument'; +}; + +export type HentDokumentResponses = { + /** + * default response + */ + default: unknown; +}; + +export type GetAktoerInfoData = { + body?: never; + path?: never; + query: { + aktoerId: AktoerIdDto; + }; + url: '/api/aktoer-info'; +}; + +export type GetAktoerInfoResponses = { + /** + * Returnerer basisinformasjon om en aktør og hvilke fagsaker vedkommede har i fpsak. + */ + 200: AktoerInfoDto; +}; + +export type GetAktoerInfoResponse = GetAktoerInfoResponses[keyof GetAktoerInfoResponses]; + +export type EndreFagsakMerkingData = { + /** + * Saksnummer og markering + */ + body?: EndreUtlandMarkeringDto; + path?: never; + query?: never; + url: '/api/fagsak/endre-utland'; +}; + +export type EndreFagsakMerkingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentFagsakData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/fagsak'; +}; + +export type HentFagsakErrors = { + /** + * Fagsak ikke tilgjengelig + */ + 404: unknown; +}; + +export type HentFagsakResponses = { + /** + * Returnerer fagsak + */ + 200: FagsakBackendDto; +}; + +export type HentFagsakResponse = HentFagsakResponses[keyof HentFagsakResponses]; + +export type HentFagsakMidlertidigStatusData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + gruppe?: ProsessTaskGruppeIdDto; + }; + url: '/api/fagsak/status'; +}; + +export type HentFagsakMidlertidigStatusErrors = { + /** + * ProsessTasks har feilet + */ + 418: AsyncPollingStatus; +}; + +export type HentFagsakMidlertidigStatusError = + HentFagsakMidlertidigStatusErrors[keyof HentFagsakMidlertidigStatusErrors]; + +export type HentFagsakMidlertidigStatusResponses = { + /** + * Returnerer Status + */ + 200: AsyncPollingStatus; +}; + +export type HentFagsakMidlertidigStatusResponse = + HentFagsakMidlertidigStatusResponses[keyof HentFagsakMidlertidigStatusResponses]; + +export type HentFullFagsakData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/fagsak/full'; +}; + +export type HentFullFagsakErrors = { + /** + * Fagsak ikke tilgjengelig + */ + 404: unknown; +}; + +export type HentFullFagsakResponses = { + /** + * Returnerer fagsak + */ + 200: FagsakFullDto; +}; + +export type HentFullFagsakResponse = HentFullFagsakResponses[keyof HentFullFagsakResponses]; + +export type LagreFagsakNotatData = { + /** + * Saksnummer og nytt notat + */ + body?: LagreFagsakNotatDto; + path?: never; + query?: never; + url: '/api/fagsak/notat'; +}; + +export type LagreFagsakNotatResponses = { + /** + * default response + */ + default: unknown; +}; + +export type SokFagsakerData = { + /** + * Søkestreng kan være saksnummer, fødselsnummer eller D-nummer. + */ + body?: SokefeltDto; + path?: never; + query?: never; + url: '/api/fagsak/sok'; +}; + +export type SokFagsakerResponses = { + /** + * default response + */ + default: Array; +}; + +export type SokFagsakerResponse = SokFagsakerResponses[keyof SokFagsakerResponses]; + +export type GetAvklartFamiliehendelseDtoData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/familiehendelse'; +}; + +export type GetAvklartFamiliehendelseDtoResponses = { + /** + * Returnerer info om familiehendelse, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.) + */ + 200: FamiliehendelseDto; +}; + +export type GetAvklartFamiliehendelseDtoResponse = + GetAvklartFamiliehendelseDtoResponses[keyof GetAvklartFamiliehendelseDtoResponses]; + +export type GetFamiliehendelseGrunnlagDtoData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/familiehendelse/v2'; +}; + +export type GetFamiliehendelseGrunnlagDtoResponses = { + /** + * Returnerer hele FamilieHendelse grunnlaget + */ + 200: FamilieHendelseGrunnlagDto; +}; + +export type GetFamiliehendelseGrunnlagDtoResponse = + GetFamiliehendelseGrunnlagDtoResponses[keyof GetFamiliehendelseGrunnlagDtoResponses]; + +export type FagsakData = { + /** + * Saksnummeret det skal hentes saksinformasjon om + */ + body?: SaksnummerDto; + path?: never; + query?: never; + url: '/api/fordel/fagsak/informasjon'; +}; + +export type FagsakResponses = { + /** + * default response + */ + default: FagsakInfomasjonDto; +}; + +export type FagsakResponse = FagsakResponses[keyof FagsakResponses]; + +export type FinnAlleSakerForBrukerV2Data = { + /** + * AktørId + */ + body?: AktørIdDto; + path?: never; + query?: never; + url: '/api/fordel/finnFagsaker/v2'; +}; + +export type FinnAlleSakerForBrukerV2Responses = { + /** + * Liste av alle brukers saker, ellers tom liste + */ + 200: Array; +}; + +export type FinnAlleSakerForBrukerV2Response = + FinnAlleSakerForBrukerV2Responses[keyof FinnAlleSakerForBrukerV2Responses]; + +export type InfoOmSakForInntektsmeldingData = { + /** + * AktørId + */ + body?: SakInntektsmeldingDto; + path?: never; + query?: never; + url: '/api/fordel/infoOmSakInntektsmelding'; +}; + +export type InfoOmSakForInntektsmeldingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type KnyttSakOgJournalpostData = { + /** + * Saksnummer og JournalpostId som skal knyttes sammen + */ + body?: JournalpostKnyttningDto; + path?: never; + query?: never; + url: '/api/fordel/fagsak/knyttJournalpost'; +}; + +export type KnyttSakOgJournalpostResponses = { + /** + * default response + */ + default: unknown; +}; + +export type MottaJournalpostData = { + /** + * Krever saksnummer, journalpostId og behandlingstemaOffisiellKode + */ + body?: JournalpostMottakDto; + path?: never; + query?: never; + url: '/api/fordel/journalpost'; +}; + +export type MottaJournalpostResponses = { + /** + * default response + */ + default: unknown; +}; + +export type OpprettSakData = { + /** + * Oppretter fagsak + */ + body?: OpprettSakDto; + path?: never; + query?: never; + url: '/api/fordel/fagsak/opprett'; +}; + +export type OpprettSakResponses = { + /** + * default response + */ + default: SaksnummerDto; +}; + +export type OpprettSakResponse = OpprettSakResponses[keyof OpprettSakResponses]; + +export type OpprettSakv2Data = { + /** + * Oppretter fagsak + */ + body?: OpprettSakV2Dto; + path?: never; + query?: never; + url: '/api/fordel/fagsak/opprett/v2'; +}; + +export type OpprettSakv2Responses = { + /** + * default response + */ + default: SaksnummerDto; +}; + +export type OpprettSakv2Response = OpprettSakv2Responses[keyof OpprettSakv2Responses]; + +export type SjekkSakForInntektsmeldingData = { + /** + * AktørId + */ + body?: SakInntektsmeldingDto; + path?: never; + query?: never; + url: '/api/fordel/sakInntektsmelding'; +}; + +export type SjekkSakForInntektsmeldingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type VurderFagsystemData = { + /** + * Krever behandlingstemaOffisiellKode + */ + body: VurderFagsystemDto; + path?: never; + query?: never; + url: '/api/fordel/vurderFagsystem'; +}; + +export type VurderFagsystemResponses = { + /** + * default response + */ + default: BehandlendeFagsystemDto; +}; + +export type VurderFagsystemResponse = VurderFagsystemResponses[keyof VurderFagsystemResponses]; + +export type VurderForKlageinstansData = { + /** + * Krever behandlingstemaOffisiellKode + */ + body: VurderFagsystemDto; + path?: never; + query?: never; + url: '/api/fordel/klageinstans'; +}; + +export type VurderForKlageinstansResponses = { + /** + * default response + */ + default: BehandlendeFagsystemDto; +}; + +export type VurderForKlageinstansResponse = VurderForKlageinstansResponses[keyof VurderForKlageinstansResponses]; + +export type HentBehandlingDtoForBrevData = { + body?: never; + path?: never; + query: { + /** + * UUID for behandlingen + */ + behandlingId: BehandlingIdDto; + }; + url: '/api/formidling/ressurser'; +}; + +export type HentBehandlingDtoForBrevResponses = { + /** + * default response + */ + default: unknown; +}; + +export type MottattDatoSøknadData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/formidling/motattDatoSøknad'; +}; + +export type MottattDatoSøknadResponses = { + /** + * default response + */ + default: unknown; +}; + +export type UtsattStartdatoData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/formidling/utsattstart'; +}; + +export type UtsattStartdatoResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentStatusInntektsmeldingerData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/formidling/arbeidInntektsmelding/inntektsmelding-status'; +}; + +export type HentStatusInntektsmeldingerResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentBeregningsgrunnlagFormidlingV2Data = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/formidling/beregningsgrunnlag/v2'; +}; + +export type HentBeregningsgrunnlagFormidlingV2Responses = { + /** + * default response + */ + default: unknown; +}; + +export type HentTilkjentYtelseDagytelseFormidlingData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/formidling/tilkjentytelse/dagytelse'; +}; + +export type HentTilkjentYtelseDagytelseFormidlingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentTilkjentYtelseEngangsstonadFormidlingData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/formidling/tilkjentytelse/engangsstonad'; +}; + +export type HentTilkjentYtelseEngangsstonadFormidlingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type FjernOverstyrtGrunnlagSvpBehandlingData = { + body?: never; + path?: never; + query: { + behandlingUuid: BehandlingIdDto; + }; + url: '/api/forvaltningBehandling/fjernOverstyrtGrunnlagSvpBehandling'; +}; + +export type FjernOverstyrtGrunnlagSvpBehandlingErrors = { + /** + * Oppgitt behandlinguuid er ukjent, ikke under behandling, svangerskapspenger eller avsluttet. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type FjernOverstyrtGrunnlagSvpBehandlingResponses = { + /** + * Overstyrt grunnlag for behandling er fjernet. + */ + 200: string; +}; + +export type FjernOverstyrtGrunnlagSvpBehandlingResponse = + FjernOverstyrtGrunnlagSvpBehandlingResponses[keyof FjernOverstyrtGrunnlagSvpBehandlingResponses]; + +export type HenleggBehandlingTekniskData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningBehandling/henleggBehandlingTeknisk'; +}; + +export type HenleggBehandlingTekniskErrors = { + /** + * Ukjent fagsak oppgitt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type HenleggBehandlingTekniskResponses = { + /** + * Avslutter fagsak. + */ + 200: string; +}; + +export type HenleggBehandlingTekniskResponse = + HenleggBehandlingTekniskResponses[keyof HenleggBehandlingTekniskResponses]; + +export type HenleggVentendeBehandlingData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningBehandling/henleggVentendeBehandling'; +}; + +export type HenleggVentendeBehandlingErrors = { + /** + * Ukjent fagsak oppgitt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type HenleggVentendeBehandlingResponses = { + /** + * Avslutter fagsak. + */ + 200: string; +}; + +export type HenleggVentendeBehandlingResponse = + HenleggVentendeBehandlingResponses[keyof HenleggVentendeBehandlingResponses]; + +export type HenleggÅpenFørstegangsbehandlingOgOpprettNyData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningBehandling/henleggÅpenFørstegangsbehandlingOgOpprettNy'; +}; + +export type HenleggÅpenFørstegangsbehandlingOgOpprettNyErrors = { + /** + * Oppgitt fagsak er ukjent, ikke under behandling, eller engangsstønad. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type HenleggÅpenFørstegangsbehandlingOgOpprettNyResponses = { + /** + * Ny behandling er opprettet. + */ + 200: string; +}; + +export type HenleggÅpenFørstegangsbehandlingOgOpprettNyResponse = + HenleggÅpenFørstegangsbehandlingOgOpprettNyResponses[keyof HenleggÅpenFørstegangsbehandlingOgOpprettNyResponses]; + +export type OppdaterBehandlingresultatMedVedtaksbrevTypeData = { + body?: never; + path?: never; + query: { + behandlingUuid: BehandlingIdDto; + vedtaksbrev: 'AUTOMATISK' | 'FRITEKST' | 'INGEN' | '-'; + dryRun: boolean; + }; + url: '/api/forvaltningBehandling/behandlingsresultat'; +}; + +export type OppdaterBehandlingresultatMedVedtaksbrevTypeErrors = { + /** + * Oppgitt behandlinguuid er ukjent + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type OppdaterBehandlingresultatMedVedtaksbrevTypeResponses = { + /** + * Oppdatert behandlingsresultat. + */ + 200: string; +}; + +export type OppdaterBehandlingresultatMedVedtaksbrevTypeResponse = + OppdaterBehandlingresultatMedVedtaksbrevTypeResponses[keyof OppdaterBehandlingresultatMedVedtaksbrevTypeResponses]; + +export type OpprettNyRevurderingBerørtBehandlingData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningBehandling/startNyRevurderingBerørtBehandling'; +}; + +export type OpprettNyRevurderingBerørtBehandlingErrors = { + /** + * Oppgitt fagsak er ukjent, ikke under behandling, eller engangsstønad. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type OpprettNyRevurderingBerørtBehandlingResponses = { + /** + * Ny behandling er opprettet. + */ + 200: string; +}; + +export type OpprettNyRevurderingBerørtBehandlingResponse = + OpprettNyRevurderingBerørtBehandlingResponses[keyof OpprettNyRevurderingBerørtBehandlingResponses]; + +export type ReInnsendInntektsmeldingData = { + body?: never; + path?: never; + query: { + saksnummer: string; + journalpostid: string; + }; + url: '/api/forvaltningBehandling/reInnsendInntektsmelding'; +}; + +export type ReInnsendInntektsmeldingErrors = { + /** + * Oppgitt fagsak er ukjent, ikke under behandling, eller engangsstønad. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type ReInnsendInntektsmeldingResponses = { + /** + * Inntektsmelding reinnsendt. + */ + 200: string; +}; + +export type ReInnsendInntektsmeldingResponse = + ReInnsendInntektsmeldingResponses[keyof ReInnsendInntektsmeldingResponses]; + +export type LagFortsettBehandlingData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/behandlingskontroll/taskFortsettBehandling'; +}; + +export type LagFortsettBehandlingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentBeregningsgrunnlagInputData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningBeregning/hentBeregningsgrunnlagInput'; +}; + +export type HentBeregningsgrunnlagInputResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentBeregningsgrunnlagInputLegacyData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningBeregning/hentBeregningsgrunnlagInputLegacy'; +}; + +export type HentBeregningsgrunnlagInputLegacyResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentGjeldendeSatserData = { + body?: never; + path?: never; + query?: never; + url: '/api/forvaltningBeregning/satsHentGjeldende'; +}; + +export type HentGjeldendeSatserResponses = { + /** + * Gjeldende satser + */ + 200: Array; +}; + +export type HentGjeldendeSatserResponse = HentGjeldendeSatserResponses[keyof HentGjeldendeSatserResponses]; + +export type HentInfOmBehandlingerMedDiffData = { + body?: never; + path?: never; + query?: never; + url: '/api/forvaltningBeregning/sjekkDiffInntektRegisterMotInntektsmelding'; +}; + +export type HentInfOmBehandlingerMedDiffResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentMigreringInputData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningBeregning/hentMigreringInput'; +}; + +export type HentMigreringInputResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentRefusjonskravperioderInputData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningBeregning/hentRefusjonskravperioderInput'; +}; + +export type HentRefusjonskravperioderInputResponses = { + /** + * default response + */ + default: unknown; +}; + +export type LagreNySatsData = { + body?: never; + path?: never; + query: { + satsType: 'ENGANG' | 'GRUNNBELØP' | 'GSNITT'; + /** + * YYYY-MM-DD + */ + satsFom: string; + /** + * YYYY-MM-DD + */ + satsTom?: string; + /** + * Minumum satsverdi er satt til 75000 + */ + satsVerdi: number; + }; + url: '/api/forvaltningBeregning/satsLagreNy'; +}; + +export type LagreNySatsResponses = { + /** + * Gjeldende satser + */ + 200: Array; +}; + +export type LagreNySatsResponse = LagreNySatsResponses[keyof LagreNySatsResponses]; + +export type MigrerSakData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningBeregning/migrerSak'; +}; + +export type MigrerSakResponses = { + /** + * default response + */ + default: unknown; +}; + +export type OpphørRefusjonInntektsmeldingData = { + body: EndreInntektsmeldingDto; + path?: never; + query?: never; + url: '/api/forvaltningBeregning/stoppRefusjon'; +}; + +export type OpphørRefusjonInntektsmeldingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type OpprettGreguleringEnkeltSakData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningBeregning/opprettGreguleringEnkeltSak'; +}; + +export type OpprettGreguleringEnkeltSakErrors = { + /** + * Ukjent fagsak oppgitt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type OpprettGreguleringEnkeltSakResponses = { + /** + * Flyttet fagsak. + */ + 200: string; +}; + +export type OpprettGreguleringEnkeltSakResponse = + OpprettGreguleringEnkeltSakResponses[keyof OpprettGreguleringEnkeltSakResponses]; + +export type AvsluttFagsakUtenBehandlingData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningFagsak/avsluttFagsakUtenBehandling'; +}; + +export type AvsluttFagsakUtenBehandlingErrors = { + /** + * Ukjent fagsak oppgitt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type AvsluttFagsakUtenBehandlingResponses = { + /** + * Avslutter fagsak. + */ + 200: string; +}; + +export type AvsluttFagsakUtenBehandlingResponse = + AvsluttFagsakUtenBehandlingResponses[keyof AvsluttFagsakUtenBehandlingResponses]; + +export type FlyttJournalpostTilFagsakData = { + body?: never; + path?: never; + query: { + saksnummer: string; + journalpostid: string; + }; + url: '/api/forvaltningFagsak/fagsak/flyttJournalpostFagsak'; +}; + +export type FlyttJournalpostTilFagsakErrors = { + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type FlyttJournalpostTilFagsakResponses = { + /** + * Task satt til ferdig. + */ + 200: unknown; +}; + +export type GjenaapneFagsakData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningFagsak/gjenAapneFagsakForVidereBruk'; +}; + +export type GjenaapneFagsakErrors = { + /** + * Ukjent fagsak oppgitt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type GjenaapneFagsakResponses = { + /** + * Fagsak stengt. + */ + 200: string; +}; + +export type GjenaapneFagsakResponse = GjenaapneFagsakResponses[keyof GjenaapneFagsakResponses]; + +export type HentFagsakInformasjonData = { + body?: never; + path: { + fagsakId: number; + }; + query?: never; + url: '/api/forvaltningFagsak/fagsak/{fagsakId}'; +}; + +export type HentFagsakInformasjonResponses = { + /** + * default response + */ + default: unknown; +}; + +export type IdenthistorikkData = { + /** + * Søkestreng kan være aktørId, fødselsnummer eller D-nummer. + */ + body?: SokefeltDto; + path?: never; + query?: never; + url: '/api/forvaltningFagsak/fagsak/identhistorikk'; +}; + +export type IdenthistorikkResponses = { + /** + * default response + */ + default: unknown; +}; + +export type KobleFraFagsakerData = { + body?: never; + path?: never; + query: { + saksnummer1: string; + saksnummer2: string; + }; + url: '/api/forvaltningFagsak/kobleFraFagsaker'; +}; + +export type KobleFraFagsakerErrors = { + /** + * Ukjent fagsak oppgitt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type KobleFraFagsakerResponses = { + /** + * Fagsaker frakoblet. + */ + 200: string; +}; + +export type KobleFraFagsakerResponse = KobleFraFagsakerResponses[keyof KobleFraFagsakerResponses]; + +export type KobleSammenFagsakerData = { + body?: never; + path?: never; + query: { + saksnummer1: string; + saksnummer2: string; + }; + url: '/api/forvaltningFagsak/kobleSammenFagsaker'; +}; + +export type KobleSammenFagsakerErrors = { + /** + * Ukjent fagsak oppgitt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type KobleSammenFagsakerResponses = { + /** + * Fagsaker koblet. + */ + 200: string; +}; + +export type KobleSammenFagsakerResponse = KobleSammenFagsakerResponses[keyof KobleSammenFagsakerResponses]; + +export type OppdaterAktoerIdData = { + body: ByttAktørRequestDto; + path?: never; + query?: never; + url: '/api/forvaltningFagsak/fagsak/oppdaterAktoerId'; +}; + +export type OppdaterAktoerIdErrors = { + /** + * AktørId er uendret. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type OppdaterAktoerIdResponses = { + /** + * Task satt til ferdig. + */ + 200: unknown; +}; + +export type OppdaterAktoerIdFraPdlData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningFagsak/fagsak/oppdaterAktoerIdFraPdl'; +}; + +export type OppdaterAktoerIdFraPdlErrors = { + /** + * Saksnummer er ugyldig. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type OppdaterAktoerIdFraPdlResponses = { + /** + * Task satt til ferdig. + */ + 200: unknown; +}; + +export type OppdaterPersongalleriForTilgangData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningFagsak/fagsak/oppdater-personer-tilgang'; +}; + +export type OppdaterPersongalleriForTilgangErrors = { + /** + * Ukjent fagsak oppgitt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type OppdaterPersongalleriForTilgangResponses = { + /** + * Avslutter fagsak. + */ + 200: string; +}; + +export type OppdaterPersongalleriForTilgangResponse = + OppdaterPersongalleriForTilgangResponses[keyof OppdaterPersongalleriForTilgangResponses]; + +export type SettFagsakFraAvsluttetTilUnderBehandlingData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningFagsak/settFagsakFraAvsluttetTilUnderBehandling'; +}; + +export type SettFagsakFraAvsluttetTilUnderBehandlingErrors = { + /** + * Ukjent fagsak oppgitt, eller fagsak i feil tilstand + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type SettFagsakFraAvsluttetTilUnderBehandlingResponses = { + /** + * Fagsak endret. + */ + 200: string; +}; + +export type SettFagsakFraAvsluttetTilUnderBehandlingResponse = + SettFagsakFraAvsluttetTilUnderBehandlingResponses[keyof SettFagsakFraAvsluttetTilUnderBehandlingResponses]; + +export type StengFagsakData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningFagsak/stengFagsakForVidereBruk'; +}; + +export type StengFagsakErrors = { + /** + * Ukjent fagsak oppgitt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type StengFagsakResponses = { + /** + * Fagsak stengt. + */ + 200: string; +}; + +export type StengFagsakResponse = StengFagsakResponses[keyof StengFagsakResponses]; + +export type KvitterOkData = { + /** + * Identifikasjon av oppdrag som kvitteres OK. Sett oppdaterProsessTask til false kun når prosesstasken allerede er flyttet til FERDIG + */ + body: KvitteringDto; + path?: never; + query?: never; + url: '/api/forvaltningOppdrag/kvitter-oppdrag-ok'; +}; + +export type KvitterOkResponses = { + /** + * default response + */ + default: unknown; +}; + +export type PatchK27Data = { + body: K27PatchDto; + path?: never; + query?: never; + url: '/api/forvaltningOppdrag/patch-k27'; +}; + +export type PatchK27Responses = { + /** + * default response + */ + default: unknown; +}; + +export type PatchOppdragData = { + body: OppdragPatchDto; + path?: never; + query?: never; + url: '/api/forvaltningOppdrag/patch-oppdrag'; +}; + +export type PatchOppdragResponses = { + /** + * default response + */ + default: unknown; +}; + +export type PatchOppdragOgRekjørData = { + body: OppdragPatchDto; + path?: never; + query?: never; + url: '/api/forvaltningOppdrag/patch-oppdrag-hardt-og-rekjoer'; +}; + +export type PatchOppdragOgRekjørResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentOppgittOpptjeningData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningOpptjening/hentOppgittOpptjening'; +}; + +export type HentOppgittOpptjeningResponses = { + /** + * default response + */ + default: OppgittOpptjeningDto; +}; + +export type HentOppgittOpptjeningResponse = HentOppgittOpptjeningResponses[keyof HentOppgittOpptjeningResponses]; + +export type LeggTilOppgittFrilansData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + /** + * YYYY-MM-DD + */ + frilansFom: string; + /** + * YYYY-MM-DD + */ + frilansTom?: string; + /** + * YYYY-MM-DD + */ + stpOpptjening: string; + }; + url: '/api/forvaltningOpptjening/leggTilOppgittFrilans'; +}; + +export type LeggTilOppgittFrilansResponses = { + /** + * default response + */ + default: unknown; +}; + +export type LeggTilOppgittNæringData = { + body?: { + behandlingUuid: string; + typeKode: 'ANNEN' | 'DAGMAMMA' | 'FISKE' | 'JORDBRUK_SKOGBRUK'; + /** + * YYYY-MM-DD + */ + fom: string; + /** + * YYYY-MM-DD + */ + tom?: string; + orgnummer?: string; + regnskapNavn?: string; + regnskapTlf?: string; + nyoppstartet?: 'JA' | 'NEI'; + varigEndring?: 'JA' | 'NEI'; + nyIArbeidslivet?: 'JA' | 'NEI'; + erRelasjon?: 'JA' | 'NEI'; + /** + * YYYY-MM-DD + */ + endringsDato?: string; + begrunnelse?: string; + bruttoBeløp?: number; + }; + path?: never; + query?: never; + url: '/api/forvaltningOpptjening/leggTilOppgittNæring'; +}; + +export type LeggTilOppgittNæringResponses = { + /** + * default response + */ + default: unknown; +}; + +export type LeggTilOppgittNæringFjerneAndreOppgitteOrgnummerData = { + body?: { + behandlingUuid: string; + typeKode: 'ANNEN' | 'DAGMAMMA' | 'FISKE' | 'JORDBRUK_SKOGBRUK'; + /** + * YYYY-MM-DD + */ + fom: string; + /** + * YYYY-MM-DD + */ + tom?: string; + orgnummer?: string; + regnskapNavn?: string; + regnskapTlf?: string; + nyoppstartet?: 'JA' | 'NEI'; + varigEndring?: 'JA' | 'NEI'; + nyIArbeidslivet?: 'JA' | 'NEI'; + erRelasjon?: 'JA' | 'NEI'; + /** + * YYYY-MM-DD + */ + endringsDato?: string; + begrunnelse?: string; + bruttoBeløp?: number; + }; + path?: never; + query?: never; + url: '/api/forvaltningOpptjening/leggTilOppgittNæringFjerneAndreOppgitteOrgnummer'; +}; + +export type LeggTilOppgittNæringFjerneAndreOppgitteOrgnummerResponses = { + /** + * default response + */ + default: unknown; +}; + +export type ReInnhentAlleIayRegisterDataData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningOpptjening/reInnhentAlleIAYRegisterData'; +}; + +export type ReInnhentAlleIayRegisterDataResponses = { + /** + * default response + */ + default: unknown; +}; + +export type FjernOverstyrtFhData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningSteg/fjernFHValgHoppTilbake'; +}; + +export type FjernOverstyrtFhResponses = { + /** + * default response + */ + default: unknown; +}; + +export type FjernStartpunktData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningSteg/fjernStartpunkt'; +}; + +export type FjernStartpunktResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HoppTilbakeData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + målSteg: + | 'REGSØK' + | 'INSØK' + | 'VURDERKOMPLETT' + | 'INREG' + | 'VURDERKOMPLETTBEH' + | 'INREG_AVSL' + | 'KOFAK' + | 'VURDEROP' + | 'VURDERMV' + | 'VURDERSAMLET' + | 'BERYT' + | 'FORBRES' + | 'SIMOPP' + | 'VURDER_FARESIGNALER' + | 'FORVEDSTEG' + | 'FVEDSTEG' + | 'IVEDSTEG' + | 'VURDER_FK_UI' + | 'KLAGEUI' + | 'VURDER_FK_OI' + | 'KLAGEOI' + | 'ANKE' + | 'ANKE_MERKNADER' + | 'VURDINNSYN' + | 'INPER' + | 'VURDERSFV' + | 'DEKNINGSGRAD' + | 'FORS_BESTEBEREGNING' + | 'KONTROLLER_OMSORG_RETT' + | 'FAKTA_LØPENDE_OMSORG' + | 'GRUNNLAG_UTTAK' + | 'KOFAKUT' + | 'KONTROLLER_AKTIVITETSKRAV' + | 'FAKTA_UTTAK' + | 'FAKTA_UTTAK_DOKUMENTASJON' + | 'VURDER_TLRG' + | 'VURDERSPV' + | 'VRSLREV' + | 'VURDERSRB' + | 'KO_ARB_IM' + | 'VURDER_ARB_FORHOLD_PERMISJON' + | 'VURDER_OPPTJ_PERIODE' + | 'VURDER_OPPTJ_FAKTA' + | 'VURDER_OPPTJ' + | 'FASTSETT_STP_BER' + | 'KOFAKBER' + | 'FORS_BERGRUNN' + | 'FORS_BERGRUNN_2' + | 'VURDER_VILKAR_BERGRUNN' + | 'VURDER_REF_BERGRUNN' + | 'FORDEL_BERGRUNN' + | 'FAST_BERGRUNN' + | 'KOFAK_LOP_MEDL' + | 'SØKNADSFRIST_FP' + | 'VURDER_UTTAK' + | 'VURDER_TILBAKETREKK' + | 'BERYT_OPPDRAG' + | 'KOARB' + | 'VURDER_FORUTGÅENDE_MEDLEMSKAPVILKÅR' + | 'VULOMED'; + }; + url: '/api/forvaltningSteg/generell'; +}; + +export type HoppTilbakeResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HoppTilbakeTil5085Data = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningSteg/5085'; +}; + +export type HoppTilbakeTil5085Responses = { + /** + * default response + */ + default: unknown; +}; + +export type BeregnTilretteleggingsperioderData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningSvangerskapspenger/beregnTilretteleggingsperioder'; +}; + +export type BeregnTilretteleggingsperioderResponses = { + /** + * default response + */ + default: unknown; +}; + +export type EndreTermindatoData = { + body?: { + /** + * Begrunnelse, fx FAGSYSTEM-nr + */ + begrunnelse?: string; + }; + path?: never; + query: { + /** + * Saksnummer + */ + saksnummer: string; + /** + * Termindato (YYYY-MM-DD) + */ + termindato: string; + /** + * Utstedt dato (YYYY-MM-DD) + */ + utstedtdato: string; + }; + url: '/api/forvaltningSoknad/endreTermindato'; +}; + +export type EndreTermindatoResponses = { + /** + * default response + */ + default: unknown; +}; + +export type ManglendeFødselsdatoData = { + body?: { + /** + * Begrunnelse, fx FAGSYSTEM-nr + */ + begrunnelse?: string; + }; + path?: never; + query: { + /** + * Saksnummer + */ + saksnummer: string; + /** + * Fødselsdato (YYYY-MM-DD) + */ + fødselsdato: string; + /** + * Dødsdato (YYYY-MM-DD) + */ + dødsdato?: string; + }; + url: '/api/forvaltningSoknad/manglendeFødselsdato'; +}; + +export type ManglendeFødselsdatoResponses = { + /** + * default response + */ + default: unknown; +}; + +export type ManglendeTermindatoData = { + body?: { + /** + * Begrunnelse, fx FAGSYSTEM-nr + */ + begrunnelse?: string; + }; + path?: never; + query: { + /** + * Saksnummer + */ + saksnummer: string; + /** + * Termindato (YYYY-MM-DD) + */ + termindato: string; + /** + * Utstedt dato (YYYY-MM-DD) + */ + utstedtdato: string; + }; + url: '/api/forvaltningSoknad/manglendeTermindato'; +}; + +export type ManglendeTermindatoResponses = { + /** + * default response + */ + default: unknown; +}; + +export type SettNorskIdentAnnenpartData = { + body?: { + /** + * Begrunnelse, fx FAGSYSTEM-nr + */ + begrunnelse?: string; + }; + path?: never; + query: { + /** + * Saksnummer + */ + saksnummer: string; + /** + * FNR annen part + */ + identAnnenPart: string; + }; + url: '/api/forvaltningSoknad/settNorskIdentAnnenpart'; +}; + +export type SettNorskIdentAnnenpartResponses = { + /** + * default response + */ + default: unknown; +}; + +export type SettUtlandskIdentAnnenpartData = { + body?: { + /** + * Begrunnelse, fx FAGSYSTEM-nr + */ + begrunnelse?: string; + }; + path?: never; + query: { + /** + * Saksnummer + */ + saksnummer: string; + /** + * FNR annen part + */ + identAnnenPart: string; + }; + url: '/api/forvaltningSoknad/settUtlandskIdentAnnenpart'; +}; + +export type SettUtlandskIdentAnnenpartResponses = { + /** + * default response + */ + default: unknown; +}; + +export type FerdigstillOppgave1Data = { + /** + * Oppgave som skal settes ferdig + */ + body: ProsessTaskIdDto; + path?: never; + query?: never; + url: '/api/forvaltningTeknisk/sett-oppgave-ferdigstilt'; +}; + +export type FerdigstillOppgave1Errors = { + /** + * Fant ikke aktuell oppgave. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type FerdigstillOppgave1Responses = { + /** + * Oppgave satt til ferdig. + */ + 200: unknown; +}; + +export type FjernFagsakProsesstaskAvsluttetBehandlingData = { + body?: never; + path?: never; + query?: never; + url: '/api/forvaltningTeknisk/fjern-fagsak-prosesstask-avsluttet'; +}; + +export type FjernFagsakProsesstaskAvsluttetBehandlingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentAlleÅpneOppgaverData = { + body?: never; + path?: never; + query?: never; + url: '/api/forvaltningTeknisk/hent-alle-aapne-oppgaver'; +}; + +export type HentAlleÅpneOppgaverErrors = { + /** + * Fant ikke aktuell oppgave. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type HentAlleÅpneOppgaverResponses = { + /** + * Oppgave satt til ferdig. + */ + 200: unknown; +}; + +export type SetAksjonspunktAvbruttData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + aksjonspunktKode: string; + }; + url: '/api/forvaltningTeknisk/sett-aksjonspunkt-avbrutt'; +}; + +export type SetAksjonspunktAvbruttErrors = { + /** + * Fant ikke aktuelt aksjonspunkt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type SetAksjonspunktAvbruttResponses = { + /** + * Aksjonspunkt avbrutt. + */ + 200: unknown; +}; + +export type SynkPostnummerData = { + body?: never; + path?: never; + query?: never; + url: '/api/forvaltningTeknisk/synk-postnummer'; +}; + +export type SynkPostnummerResponses = { + /** + * default response + */ + default: unknown; +}; + +export type BeregnKontoerData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningUttak/beregn-kontoer'; +}; + +export type BeregnKontoerResponses = { + /** + * default response + */ + default: unknown; +}; + +export type SettStartdatoData = { + body?: { + /** + * YYYY-MM-DD + */ + startdato: string; + }; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltningUttak/startdato'; +}; + +export type SettStartdatoResponses = { + /** + * default response + */ + default: unknown; +}; + +export type AvstemOverlappForPeriodeData = { + body?: { + /** + * key (secret) + */ + key: string; + }; + path?: never; + query: { + /** + * fom (YYYY-MM-DD) + */ + fom: string; + /** + * tom (YYYY-MM-DD) + */ + tom: string; + /** + * tidsrom for avstemming av 1 dag (sekunder) + */ + tidsrom: number; + /** + * true gir saker med vedtak fattet i periode, false gir saker opprettet i periode + */ + vedtak?: boolean; + }; + url: '/api/forvaltningUttrekk/avstemOverlappForPeriode'; +}; + +export type AvstemOverlappForPeriodeResponses = { + /** + * default response + */ + default: unknown; +}; + +export type AvstemSakForOverlappData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningUttrekk/avstemSakOverlapp'; +}; + +export type AvstemSakForOverlappResponses = { + /** + * default response + */ + default: unknown; +}; + +export type FlyttBehandlingTilStegData = { + body?: never; + path?: never; + query?: never; + url: '/api/forvaltningUttrekk/flyttBehandlingTilSteg'; +}; + +export type FlyttBehandlingTilStegResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentAvstemtSakOverlappTrexData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/forvaltningUttrekk/hentAvstemtSakOverlapp'; +}; + +export type HentAvstemtSakOverlappTrexResponses = { + /** + * default response + */ + default: unknown; +}; + +export type InfotrygdRestanseFpData = { + body?: never; + path?: never; + query?: never; + url: '/api/forvaltningUttrekk/infotrygdRestanseFP'; +}; + +export type InfotrygdRestanseFpResponses = { + /** + * Restanse + */ + 200: Array; +}; + +export type InfotrygdRestanseFpResponse = InfotrygdRestanseFpResponses[keyof InfotrygdRestanseFpResponses]; + +export type InfotrygdRestanseSvpData = { + body?: never; + path?: never; + query?: never; + url: '/api/forvaltningUttrekk/infotrygdRestanseSVP'; +}; + +export type InfotrygdRestanseSvpResponses = { + /** + * Restanse + */ + 200: Array; +}; + +export type InfotrygdRestanseSvpResponse = InfotrygdRestanseSvpResponses[keyof InfotrygdRestanseSvpResponses]; + +export type ListFagsakUtenBehandlingData = { + body?: never; + path?: never; + query?: never; + url: '/api/forvaltningUttrekk/listFagsakUtenBehandling'; +}; + +export type ListFagsakUtenBehandlingResponses = { + /** + * Fagsaker uten behandling + */ + 200: Array; +}; + +export type ListFagsakUtenBehandlingResponse = + ListFagsakUtenBehandlingResponses[keyof ListFagsakUtenBehandlingResponses]; + +export type OpenAutopunktData = { + body?: never; + path?: never; + query: { + aksjonspunktKode: string; + }; + url: '/api/forvaltningUttrekk/openAutopunkt'; +}; + +export type OpenAutopunktResponses = { + /** + * default response + */ + default: unknown; +}; + +export type OpenIkkeLopendeSakerData = { + body?: never; + path?: never; + query?: never; + url: '/api/forvaltningUttrekk/openIkkeLopendeSaker'; +}; + +export type OpenIkkeLopendeSakerResponses = { + /** + * default response + */ + default: unknown; +}; + +export type SlettTidligereAvstemmingData = { + body?: { + /** + * key (secret) + */ + key: string; + }; + path?: never; + query: { + /** + * fom (YYYY-MM-DD) + */ + fom: string; + /** + * tom (YYYY-MM-DD) + */ + tom: string; + /** + * tidsrom for avstemming av 1 dag (sekunder) + */ + tidsrom: number; + /** + * true gir saker med vedtak fattet i periode, false gir saker opprettet i periode + */ + vedtak?: boolean; + }; + url: '/api/forvaltningUttrekk/slettTidligereAvstemmingOverlapp'; +}; + +export type SlettTidligereAvstemmingResponses = { + /** + * default response + */ + default: unknown; +}; + +export type OpprettTaskData = { + body?: TaskInput; + path?: never; + query?: never; + url: '/api/fpoversiktMigrering/opprettTask'; +}; + +export type OpprettTaskResponses = { + /** + * default response + */ + default: unknown; +}; + +export type GenererVedtakJsonData = { + body?: never; + path?: never; + query: { + behandlingUuid: string; + }; + url: '/api/forvaltning-stonadsstatistikk/for-behandling'; +}; + +export type GenererVedtakJsonResponses = { + /** + * default response + */ + default: StønadsstatistikkVedtak; +}; + +export type GenererVedtakJsonResponse = GenererVedtakJsonResponses[keyof GenererVedtakJsonResponses]; + +export type OpprettTaskForPeriodeData = { + body?: MigreringTaskInput; + path?: never; + query?: never; + url: '/api/forvaltning-stonadsstatistikk/opprettTaskForPeriode'; +}; + +export type OpprettTaskForPeriodeResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentInntektsmeldingerData = { + body?: never; + path?: never; + query: { + /** + * Saksnummer for fagsak + */ + saksnummer: SaksnummerDto; + }; + url: '/api/fpoversikt/inntektsmeldinger'; +}; + +export type HentInntektsmeldingerResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentInntektsmeldingerResponse = HentInntektsmeldingerResponses[keyof HentInntektsmeldingerResponses]; + +export type HentSakData = { + body?: never; + path?: never; + query: { + /** + * Saksnummer for fagsak + */ + saksnummer: SaksnummerDto; + }; + url: '/api/fpoversikt/sak'; +}; + +export type HentSakResponses = { + /** + * default response + */ + default: Sak; +}; + +export type HentSakResponse = HentSakResponses[keyof HentSakResponses]; + +export type HentmanglendeVedleggData = { + body?: never; + path?: never; + query: { + /** + * Saksnummer for fagsak + */ + saksnummer: SaksnummerDto; + }; + url: '/api/fpoversikt/manglendeVedlegg'; +}; + +export type HentmanglendeVedleggResponses = { + /** + * default response + */ + default: Array< + | 'I000007' + | 'I000023' + | 'I000032' + | 'I000036' + | 'I000037' + | 'I000038' + | 'I000039' + | 'I000041' + | 'I000042' + | 'I000044' + | 'I000045' + | 'I000051' + | 'I000060' + | 'I000061' + | 'I000062' + | 'I000063' + | 'I000065' + | 'I000066' + | 'I000109' + | 'I000110' + | 'I000111' + | 'I000112' + | 'I000114' + | 'I000116' + | 'I000117' + | 'I000118' + | 'I000119' + | 'I000120' + | 'I000121' + | 'I000122' + | 'I000123' + | 'I000124' + | 'I000130' + | 'I000131' + | 'I000132' + | 'I000133' + | 'I000140' + | 'I000141' + >; +}; + +export type HentmanglendeVedleggResponse = HentmanglendeVedleggResponses[keyof HentmanglendeVedleggResponses]; + +export type GrovSorterData = { + /** + * Liste med aktør IDer som skal sorteres + */ + body?: Array; + path?: never; + query?: never; + url: '/api/hendelser/grovsorter'; +}; + +export type GrovSorterResponses = { + /** + * default response + */ + default: Array; +}; + +export type GrovSorterResponse = GrovSorterResponses[keyof GrovSorterResponses]; + +export type MottaHendelseData = { + /** + * Hendelse fra Fpabonnent + */ + body?: HendelseWrapperDto; + path?: never; + query?: never; + url: '/api/hendelser/motta'; +}; + +export type MottaHendelseResponses = { + /** + * default response + */ + default: EnkelRespons; +}; + +export type MottaHendelseResponse = MottaHendelseResponses[keyof MottaHendelseResponses]; + +export type PingData = { + body?: never; + path?: never; + query?: never; + url: '/api/hendelser/ping'; +}; + +export type PingResponses = { + /** + * default response + */ + default: EnkelRespons; +}; + +export type PingResponse = PingResponses[keyof PingResponses]; + +export type SokInfotrygdData = { + /** + * Søkestreng kan være aktørId, fødselsnummer eller D-nummer. + */ + body?: SokefeltDto; + path?: never; + query?: never; + url: '/api/infotrygd/sok'; +}; + +export type SokInfotrygdResponses = { + /** + * Returnerer grunnlag + */ + 200: InfotrygdVedtakDto; +}; + +export type SokInfotrygdResponse = SokInfotrygdResponses[keyof SokInfotrygdResponses]; + +export type HentGruppertKodelisteData = { + body?: never; + path?: never; + query?: never; + url: '/api/kodeverk'; +}; + +export type HentGruppertKodelisteResponses = { + /** + * default response + */ + default: unknown; +}; + +export type HentBehandlingResultatForBackend1Data = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/los/los-behandling'; +}; + +export type HentBehandlingResultatForBackend1Responses = { + /** + * Returnerer behandling + */ + 200: LosBehandlingDto; +}; + +export type HentBehandlingResultatForBackend1Response = + HentBehandlingResultatForBackend1Responses[keyof HentBehandlingResultatForBackend1Responses]; + +export type HentFagsakEgenskaperData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/los/los-egenskap'; +}; + +export type HentFagsakEgenskaperResponses = { + /** + * Returnerer behandling + */ + 200: LosFagsakEgenskaperDto; +}; + +export type HentFagsakEgenskaperResponse = HentFagsakEgenskaperResponses[keyof HentFagsakEgenskaperResponses]; + +export type NøkkeltallFristUtløperData = { + body?: never; + path?: never; + query?: never; + url: '/api/los/los-fristutlop'; +}; + +export type NøkkeltallFristUtløperResponses = { + /** + * default response + */ + default: Array; +}; + +export type NøkkeltallFristUtløperResponse = NøkkeltallFristUtløperResponses[keyof NøkkeltallFristUtløperResponses]; + +export type NøkkeltallFørsteUttakPrMånedData = { + body?: never; + path?: never; + query?: never; + url: '/api/los/los-nokkeltall'; +}; + +export type NøkkeltallFørsteUttakPrMånedResponses = { + /** + * default response + */ + default: Array; +}; + +export type NøkkeltallFørsteUttakPrMånedResponse = + NøkkeltallFørsteUttakPrMånedResponses[keyof NøkkeltallFørsteUttakPrMånedResponses]; + +export type GetAInntektSammenligningUrlData = { + body?: never; + path?: never; + query?: { + saksnummer?: SaksnummerDto; + }; + url: '/api/register/redirect-to/a-inntekt'; +}; + +export type GetAaregUrlData = { + body?: never; + path?: never; + query?: { + saksnummer?: SaksnummerDto; + }; + url: '/api/register/redirect-to/aa-reg'; +}; + +export type HentInitielleRessurserData = { + body?: never; + path?: never; + query?: never; + url: '/api/init-fetch'; +}; + +export type HentInitielleRessurserResponses = { + /** + * default response + */ + default: InitLinksDto; +}; + +export type HentInitielleRessurserResponse = HentInitielleRessurserResponses[keyof HentInitielleRessurserResponses]; + +export type HentVedtaksdokumentData = { + body?: never; + path?: never; + query: { + /** + * BehandlingId for vedtaksdokument + */ + behandlingId: BehandlingIdDto; + }; + url: '/api/vedtak/hent-vedtaksdokument'; +}; + +export type HentVedtaksdokumentResponses = { + /** + * default response + */ + default: unknown; +}; + +export type RegenererIkkeGyldigeVedtaksXmlData = { + /** + * Datointervall i vedtak tabell for hvor det skal genereres ny vedtaksxml og maksAntall som behandles + */ + body: GenererVedtaksXmlDto; + path?: never; + query?: never; + url: '/api/vedtak/regenerer'; +}; + +export type RegenererIkkeGyldigeVedtaksXmlResponses = { + /** + * default response + */ + default: unknown; +}; + +export type ValiderVedtaksXmlData = { + /** + * Datointervall i vedtak tabell for hvilke vedtakxml som skal valideres og maksAntall som behandles + */ + body: GenererVedtaksXmlDto; + path?: never; + query?: never; + url: '/api/vedtak/validate'; +}; + +export type ValiderVedtaksXmlResponses = { + /** + * default response + */ + default: unknown; +}; + +export type FpVedtakHendelserData = { + body?: never; + path?: never; + query: { + /** + * Siste sekvensId lest + */ + sistLesteSekvensId: SekvensIdParam; + /** + * max antall returnert + */ + maxAntall?: MaxAntallParam; + /** + * Filtrerer på type hendelse + */ + type?: HendelseTypeParam; + /** + * aktoerId + */ + aktoerId?: AktørParam; + }; + url: '/api/feed/vedtak/foreldrepenger'; +}; + +export type FpVedtakHendelserResponses = { + /** + * Returnerer hendelser om foreldrepenger-vedtak + */ + 200: FeedDto; +}; + +export type FpVedtakHendelserResponse = FpVedtakHendelserResponses[keyof FpVedtakHendelserResponses]; + +export type SvpVedtakHendelserData = { + body?: never; + path?: never; + query: { + /** + * Siste sekvensId lest + */ + sistLesteSekvensId: SekvensIdParam; + /** + * max antall returnert + */ + maxAntall?: MaxAntallParam; + /** + * Filtrerer på type hendelse + */ + type?: HendelseTypeParam; + /** + * aktoerId + */ + aktoerId?: AktørParam; + }; + url: '/api/feed/vedtak/svangerskapspenger'; +}; + +export type SvpVedtakHendelserResponses = { + /** + * Returnerer hendelser om svangerskapspenger-vedtak + */ + 200: FeedDto; +}; + +export type SvpVedtakHendelserResponse = SvpVedtakHendelserResponses[keyof SvpVedtakHendelserResponses]; + +export type HentAktørIdListeTilknyttetSakData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/pip/aktoer-for-sak'; +}; + +export type HentAktørIdListeTilknyttetSakResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentAktørIdListeTilknyttetSakResponse = + HentAktørIdListeTilknyttetSakResponses[keyof HentAktørIdListeTilknyttetSakResponses]; + +export type HentFullInfoForSakData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/pip/full-for-sak'; +}; + +export type HentFullInfoForSakResponses = { + /** + * default response + */ + default: SakOgPersonerDto; +}; + +export type HentFullInfoForSakResponse = HentFullInfoForSakResponses[keyof HentFullInfoForSakResponses]; + +export type HentFullInfoForSakErData = { + body: Array; + path?: never; + query?: never; + url: '/api/pip/full-for-sak'; +}; + +export type HentFullInfoForSakErResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentFullInfoForSakErResponse = HentFullInfoForSakErResponses[keyof HentFullInfoForSakErResponses]; + +export type HentSaksIdentData = { + body?: never; + path?: never; + query: { + saksnummer: SaksnummerDto; + }; + url: '/api/pip/ident-for-sak'; +}; + +export type HentSaksIdentResponses = { + /** + * default response + */ + default: string; +}; + +export type HentSaksIdentResponse = HentSaksIdentResponses[keyof HentSaksIdentResponses]; + +export type HentSaksnummerTilknyttetBehandlingData = { + body?: never; + path?: never; + query: { + behandlingUuid: UuidDto; + }; + url: '/api/pip/saksnummer-for-behandling'; +}; + +export type HentSaksnummerTilknyttetBehandlingResponses = { + /** + * default response + */ + default: string; +}; + +export type HentSaksnummerTilknyttetBehandlingResponse = + HentSaksnummerTilknyttetBehandlingResponses[keyof HentSaksnummerTilknyttetBehandlingResponses]; + +export type CreateProsessTaskData = { + /** + * Informasjon for restart en eksisterende prosesstask + */ + body?: ProsessTaskOpprettInputDto; + path?: never; + query?: never; + url: '/api/prosesstask/create'; +}; + +export type CreateProsessTaskErrors = { + /** + * Feilet pga ukjent feil eller tekniske/funksjonelle feil + */ + 500: unknown; +}; + +export type CreateProsessTaskResponses = { + /** + * Prosesstaskens oppdatert informasjon + */ + 202: ProsessTaskDataDto; +}; + +export type CreateProsessTaskResponse = CreateProsessTaskResponses[keyof CreateProsessTaskResponses]; + +export type FinnFeiletProsessTaskData = { + body?: never; + path: { + prosessTaskId: number; + }; + query?: never; + url: '/api/prosesstask/feil/{prosessTaskId}'; +}; + +export type FinnFeiletProsessTaskErrors = { + /** + * Feil input + */ + 400: unknown; + /** + * Tom respons når angitt prosesstask-id ikke finnes + */ + 404: unknown; +}; + +export type FinnFeiletProsessTaskResponses = { + /** + * Angitt prosesstask-id finnes + */ + 200: FeiletProsessTaskDataDto; +}; + +export type FinnFeiletProsessTaskResponse = FinnFeiletProsessTaskResponses[keyof FinnFeiletProsessTaskResponses]; + +export type FinnProsessTasksData = { + body?: never; + path: { + /** + * Liste av statuser som skal hentes. + */ + prosessTaskStatus: 'FEILET' | 'VENTER_SVAR' | 'SUSPENDERT' | 'VETO' | 'KLAR'; + }; + query?: never; + url: '/api/prosesstask/list/{prosessTaskStatus}'; +}; + +export type FinnProsessTasksResponses = { + /** + * Liste over prosesstasker, eller tom liste når angitt/default søkefilter ikke finner noen prosesstasker + */ + 200: ProsessTaskDataDto; +}; + +export type FinnProsessTasksResponse = FinnProsessTasksResponses[keyof FinnProsessTasksResponses]; + +export type RestartProsessTaskData = { + body?: never; + path: { + prosessTaskId: number; + prosessTaskStatus: 'FEILET' | 'VENTER_SVAR' | 'SUSPENDERT'; + }; + query?: never; + url: '/api/prosesstask/launch/{prosessTaskId}/{prosessTaskStatus}'; +}; + +export type RestartProsessTaskErrors = { + /** + * Feilet pga ukjent feil eller tekniske/funksjonelle feil + */ + 500: unknown; +}; + +export type RestartProsessTaskResponses = { + /** + * Prosesstaskens oppdatert informasjon + */ + 200: ProsessTaskRestartResultatDto; +}; + +export type RestartProsessTaskResponse = RestartProsessTaskResponses[keyof RestartProsessTaskResponses]; + +export type RetryAllProsessTaskData = { + body?: never; + path?: never; + query?: never; + url: '/api/prosesstask/retryall'; +}; + +export type RetryAllProsessTaskErrors = { + /** + * Feilet pga ukjent feil eller tekniske/funksjonelle feil + */ + 500: unknown; +}; + +export type RetryAllProsessTaskResponses = { + /** + * Response med liste av prosesstasks som restartes + */ + 200: ProsessTaskRetryAllResultatDto; +}; + +export type RetryAllProsessTaskResponse = RetryAllProsessTaskResponses[keyof RetryAllProsessTaskResponses]; + +export type SearchProsessTasksData = { + /** + * Søkefilter for å begrense resultatet av returnerte prosesstask. + */ + body?: SokeFilterDto; + path?: never; + query?: never; + url: '/api/prosesstask/search'; +}; + +export type SearchProsessTasksResponses = { + /** + * Liste over prosesstasker, eller tom liste når angitt/default søkefilter ikke finner noen prosesstasker + */ + 200: ProsessTaskDataDto; +}; + +export type SearchProsessTasksResponse = SearchProsessTasksResponses[keyof SearchProsessTasksResponses]; + +export type SetFeiletProsessTaskFerdigData = { + body?: never; + path: { + prosessTaskId: number; + prosessTaskStatus: 'FEILET' | 'VENTER_SVAR' | 'SUSPENDERT' | 'VETO' | 'KLAR'; + }; + query?: never; + url: '/api/prosesstask/setferdig/{prosessTaskId}/{prosessTaskStatus}'; +}; + +export type SetFeiletProsessTaskFerdigErrors = { + /** + * Feilet pga ukjent feil eller tekniske/funksjonelle feil + */ + 500: unknown; +}; + +export type SetFeiletProsessTaskFerdigResponses = { + /** + * Angitt prosesstask-id satt til status FERDIG + */ + 200: unknown; +}; + +export type ClientOptions = { + baseUrl: `${string}://${string}/fpsak` | (string & {}); +}; diff --git a/swagger.json b/swagger.json deleted file mode 100644 index bee5286a34f..00000000000 --- a/swagger.json +++ /dev/null @@ -1,15301 +0,0 @@ -{ - "openapi" : "3.0.1", - "info" : { - "title" : "FPSAK - Foreldrepenger, engangsstønad og svangerskapspenger", - "description" : "REST grensesnitt for FPSAK.", - "version" : "1.0" - }, - "servers" : [ { - "url" : "/fpsak" - } ], - "tags" : [ { - "name" : "prosesstask", - "description" : "Håndtering av asynkrone oppgaver i form av prosesstask" - } ], - "paths" : { - "/api/registerdata/iay/callback" : { - "post" : { - "tags" : [ "registerdata" ], - "description" : "Callback når registerinnhenting av IAY har blitt fullført i Abakus", - "operationId" : "callback", - "requestBody" : { - "description" : "callbackDto", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/CallbackDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/batch/autorun" : { - "post" : { - "tags" : [ "batch" ], - "description" : "Start task for å kjøre batchjobs", - "operationId" : "autoRunBatch", - "responses" : { - "200" : { - "description" : "Starter batch-scheduler" - }, - "500" : { - "description" : "Feilet pga ukjent feil" - } - } - } - }, - "/api/behandling/backend-root" : { - "get" : { - "tags" : [ "behandlinger" ], - "summary" : "Returnerer behandlingen som er tilknyttet id. Dette er resultat etter at asynkrone operasjoner er utført.", - "description" : "Hent behandling gitt id for backend", - "operationId" : "hentBehandlingResultatForBackend", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer behandling", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BehandlingDto" - } - } - } - } - } - } - }, - "/api/behandlinger/haster" : { - "post" : { - "tags" : [ "behandlinger" ], - "description" : "Merker sak som hastesak basert på åpen behandling", - "operationId" : "behandlingErHasteSak", - "requestBody" : { - "description" : "BehandlingId for behandling som merkes som Haster", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ReåpneBehandlingDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandlinger/bytt-enhet" : { - "post" : { - "tags" : [ "behandlinger" ], - "description" : "Bytte behandlende enhet", - "operationId" : "byttBehandlendeEnhet", - "requestBody" : { - "description" : "Ny enhet som skal byttes", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ByttBehandlendeEnhetDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandlinger/endre-pa-vent" : { - "post" : { - "tags" : [ "behandlinger" ], - "description" : "Endrer ventefrist for behandling på vent", - "operationId" : "endreFristForBehandlingPaVent", - "requestBody" : { - "description" : "Frist for behandling på vent", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SettBehandlingPaVentDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandlinger/gjenoppta" : { - "post" : { - "tags" : [ "behandlinger" ], - "description" : "Gjenopptar behandling som er satt på vent", - "operationId" : "gjenopptaBehandling", - "requestBody" : { - "description" : "BehandlingId for behandling som skal gjenopptas", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/GjenopptaBehandlingDto" - } - } - } - }, - "responses" : { - "200" : { - "description" : "Gjenoppta behandling påstartet i bakgrunnen", - "headers" : { - "Location" : { - "style" : "simple" - } - } - } - } - } - }, - "/api/behandlinger/henlegg" : { - "post" : { - "tags" : [ "behandlinger" ], - "description" : "Henlegger behandling", - "operationId" : "henleggBehandling", - "requestBody" : { - "description" : "Henleggelsesårsak", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/HenleggBehandlingDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandlinger/annen-part-behandling" : { - "get" : { - "tags" : [ "behandlinger" ], - "description" : "Henter annen parts behandling basert på saksnummer", - "operationId" : "hentAnnenPartsGjeldendeBehandling", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer må være et eksisterende saksnummer", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandlinger" : { - "get" : { - "tags" : [ "behandlinger" ], - "summary" : "Returnerer behandlingen som er tilknyttet id. Dette er resultat etter at asynkrone operasjoner er utført.", - "description" : "Hent behandling gitt id", - "operationId" : "hentBehandlingResultat", - "parameters" : [ { - "name" : "behandlingId", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/BehandlingIdDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Behandling", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/UtvidetBehandlingDto" - } - } - } - } - }, - "deprecated" : true - }, - "put" : { - "tags" : [ "behandlinger" ], - "description" : "Opprette ny behandling", - "operationId" : "opprettNyBehandling", - "requestBody" : { - "description" : "Saksnummer og flagg om det er ny behandling etter klage", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/NyBehandlingDto" - } - } - } - }, - "responses" : { - "202" : { - "description" : "Opprett ny behandling pågår", - "headers" : { - "Location" : { - "style" : "simple" - } - } - } - } - }, - "post" : { - "tags" : [ "behandlinger" ], - "description" : "Init hent behandling", - "operationId" : "hentBehandling", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BehandlingIdDto" - } - } - }, - "required" : true - }, - "responses" : { - "202" : { - "description" : "Hent behandling initiert, Returnerer link til å polle på fremdrift", - "headers" : { - "Location" : { - "style" : "simple" - } - } - }, - "303" : { - "description" : "Behandling tilgjenglig (prosesstasks avsluttet)", - "headers" : { - "Location" : { - "style" : "simple" - } - } - } - }, - "deprecated" : true - } - }, - "/api/behandlinger/alle" : { - "get" : { - "tags" : [ "behandlinger" ], - "summary" : "Returnerer alle behandlinger som er tilknyttet saksnummer.", - "description" : "Henter alle behandlinger basert på saksnummer", - "operationId" : "hentBehandlinger", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer må være et eksisterende saksnummer", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BehandlingDto" - } - } - } - } - } - } - } - }, - "/api/behandlinger/sett-pa-vent" : { - "post" : { - "tags" : [ "behandlinger" ], - "description" : "Setter behandling på vent", - "operationId" : "settBehandlingPaVent", - "requestBody" : { - "description" : "Frist for behandling på vent", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SettBehandlingPaVentDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandlinger/opne-for-endringer" : { - "post" : { - "tags" : [ "behandlinger" ], - "description" : "Åpner behandling for endringer", - "operationId" : "åpneBehandlingForEndringer", - "requestBody" : { - "description" : "BehandlingId for behandling som skal åpnes for endringer", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ReåpneBehandlingDto" - } - } - } - }, - "responses" : { - "200" : { - "description" : "Åpning av behandling for endringer påstartet i bakgrunnen", - "headers" : { - "Location" : { - "style" : "simple" - } - } - } - } - } - }, - "/api/behandling/status" : { - "get" : { - "tags" : [ "behandlinger" ], - "summary" : "Returnerer link til enten samme (hvis ikke ferdig) eller redirecter til /behandlinger dersom asynkrone operasjoner er ferdig.", - "description" : "Url for å polle på behandling mens behandlingprosessen pågår i bakgrunnen(asynkront)", - "operationId" : "hentBehandlingMidlertidigStatus", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - }, { - "name" : "gruppe", - "in" : "query", - "schema" : { - "$ref" : "#/components/schemas/ProsessTaskGruppeIdDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Status", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AsyncPollingStatus" - } - } - } - }, - "303" : { - "description" : "Behandling tilgjenglig (prosesstasks avsluttet)", - "headers" : { - "Location" : { - "style" : "simple" - } - } - }, - "418" : { - "description" : "ProsessTasks har feilet", - "headers" : { - "Location" : { - "style" : "simple" - } - }, - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AsyncPollingStatus" - } - } - } - } - } - } - }, - "/api/behandling" : { - "get" : { - "tags" : [ "behandlinger" ], - "summary" : "Returnerer behandlingen som er tilknyttet id. Dette er resultat etter at asynkrone operasjoner er utført.", - "description" : "Hent behandling gitt id", - "operationId" : "hentBehandlingResultat_1", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Behandling", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/UtvidetBehandlingDto" - } - } - } - } - } - } - }, - "/api/behandling/aksjonspunkt" : { - "post" : { - "tags" : [ "aksjonspunkt" ], - "description" : "Lagre endringer gitt av aksjonspunktene og rekjør behandling fra gjeldende steg", - "operationId" : "bekreft", - "requestBody" : { - "description" : "Liste over aksjonspunkt som skal bekreftes, inklusiv data som trengs for å løse de.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BekreftedeAksjonspunkterDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandling/aksjonspunkt/beslutt" : { - "post" : { - "tags" : [ "aksjonspunkt" ], - "description" : "Lagre totrinnsvurdering aksjonspunkt", - "operationId" : "beslutt", - "requestBody" : { - "description" : "Liste over aksjonspunkt som skal bekreftes, inklusiv data som trengs for å løse de.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BekreftedeAksjonspunkterDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandling/aksjonspunkt-v2" : { - "get" : { - "tags" : [ "aksjonspunkt" ], - "description" : "Hent aksjonspunter for en behandling", - "operationId" : "getAksjonspunkter", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "content" : { - "application/json" : { - "schema" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AksjonspunktDto" - } - } - } - } - } - } - } - }, - "/api/behandling/aksjonspunkt/overstyr" : { - "post" : { - "tags" : [ "aksjonspunkt" ], - "description" : "Overstyrer stegene", - "operationId" : "overstyr", - "requestBody" : { - "description" : "Liste over overstyring aksjonspunkter.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OverstyrteAksjonspunkterDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandling/anke/anke-vurdering-v2" : { - "get" : { - "tags" : [ "anke" ], - "description" : "Hent informasjon om ankevurdering for en ankebehandling", - "operationId" : "getAnkeVurdering", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer vurdering av en anke fra ulike instanser", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AnkebehandlingDto" - } - } - } - } - } - } - }, - "/api/behandling/arbeid-inntektsmelding/alle-inntektsmeldinger" : { - "get" : { - "tags" : [ "arbeid-intektsmelding" ], - "summary" : "Returnerer liste av alle inntektsmeldinger til saken.", - "description" : "Henter alle inntektsmeldinger som hører til en fagsak", - "operationId" : "getAlleInntektsmeldinger", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/InntektsmeldingDto" - } - } - } - } - } - } - }, - "/api/behandling/arbeid-inntektsmelding" : { - "get" : { - "tags" : [ "arbeid-intektsmelding" ], - "summary" : "Returnerer info om arbeidsforhold og inntektsmeldinger tilknyttet saken.", - "description" : "Hent informasjon arbeidsforhold og tilhørende inntektsmeldinger", - "operationId" : "getArbeidOgInntektsmeldinger", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer ArbeidOgInntektsmeldingDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ArbeidOgInntektsmeldingDto" - } - } - } - } - } - } - }, - "/api/behandling/arbeid-inntektsmelding/lagre-arbeidsforhold" : { - "post" : { - "tags" : [ "arbeid-intektsmelding" ], - "summary" : "Lagrer registrering av arbeidsforhold fra saksbehandler", - "description" : "Lagre registrering av arbeidsforhold", - "operationId" : "lagreManuelleArbeidsforhold", - "requestBody" : { - "description" : "Registrering av arbeidsforhold.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ManueltArbeidsforholdDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandling/arbeid-inntektsmelding/lagre-vurdering" : { - "post" : { - "tags" : [ "arbeid-intektsmelding" ], - "summary" : "Lagrer vurdering av manglende inntektsmelding for et enkelt arbeidsforhold, eller manglende arbeidsforhold for en enkelt inntektsmelding.", - "description" : "Lagre vurdering av arbeidsforhold som mangler inntektsmelding, eller inntektsmelding som mangler arbeidsforhold", - "operationId" : "lagreVurderingAvManglendeOpplysninger", - "requestBody" : { - "description" : "Vurdering av opplysning som mangler.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ManglendeOpplysningerVurderingDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandling/arbeid-inntektsmelding/apne-for-ny-vurdering" : { - "post" : { - "tags" : [ "arbeid-intektsmelding" ], - "summary" : "Åpner behandling for endring ved å rulle saken tilbake til korrekt steg", - "description" : "Åpner behandling for endring av vurdering i arbeid og inntektsmelding, hvis dette er mulig.", - "operationId" : "åpneForEndring", - "requestBody" : { - "description" : "BehandlingUID og versjon på behadlingen.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BehandlingIdVersjonDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandling/inntektsmeldinger-alle" : { - "get" : { - "tags" : [ "inntekt-arbeid-ytelse" ], - "summary" : "Returnerer info om alle inntektsmeldinger.", - "description" : "Hent informasjon om inntektsmelding", - "operationId" : "getAlleInntektsmeldinger_1", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer InntektsmeldingerDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/InntektsmeldingerDto" - } - } - } - } - } - } - }, - "/api/behandling/arbeidsgivere-opplysninger" : { - "get" : { - "tags" : [ "inntekt-arbeid-ytelse" ], - "summary" : "Returnerer info om innhentet og avklart inntekter/arbeid og ytelser for bruker, inkludert hva bruker har vedlagt søknad.", - "description" : "Hent informasjon om innhentet og avklart inntekter, arbeid og ytelser", - "operationId" : "getArbeidsgiverOpplysninger", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer InntektArbeidYtelseDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ArbeidsgiverOversiktDto" - } - } - } - } - } - } - }, - "/api/behandling/inntekt-arbeid-ytelse" : { - "get" : { - "tags" : [ "inntekt-arbeid-ytelse" ], - "summary" : "Returnerer info om innhentet og avklart inntekter/arbeid og ytelser for bruker, inkludert hva bruker har vedlagt søknad.", - "description" : "Hent informasjon om innhentet og avklart inntekter, arbeid og ytelser", - "operationId" : "getInntektArbeidYtelser", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer InntektArbeidYtelseDto, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/IAYYtelseDto" - } - } - } - } - } - } - }, - "/api/behandling/beregningsgrunnlag" : { - "get" : { - "tags" : [ "beregningsgrunnlag" ], - "summary" : "Returnerer beregningsgrunnlag for behandling.", - "description" : "Hent beregningsgrunnlag for angitt behandling", - "operationId" : "hentBeregningsgrunnlag", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagDto" - } - } - } - } - } - } - }, - "/api/behandling/beregningsresultat/dagytelse" : { - "get" : { - "tags" : [ "beregningsresultat" ], - "summary" : "Returnerer beregningsresultat med uttaksplan for behandling.", - "description" : "Hent beregningsresultat med uttaksplan for ytelser med daglig sats (svangerskapspenger og foreldrepenger)", - "operationId" : "hentBeregningsresultatDagytelse", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BeregningsresultatMedUttaksplanDto" - } - } - } - } - } - } - }, - "/api/behandling/beregningsresultat/engangsstonad" : { - "get" : { - "tags" : [ "beregningsresultat" ], - "summary" : "Returnerer beregningsresultat med uttaksplan for behandling.", - "description" : "Hent beregningsresultat med uttaksplan for engangsstønad behandling", - "operationId" : "hentBeregningsresultatEngangsstønad", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BeregningsresultatEngangsstønadDto" - } - } - } - } - } - } - }, - "/api/behandling/feriepengegrunnlag" : { - "get" : { - "tags" : [ "feriepengegrunnlag" ], - "summary" : "Returnerer feriepengegrunnlaget for behandling.", - "description" : "Hent feriepengegrunnlaget for en gitt behandling om det finnes", - "operationId" : "hentFeriepenger", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/FeriepengegrunnlagDto" - } - } - } - } - } - } - }, - "/api/behandling/fodsel/fakta-fodsel" : { - "get" : { - "tags" : [ "behandling - fødsel" ], - "description" : "Hent fakta om fødsel i behandling", - "operationId" : "hentFødsel", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Fakta om fødsel og termin)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/FødselDto" - } - } - } - } - } - } - }, - "/api/historikk" : { - "get" : { - "tags" : [ "historikk" ], - "description" : "Henter alle historikkinnslag for en gitt sak.", - "operationId" : "hentAlleInnslag", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer må være et eksisterende saksnummer", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json;charset=utf-8" : { } - } - } - } - } - }, - "/api/behandling/innsyn" : { - "get" : { - "tags" : [ "innsyn" ], - "summary" : "Returnerer info om innsynsbehandling", - "description" : "Hent diverse informasjon om innsynsbehandlingen", - "operationId" : "getInnsynsbehandling", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer innsynsbehandling eller ingenting hvis uuid ikke peker på en innsynsbehandling", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/InnsynsbehandlingDto" - } - } - } - } - } - } - }, - "/api/behandling/klage-v2" : { - "get" : { - "tags" : [ "klage" ], - "description" : "Hent informasjon om klagevurdering for en klagebehandling", - "operationId" : "getKlageVurdering", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer vurdering av en klage fra ulike instanser", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/KlagebehandlingDto" - } - } - } - } - } - } - }, - "/api/behandling/klage/mottatt-klagedokument-v2" : { - "get" : { - "tags" : [ "klage" ], - "summary" : "Kan returnere dokument uten verdier i hvis det ikke finnes noe klagedokument på behandlingen", - "description" : "Hent mottatt klagedokument for en klagebehandling", - "operationId" : "getMottattKlagedokument", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer mottatt klagedokument", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/MottattKlagedokumentDto" - } - } - } - } - } - } - }, - "/api/behandling/klage/mellomlagre-formkrav-klage" : { - "post" : { - "tags" : [ "klage" ], - "description" : "Mellomlagring av fritekst til brev for avvist formkrav", - "operationId" : "mellomlagreAvvistFormKrav", - "requestBody" : { - "description" : "KlageVurderingAdapter tilpasset til mellomlagring.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/KlageFormKravAksjonspunktMellomlagringDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandling/klage/mellomlagre-klage" : { - "post" : { - "tags" : [ "klage" ], - "description" : "Mellomlagring av vurderingstekst for klagebehandling", - "operationId" : "mellomlagreKlage", - "requestBody" : { - "description" : "KlageVurderingAdapter tilpasset til mellomlagring.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/KlageVurderingResultatAksjonspunktMellomlagringDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandling/oppdrag/oppdraginfo" : { - "get" : { - "tags" : [ "oppdrag" ], - "description" : "Hent oppdrags-info for behandlingen", - "operationId" : "hentOppdrag", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OppdragDto" - } - } - } - } - } - } - }, - "/api/behandling/opptjening/utlanddokstatus" : { - "get" : { - "tags" : [ "opptjening" ], - "description" : "Henters saksbehandlers valg om det skal innhentes dok fra utland", - "operationId" : "getDokStatus", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Om dok skal hentes eller ikke", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OpptjeningIUtlandDokStatusDto" - } - } - } - } - } - } - }, - "/api/behandling/opptjening" : { - "get" : { - "tags" : [ "opptjening" ], - "description" : "Hent informasjon om opptjening", - "operationId" : "getOpptjening", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Opptjening, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OpptjeningDto" - } - } - } - } - } - } - }, - "/api/behandling/person/personopplysninger-tilbake" : { - "get" : { - "tags" : [ "behandling - person" ], - "description" : "Hent informasjon om personopplysninger søker for tilbakekreving", - "operationId" : "getPersonopplysningerTilbake", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Personopplysninger, null hvis ikke finnes (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/PersonopplysningTilbakeDto" - } - } - } - } - } - } - }, - "/api/behandling/person/personoversikt" : { - "get" : { - "tags" : [ "behandling - person" ], - "description" : "Hent oversikt over personopplysninger søker i behandling", - "operationId" : "getPersonoversikt", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Personopplysninger, null hvis ikke finnes (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/PersonoversiktDto" - } - } - } - } - } - } - }, - "/api/behandling/person/medlemskap-v3" : { - "get" : { - "tags" : [ "behandling - person" ], - "description" : "Hent informasjon relatert til medlemskap for søker i behandling", - "operationId" : "hentMedlemskapV3", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Medlemskap, null hvis ikke finnes (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/MedlemskapDto" - } - } - } - } - } - } - }, - "/api/behandling/svangerskapspenger/tilrettelegging-v2" : { - "get" : { - "tags" : [ "svangerskapspenger" ], - "summary" : "Returnerer termindato og liste med tilretteleggingsinfo pr. arbeidsforhold ved svangerskapspenger", - "description" : "Hent informasjon om tilretteleggingbehov ved svangerskapspenger", - "operationId" : "tilrettelegging", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SvpTilretteleggingDto" - } - } - } - } - } - } - }, - "/api/behandling/soknad" : { - "get" : { - "tags" : [ "søknad" ], - "description" : "Hent informasjon om søknad", - "operationId" : "getSøknad", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Søknad, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SoknadDto" - } - } - } - } - } - } - }, - "/api/behandling/soknad-backend" : { - "get" : { - "tags" : [ "søknad" ], - "description" : "Hent informasjon om søknad", - "operationId" : "getSøknadBackend", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "RReturnerer forenklet søknad til andre applikasjoner", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SoknadDto" - } - } - } - } - } - } - }, - "/api/behandling/tilbakekreving/simulering-resultat" : { - "get" : { - "tags" : [ "tilbakekrevingsvalg" ], - "description" : "Hent detaljert resultat av simulering mot økonomi med og uten inntrekk", - "operationId" : "hentSimuleringResultat", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SimuleringDto" - } - } - } - } - } - } - }, - "/api/behandling/tilbakekreving/valg" : { - "get" : { - "tags" : [ "tilbakekrevingsvalg" ], - "description" : "Hent tilbakekrevingsvalg for behandlingen", - "operationId" : "hentTilbakekrevingValg", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/TilbakekrevingValgDto" - } - } - } - } - } - } - }, - "/api/behandling/tilbakekreving/varseltekst" : { - "get" : { - "tags" : [ "tilbakekrevingsvalg" ], - "description" : "Henter varseltekst for tilbakekreving", - "operationId" : "hentVarseltekst", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/VarseltekstDto" - } - } - } - } - } - } - }, - "/api/behandling/uttak/stonadskontoer" : { - "get" : { - "tags" : [ "uttak" ], - "summary" : "Returnerer stønadskontoer for behandling", - "description" : "Hent informasjon om stønadskontoer for behandling", - "operationId" : "getStonadskontoer", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SaldoerDto" - } - } - } - } - } - } - }, - "/api/behandling/uttak/stonadskontoerGittUttaksperioder" : { - "post" : { - "tags" : [ "uttak" ], - "summary" : "Returnerer stønadskontoer for behandling", - "description" : "Hent informasjon om stønadskontoer for behandling gitt uttaksperioder", - "operationId" : "getStonadskontoerGittUttaksperioder", - "requestBody" : { - "description" : "Behandling og liste med uttaksperioder", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BehandlingMedUttaksperioderDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SaldoerDto" - } - } - } - } - } - } - }, - "/api/behandling/uttak/fakta-arbeidsforhold" : { - "get" : { - "tags" : [ "uttak" ], - "summary" : "Henter arbeidsforhold som er relevant for fakta uttak", - "description" : "Henter arbeidsforhold som er relevant for fakta uttak", - "operationId" : "hentArbeidsforhold", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ArbeidsforholdDto" - } - } - } - } - } - } - } - }, - "/api/behandling/uttak/vurder-dokumentasjon" : { - "get" : { - "tags" : [ "uttak" ], - "description" : "Hent perioder med behov for dokumentasjon", - "operationId" : "hentDokumentasjonVurderingBehov", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/DokumentasjonVurderingBehovDto" - } - } - } - } - } - } - } - }, - "/api/behandling/uttak/kontroller-fakta-perioder-v2" : { - "get" : { - "tags" : [ "uttak" ], - "description" : "Hent perioder for fakta om uttak", - "operationId" : "hentFaktaUttakPerioder", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FaktaUttakPeriodeDto" - } - } - } - } - } - } - } - }, - "/api/behandling/uttak/resultat-svangerskapspenger" : { - "get" : { - "tags" : [ "uttak" ], - "summary" : "Returnerer svangerskapspenger uttaksresultat", - "description" : "Henter svangerskapspenger uttaksresultat", - "operationId" : "hentSvangerskapspengerUttakResultat", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SvangerskapspengerUttakResultatDto" - } - } - } - } - } - } - }, - "/api/behandling/uttak/resultat-perioder" : { - "get" : { - "tags" : [ "uttak" ], - "summary" : "Returnerer uttaksresultatperioder", - "description" : "Henter uttaksresultatperioder", - "operationId" : "hentUttakResultatPerioder", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/UttakResultatPerioderDto" - } - } - } - } - } - } - }, - "/api/behandling/vedtak/ferdigstill-oppgave" : { - "post" : { - "tags" : [ "vedtak" ], - "description" : "Ferdigstiller valgt oppgave", - "operationId" : "ferdigstillOppgave", - "requestBody" : { - "description" : "OppgaveId for oppgave som skal ferdigstilles", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/behandling/vedtak/hent-oppgaver" : { - "get" : { - "tags" : [ "vedtak" ], - "description" : "Henter åpne oppgaver", - "operationId" : "hentOppgaver", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OppgaveDto" - } - } - } - } - } - } - } - }, - "/api/verge/fjern" : { - "post" : { - "tags" : [ "verge" ], - "description" : "Fjerner verge/fullmektig på behandlingen", - "operationId" : "fjernVerge", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "Behandling uuid", - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Verge/fullmektig fjernet", - "headers" : { - "Location" : { - "style" : "simple" - } - } - } - } - } - }, - "/api/verge/backend" : { - "get" : { - "tags" : [ "verge" ], - "description" : "Henter verge/fullmektig på behandlingen for bruk backend", - "operationId" : "getVergeBackend", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Verge hvis eksisterer ellers null", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/VergeBackendDto" - } - } - } - } - } - } - }, - "/api/verge" : { - "get" : { - "tags" : [ "verge" ], - "description" : "Henter verge/fullmektig på behandlingen", - "operationId" : "hentVerge", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "Behandling uuid", - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Verge/fullmektig funnet" - }, - "204" : { - "description" : "Ingen verge/fullmektig" - } - } - } - }, - "/api/verge/opprett" : { - "post" : { - "tags" : [ "verge" ], - "description" : "Oppretter verge/fullmektig på behandlingen", - "operationId" : "opprettVerge", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "Behandling uuid", - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/VergeDto" - } - } - } - }, - "responses" : { - "200" : { - "description" : "Verge/fullmektig opprettes", - "headers" : { - "Location" : { - "style" : "simple" - } - } - } - } - } - }, - "/api/behandling/ytelsefordeling" : { - "get" : { - "tags" : [ "ytelsefordeling" ], - "description" : "Hent informasjon om ytelsefordeling", - "operationId" : "getYtelsefordeling", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Ytelsefordeling mellom parter, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/YtelseFordelingDto" - } - } - } - } - } - } - }, - "/api/behandling/omsorg-og-rett" : { - "get" : { - "description" : "Hent informasjon om omsorg og rett", - "operationId" : "hentRettOgOmsorg", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer informasjon fra søknad og registerdata som omhandler brukers og annen parts rett og omsorg i behandlingen", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OmsorgOgRettDto" - } - } - } - } - } - } - }, - "/api/brev/bestill" : { - "post" : { - "tags" : [ "brev" ], - "description" : "Bestiller generering og sending av brevet", - "operationId" : "bestillDokument", - "requestBody" : { - "description" : "Inneholder kode til brevmal og data som skal flettes inn i brevet", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BestillDokumentDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/brev/forhandsvis" : { - "post" : { - "tags" : [ "brev" ], - "description" : "Returnerer en pdf som er en forhåndsvisning av brevet", - "operationId" : "forhåndsvisDokument", - "requestBody" : { - "description" : "Inneholder kode til brevmal og bestillingsdetaljer.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ForhåndsvisDokumentDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/brev/varsel/revurdering" : { - "get" : { - "tags" : [ "brev" ], - "description" : "Sjekk har varsel sendt om revurdering", - "operationId" : "harSendtVarselOmRevurdering", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json;charset=utf-8" : { - "schema" : { - "type" : "boolean" - } - } - } - } - } - } - }, - "/api/brev/overstyring" : { - "get" : { - "tags" : [ "brev" ], - "description" : "Henter html representasjon av brevet som brukes i overstyring av vedtaksbrev med mellomlagret overstyring", - "operationId" : "hentOverstyringAvBrevMedOrginaltBrevPåHtmlFormat", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/brev/kvittering/v3" : { - "post" : { - "tags" : [ "brev" ], - "description" : "Kvitterer at brevet ble produsert og sendt. BREV_SENT historikk blir lagt og behandling dokument blir oppdatert med journalpostId.", - "operationId" : "kvitteringV3", - "requestBody" : { - "content" : { - "*/*" : { - "schema" : { - "$ref" : "#/components/schemas/DokumentKvitteringDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/brev/overstyring/mellomlagring" : { - "post" : { - "tags" : [ "brev" ], - "description" : "Lagrer ned overstyrt html-representasjon av brevet som brukes ved foreslå vedtak aksjonspunktet", - "operationId" : "mellomlagringAvOverstyring", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/MellomlagreHtmlDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/datavarehus/regenerer_vedtaksdokument" : { - "post" : { - "tags" : [ "datavarehus" ], - "description" : "Generer vedtaksxml på nytt for gitt behandlingid.", - "operationId" : "regenererVedtaksXml", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/dokument/hent-dokumentliste" : { - "get" : { - "tags" : [ "dokument" ], - "summary" : "Oversikt over alle pdf dokumenter fra dokumentarkiv registrert for saksnummer.", - "description" : "Henter dokumentlisten knyttet til en sak", - "operationId" : "hentAlleDokumenterForSak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/DokumentDto" - } - } - } - } - } - } - } - }, - "/api/dokument/hent-mottattdokumentliste" : { - "get" : { - "tags" : [ "dokument" ], - "description" : "Henter listen av mottatte dokumenter knyttet til en fagsak", - "operationId" : "hentAlleMottatteDokumenterForBehandling", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/MottattDokumentDto" - } - } - } - } - } - } - } - }, - "/api/dokument/hent-dokument" : { - "get" : { - "tags" : [ "dokument" ], - "summary" : "Retunerer dokument som er tilknyttet saksnummer, journalpostId og dokumentId (bare pdf)", - "description" : "Søk etter dokument på JOARK-identifikatorene journalpostId og dokumentId", - "operationId" : "hentDokument", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - }, { - "name" : "journalpostId", - "in" : "query", - "description" : "Unik identifikator av journalposten (forsendelsenivå)", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/JournalpostIdDto" - } - }, { - "name" : "dokumentId", - "in" : "query", - "description" : "Unik identifikator av DokumentInfo/Dokumentbeskrivelse (dokumentnivå)", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/DokumentIdDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/aktoer-info" : { - "get" : { - "tags" : [ "aktoer" ], - "description" : "Henter informasjon om en aktør", - "operationId" : "getAktoerInfo", - "parameters" : [ { - "name" : "aktoerId", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/AktoerIdDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer basisinformasjon om en aktør og hvilke fagsaker vedkommede har i fpsak.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AktoerInfoDto" - } - } - } - } - } - } - }, - "/api/fagsak/endre-utland" : { - "post" : { - "tags" : [ "fagsak" ], - "summary" : "Endre merking fra tidligere verdi.", - "description" : "Endre merking (utland) av sak", - "operationId" : "endreFagsakMerking", - "requestBody" : { - "description" : "Saksnummer og markering", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/EndreUtlandMarkeringDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/fagsak" : { - "get" : { - "tags" : [ "fagsak" ], - "description" : "Hent fagsak for saksnummer", - "operationId" : "hentFagsak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer fagsak", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/FagsakBackendDto" - } - } - } - }, - "404" : { - "description" : "Fagsak ikke tilgjengelig" - } - } - } - }, - "/api/fagsak/status" : { - "get" : { - "tags" : [ "fagsak" ], - "summary" : "Returnerer link til enten samme (hvis ikke ferdig) eller redirecter til /fagsak dersom asynkrone operasjoner er ferdig.", - "description" : "Url for å polle på fagsak mens behandlingprosessen pågår i bakgrunnen(asynkront)", - "operationId" : "hentFagsakMidlertidigStatus", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - }, { - "name" : "gruppe", - "in" : "query", - "schema" : { - "$ref" : "#/components/schemas/ProsessTaskGruppeIdDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer Status", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AsyncPollingStatus" - } - } - } - }, - "303" : { - "description" : "Pågående prosesstasks avsluttet", - "headers" : { - "Location" : { - "style" : "simple" - } - } - }, - "418" : { - "description" : "ProsessTasks har feilet", - "headers" : { - "Location" : { - "style" : "simple" - } - }, - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AsyncPollingStatus" - } - } - } - } - } - } - }, - "/api/fagsak/full" : { - "get" : { - "tags" : [ "fagsak" ], - "description" : "Hent full fagsaksaksinformasjon for saksnummer", - "operationId" : "hentFullFagsak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer fagsak", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/FagsakFullDto" - } - } - } - }, - "404" : { - "description" : "Fagsak ikke tilgjengelig" - } - } - } - }, - "/api/fagsak/notat" : { - "post" : { - "tags" : [ "fagsak" ], - "summary" : "Lagre nytt notat.", - "description" : "Lagre nytt notat for sak", - "operationId" : "lagreFagsakNotat", - "requestBody" : { - "description" : "Saksnummer og nytt notat", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/LagreFagsakNotatDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/fagsak/sok" : { - "post" : { - "tags" : [ "fagsak" ], - "summary" : "Spesifikke saker kan søkes via saksnummer. Oversikt over saker knyttet til en bruker kan søkes via fødselsnummer eller d-nummer.", - "description" : "Søk etter saker på saksnummer eller fødselsnummer", - "operationId" : "sokFagsaker", - "requestBody" : { - "description" : "Søkestreng kan være saksnummer, fødselsnummer eller D-nummer.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SokefeltDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FagsakSøkDto" - } - } - } - } - } - } - } - }, - "/api/behandling/familiehendelse" : { - "get" : { - "tags" : [ "familiehendelse" ], - "description" : "Hent informasjon om familiehendelse til grunn for ytelse", - "operationId" : "getAvklartFamiliehendelseDto", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer info om familiehendelse, null hvis ikke eksisterer (GUI støtter ikke NOT_FOUND p.t.)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/FamiliehendelseDto" - } - } - } - } - } - } - }, - "/api/behandling/familiehendelse/v2" : { - "get" : { - "tags" : [ "familiehendelse" ], - "description" : "Hent informasjon om familiehendelse til grunn for ytelse", - "operationId" : "getFamiliehendelseGrunnlagDto", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer hele FamilieHendelse grunnlaget", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/FamilieHendelseGrunnlagDto" - } - } - } - } - } - } - }, - "/api/fordel/fagsak/informasjon" : { - "post" : { - "tags" : [ "fordel" ], - "summary" : "Varsel om en ny journalpost som skal behandles i systemet.", - "description" : "Informasjon om en fagsak", - "operationId" : "fagsak", - "requestBody" : { - "description" : "Saksnummeret det skal hentes saksinformasjon om", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/FagsakInfomasjonDto" - } - } - } - } - } - } - }, - "/api/fordel/finnFagsaker/v2" : { - "post" : { - "tags" : [ "fordel" ], - "summary" : "Finn alle saker for en bruker", - "description" : "Finn alle saker for en bruker.", - "operationId" : "finnAlleSakerForBrukerV2", - "requestBody" : { - "description" : "AktørId", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AktørIdDto" - } - } - } - }, - "responses" : { - "200" : { - "description" : "Liste av alle brukers saker, ellers tom liste", - "content" : { - "application/json" : { - "schema" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SakInfoV2Dto" - } - } - } - } - } - } - } - }, - "/api/fordel/infoOmSakInntektsmelding" : { - "post" : { - "tags" : [ "fordel" ], - "description" : "Returnerer informasjon om sak til fpinntektsmelding for å avgjøre om innsending av inntektsmelding er tillatt", - "operationId" : "infoOmSakForInntektsmelding", - "requestBody" : { - "description" : "AktørId", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SakInntektsmeldingDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/fordel/fagsak/knyttJournalpost" : { - "post" : { - "tags" : [ "fordel" ], - "summary" : "Før en journalpost journalføres på en fagsak skal fagsaken oppdateres med journalposten.", - "description" : "Knytt journalpost til fagsak.", - "operationId" : "knyttSakOgJournalpost", - "requestBody" : { - "description" : "Saksnummer og JournalpostId som skal knyttes sammen", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/JournalpostKnyttningDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/fordel/journalpost" : { - "post" : { - "tags" : [ "fordel" ], - "summary" : "Varsel om en ny journalpost som skal behandles i systemet.", - "description" : "Ny journalpost skal behandles.", - "operationId" : "mottaJournalpost", - "requestBody" : { - "description" : "Krever saksnummer, journalpostId og behandlingstemaOffisiellKode", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/JournalpostMottakDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/fordel/fagsak/opprett" : { - "post" : { - "tags" : [ "fordel" ], - "summary" : "Varsel om en ny journalpost som skal behandles i systemet.", - "description" : "Ny journalpost skal behandles.", - "operationId" : "opprettSak", - "requestBody" : { - "description" : "Oppretter fagsak", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OpprettSakDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } - } - } - }, - "deprecated" : true - } - }, - "/api/fordel/fagsak/opprett/v2" : { - "post" : { - "tags" : [ "fordel" ], - "summary" : "Varsel om en ny journalpost som skal behandles i systemet.", - "description" : "Ny journalpost skal behandles.", - "operationId" : "opprettSakv2", - "requestBody" : { - "description" : "Oppretter fagsak", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OpprettSakV2Dto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } - } - } - } - } - }, - "/api/fordel/sakInntektsmelding" : { - "post" : { - "tags" : [ "fordel" ], - "description" : "Sjekker om det finnes en sak som potensielt kan knyttes til inntektsmelding med gitt startdato", - "operationId" : "sjekkSakForInntektsmelding", - "requestBody" : { - "description" : "AktørId", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SakInntektsmeldingDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/fordel/vurderFagsystem" : { - "post" : { - "tags" : [ "fordel" ], - "description" : "Informasjon om en fagsak", - "operationId" : "vurderFagsystem", - "requestBody" : { - "description" : "Krever behandlingstemaOffisiellKode", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/VurderFagsystemDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BehandlendeFagsystemDto" - } - } - } - } - } - } - }, - "/api/fordel/klageinstans" : { - "post" : { - "tags" : [ "fordel" ], - "description" : "Informasjon om en fagsak klageinstansrelatert", - "operationId" : "vurderForKlageinstans", - "requestBody" : { - "description" : "Krever behandlingstemaOffisiellKode", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/VurderFagsystemDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/BehandlendeFagsystemDto" - } - } - } - } - } - } - }, - "/api/formidling/ressurser" : { - "get" : { - "tags" : [ "formidling" ], - "description" : "Hent behandling med tilhørende ressurslenker for bruk i formidling", - "operationId" : "hentBehandlingDtoForBrev", - "parameters" : [ { - "name" : "behandlingId", - "in" : "query", - "description" : "UUID for behandlingen", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/BehandlingIdDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json;charset=utf-8" : { } - } - } - } - } - }, - "/api/formidling/motattDatoSøknad" : { - "get" : { - "tags" : [ "formidling" ], - "description" : "Hent gjeldende mottatt dato for søknad", - "operationId" : "mottattDatoSøknad", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json;charset=utf-8" : { } - } - } - } - } - }, - "/api/formidling/utsattstart" : { - "get" : { - "tags" : [ "formidling" ], - "description" : "Hent informasjon om sak er utsatt fra start og evt ny dato", - "operationId" : "utsattStartdato", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json;charset=utf-8" : { } - } - } - } - } - }, - "/api/formidling/arbeidInntektsmelding/inntektsmelding-status" : { - "get" : { - "tags" : [ "formidling" ], - "summary" : "Returnerer status for inntektsmeldinger for behandling for formidlingsbruk.", - "description" : "Hent status for inntektsmeldinger for angitt behandling for formidlingsbruk", - "operationId" : "hentStatusInntektsmeldinger", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/formidling/beregningsgrunnlag/v2" : { - "get" : { - "tags" : [ "formidling" ], - "summary" : "Returnerer beregningsgrunnlag for behandling for formidlingsbruk.", - "description" : "Hent beregningsgrunnlag for angitt behandling for formidlingsbruk", - "operationId" : "hentBeregningsgrunnlagFormidlingV2", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/formidling/tilkjentytelse/dagytelse" : { - "get" : { - "tags" : [ "formidling" ], - "summary" : "Returnerer tilkjent ytelse (dagytelse) for behandling for formidlingsbruk.", - "description" : "Hent tilkjent ytelse (dagytelse) for angitt behandling for formidlingsbruk", - "operationId" : "hentTilkjentYtelseDagytelseFormidling", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/formidling/tilkjentytelse/engangsstonad" : { - "get" : { - "tags" : [ "formidling" ], - "summary" : "Returnerer tilkjent ytelse (engangsstønad) for behandling for formidlingsbruk.", - "description" : "Hent tilkjent ytelse (engangsstønad) for angitt behandling for formidlingsbruk", - "operationId" : "hentTilkjentYtelseEngangsstonadFormidling", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningBehandling/fjernOverstyrtGrunnlagSvpBehandling" : { - "post" : { - "tags" : [ "FORVALTNING-behandling" ], - "description" : "Fjerner overstyrt grunnlag for svp behandling", - "operationId" : "fjernOverstyrtGrunnlagSvpBehandling", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/BehandlingIdDto" - } - } ], - "responses" : { - "200" : { - "description" : "Overstyrt grunnlag for behandling er fjernet.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Oppgitt behandlinguuid er ukjent, ikke under behandling, svangerskapspenger eller avsluttet." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningBehandling/henleggBehandlingTeknisk" : { - "post" : { - "tags" : [ "FORVALTNING-behandling" ], - "description" : "Ta en gitt behandling av vent og henlegg", - "operationId" : "henleggBehandlingTeknisk", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "200" : { - "description" : "Avslutter fagsak.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Ukjent fagsak oppgitt." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningBehandling/henleggVentendeBehandling" : { - "post" : { - "tags" : [ "FORVALTNING-behandling" ], - "description" : "Ta alle behandlinger for sak av vent og henlegg", - "operationId" : "henleggVentendeBehandling", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Avslutter fagsak.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Ukjent fagsak oppgitt." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningBehandling/henleggÅpenFørstegangsbehandlingOgOpprettNy" : { - "post" : { - "tags" : [ "FORVALTNING-behandling" ], - "description" : "Henlegger en åpen førstegangsbehandling og oppretter ny basert på siste søknad", - "operationId" : "henleggÅpenFørstegangsbehandlingOgOpprettNy", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Ny behandling er opprettet.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Oppgitt fagsak er ukjent, ikke under behandling, eller engangsstønad." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningBehandling/behandlingsresultat" : { - "post" : { - "tags" : [ "FORVALTNING-behandling" ], - "description" : "Oppdaterer vedtaksbrev typen på et eksisterende behandlingsresultat", - "operationId" : "oppdaterBehandlingresultatMedVedtaksbrevType", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/BehandlingIdDto" - } - }, { - "name" : "vedtaksbrev", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "enum" : [ "AUTOMATISK", "FRITEKST", "INGEN", "-" ] - } - }, { - "name" : "dryRun", - "in" : "query", - "required" : true, - "schema" : { - "type" : "boolean" - } - } ], - "responses" : { - "200" : { - "description" : "Oppdatert behandlingsresultat.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Oppgitt behandlinguuid er ukjent" - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningBehandling/startNyRevurderingBerørtBehandling" : { - "post" : { - "tags" : [ "FORVALTNING-behandling" ], - "description" : "Starter ny revurdering (berørt)", - "operationId" : "opprettNyRevurderingBerørtBehandling", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Ny behandling er opprettet.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Oppgitt fagsak er ukjent, ikke under behandling, eller engangsstønad." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningBehandling/reInnsendInntektsmelding" : { - "post" : { - "tags" : [ "FORVALTNING-behandling" ], - "description" : "Angi hvilken inntektsmelding som skal brukes ved samtidig mottatt. Send inn hvis åpen behandling.", - "operationId" : "reInnsendInntektsmelding", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string" - } - }, { - "name" : "journalpostid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string" - } - } ], - "responses" : { - "200" : { - "description" : "Inntektsmelding reinnsendt.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Oppgitt fagsak er ukjent, ikke under behandling, eller engangsstønad." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/behandlingskontroll/taskFortsettBehandling" : { - "post" : { - "tags" : [ "FORVALTNING-behandlingskontroll" ], - "summary" : "Oppretter en FortsettBehandlingTask som vil prosessere behandlingen. For håndtering av tilfelle der behandlingen har endt i limbo uten automtisk gjenoppliving.", - "description" : "DRIFT: Opprett en manuell FortsettBehandlingTask for en behandling.", - "operationId" : "lagFortsettBehandling", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningBeregning/hentBeregningsgrunnlagInput" : { - "post" : { - "tags" : [ "FORVALTNING-beregning" ], - "description" : "Henter input for beregning som sendes til kalkulus", - "operationId" : "hentBeregningsgrunnlagInput", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningBeregning/hentBeregningsgrunnlagInputLegacy" : { - "post" : { - "tags" : [ "FORVALTNING-beregning" ], - "description" : "Henter input for beregning (legacy, avvikles når vi ikke lenger beregner noen saker i fpsak)", - "operationId" : "hentBeregningsgrunnlagInputLegacy", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningBeregning/satsHentGjeldende" : { - "get" : { - "tags" : [ "FORVALTNING-beregning" ], - "description" : "Hent liste av gjeldende eller nyeste sats", - "operationId" : "hentGjeldendeSatser", - "responses" : { - "200" : { - "description" : "Gjeldende satser", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BeregningSatsDto" - } - } - } - } - } - } - } - }, - "/api/forvaltningBeregning/sjekkDiffInntektRegisterMotInntektsmelding" : { - "post" : { - "tags" : [ "FORVALTNING-beregning" ], - "description" : "Henter ut behandlinger med diff på inntekt register og IM for en periode", - "operationId" : "hentInfOmBehandlingerMedDiff", - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningBeregning/hentMigreringInput" : { - "post" : { - "tags" : [ "FORVALTNING-beregning" ], - "description" : "Migrerer en sak over til kalkulus", - "operationId" : "hentMigreringInput", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningBeregning/hentRefusjonskravperioderInput" : { - "post" : { - "tags" : [ "FORVALTNING-beregning" ], - "description" : "Henter input for beregning", - "operationId" : "hentRefusjonskravperioderInput", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningBeregning/satsLagreNy" : { - "post" : { - "tags" : [ "FORVALTNING-beregning" ], - "description" : "Lagre ny sats", - "operationId" : "lagreNySats", - "parameters" : [ { - "name" : "satsType", - "in" : "query", - "required" : true, - "schema" : { - "pattern" : "^(?:ENGANG|GRUNNBELØP|GSNITT)$", - "type" : "string", - "enum" : [ "ENGANG", "GRUNNBELØP", "GSNITT" ] - } - }, { - "name" : "satsFom", - "in" : "query", - "description" : "YYYY-MM-DD", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "satsTom", - "in" : "query", - "description" : "YYYY-MM-DD", - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "satsVerdi", - "in" : "query", - "description" : "Minumum satsverdi er satt til 75000", - "required" : true, - "schema" : { - "maximum" : 9223372036854775807, - "minimum" : 75000, - "type" : "integer", - "format" : "int64", - "default" : 75000 - } - } ], - "responses" : { - "200" : { - "description" : "Gjeldende satser", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BeregningSatsDto" - } - } - } - } - } - } - } - }, - "/api/forvaltningBeregning/migrerSak" : { - "post" : { - "tags" : [ "FORVALTNING-beregning" ], - "description" : "Migrerer en sak over til kalkulus", - "operationId" : "migrerSak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningBeregning/stoppRefusjon" : { - "post" : { - "tags" : [ "FORVALTNING-beregning" ], - "description" : "Endrer refusjon på inntektsmelding for en gitt journalpost", - "operationId" : "opphørRefusjonInntektsmelding", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/EndreInntektsmeldingDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningBeregning/opprettGreguleringEnkeltSak" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Steng fagsak og flytt til Infotrygd", - "operationId" : "opprettGreguleringEnkeltSak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Flyttet fagsak.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Ukjent fagsak oppgitt." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningFagsak/avsluttFagsakUtenBehandling" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Avslutt fagsak uten noen behandlinger", - "operationId" : "avsluttFagsakUtenBehandling", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Avslutter fagsak.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Ukjent fagsak oppgitt." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningFagsak/fagsak/flyttJournalpostFagsak" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Knytt journalpost til fagsak. Før en journalpost journalføres på en fagsak skal fagsaken oppdateres med journalposten.", - "operationId" : "flyttJournalpostTilFagsak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string" - } - }, { - "name" : "journalpostid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string" - } - } ], - "responses" : { - "200" : { - "description" : "Task satt til ferdig." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningFagsak/gjenAapneFagsakForVidereBruk" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Gjenåpner fagsak for videre bruk", - "operationId" : "gjenaapneFagsak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Fagsak stengt.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Ukjent fagsak oppgitt." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningFagsak/fagsak/{fagsakId}" : { - "get" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Finner fagsak informasjon for et gitt fagsakId", - "operationId" : "hentFagsakInformasjon", - "parameters" : [ { - "name" : "fagsakId", - "in" : "path", - "required" : true, - "schema" : { - "type" : "integer", - "format" : "int64" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningFagsak/fagsak/identhistorikk" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Finner identhistorikk gitt en aktørId eller personident", - "operationId" : "identhistorikk", - "requestBody" : { - "description" : "Søkestreng kan være aktørId, fødselsnummer eller D-nummer.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SokefeltDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningFagsak/kobleFraFagsaker" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Kobler fra hverandre angitte fagsaker", - "operationId" : "kobleFraFagsaker", - "parameters" : [ { - "name" : "saksnummer1", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string" - } - }, { - "name" : "saksnummer2", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string" - } - } ], - "responses" : { - "200" : { - "description" : "Fagsaker frakoblet.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Ukjent fagsak oppgitt." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningFagsak/kobleSammenFagsaker" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Kobler sammen angitte fagsaker", - "operationId" : "kobleSammenFagsaker", - "parameters" : [ { - "name" : "saksnummer1", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string" - } - }, { - "name" : "saksnummer2", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string" - } - } ], - "responses" : { - "200" : { - "description" : "Fagsaker koblet.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Ukjent fagsak oppgitt." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningFagsak/fagsak/oppdaterAktoerId" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Setter ny aktørid for bruker og oppdaterer nødvendige tabeller", - "operationId" : "oppdaterAktoerId", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ByttAktørRequestDto" - } - } - }, - "required" : true - }, - "responses" : { - "200" : { - "description" : "Task satt til ferdig." - }, - "400" : { - "description" : "AktørId er uendret." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningFagsak/fagsak/oppdaterAktoerIdFraPdl" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Henter ny aktørid for bruker og oppdaterer nødvendige tabeller", - "operationId" : "oppdaterAktoerIdFraPdl", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Task satt til ferdig." - }, - "400" : { - "description" : "Saksnummer er ugyldig." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningFagsak/fagsak/oppdater-personer-tilgang" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Avslutt fagsak uten noen behandlinger", - "operationId" : "oppdaterPersongalleriForTilgang", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Avslutter fagsak.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Ukjent fagsak oppgitt." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningFagsak/settFagsakFraAvsluttetTilUnderBehandling" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Setter status for fagsak fra avsluttet til under behandling", - "operationId" : "settFagsakFraAvsluttetTilUnderBehandling", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Fagsak endret.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Ukjent fagsak oppgitt, eller fagsak i feil tilstand" - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningFagsak/stengFagsakForVidereBruk" : { - "post" : { - "tags" : [ "FORVALTNING-fagsak" ], - "description" : "Stenger fagsak for videre bruk", - "operationId" : "stengFagsak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Fagsak stengt.", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Ukjent fagsak oppgitt." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningOppdrag/kvitter-oppdrag-ok" : { - "post" : { - "tags" : [ "FORVALTNING-oppdrag" ], - "description" : "Kvitterer oppdrag manuelt. Brukes kun når det er avklart at oppdrag har gått OK, og kvittering ikke kommer til å komme fra Oppdragsystemet. Sjekk med Team Ukelønn hvis i tvil", - "operationId" : "kvitterOK", - "requestBody" : { - "description" : "Identifikasjon av oppdrag som kvitteres OK. Sett oppdaterProsessTask til false kun når prosesstasken allerede er flyttet til FERDIG", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/KvitteringDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningOppdrag/patch-k27" : { - "post" : { - "tags" : [ "FORVALTNING-oppdrag" ], - "description" : "Patcher oppdrag som har feil i maks dato ved refusjon til AG, og sender over til oppdragsysstemet. Sjekk med Team FP hvis i tvil. Viktig at det sjekkes i Oppdragsystemet etter oversending at alt har gått som forventet", - "operationId" : "patchK27", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/K27PatchDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningOppdrag/patch-oppdrag" : { - "post" : { - "tags" : [ "FORVALTNING-oppdrag" ], - "description" : "Patcher oppdrag som har feilet fordi fpsak har generert det på feil måte, og sender over til oppdragsysstemet. Sjekk med Team Ukelønn hvis i tvil. Viktig at det sjekkes i Oppdragsystemet etter oversending at alt har gått som forventet", - "operationId" : "patchOppdrag", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OppdragPatchDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningOppdrag/patch-oppdrag-hardt-og-rekjoer" : { - "post" : { - "tags" : [ "FORVALTNING-oppdrag" ], - "description" : "Som /patch-oppdrag, men kan også patche når behandling er ferdig. Sjekk med Team Foreldrepenger hvis i tvil. Viktig at det sjekkes i Oppdragsystemet etter oversending at alt har gått som forventet", - "operationId" : "patchOppdragOgRekjør", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OppdragPatchDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningOpptjening/hentOppgittOpptjening" : { - "get" : { - "tags" : [ "FORVALTNING-opptjening" ], - "description" : "Hent oppgitt opptjening for behandling", - "operationId" : "hentOppgittOpptjening", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OppgittOpptjeningDto" - } - } - } - } - } - } - }, - "/api/forvaltningOpptjening/leggTilOppgittFrilans" : { - "post" : { - "tags" : [ "FORVALTNING-opptjening" ], - "description" : "Legg til innslag for oppgitt frilansaktivitet", - "operationId" : "leggTilOppgittFrilans", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - }, { - "name" : "frilansFom", - "in" : "query", - "description" : "YYYY-MM-DD", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "frilansTom", - "in" : "query", - "description" : "YYYY-MM-DD", - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "stpOpptjening", - "in" : "query", - "description" : "YYYY-MM-DD", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningOpptjening/leggTilOppgittNæring" : { - "post" : { - "tags" : [ "FORVALTNING-opptjening" ], - "description" : "Legg til innslag for oppgitt næring som fisker", - "operationId" : "leggTilOppgittNæring", - "requestBody" : { - "content" : { - "application/x-www-form-urlencoded" : { - "schema" : { - "required" : [ "behandlingUuid", "fom", "typeKode" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "typeKode" : { - "pattern" : "^(?:ANNEN|DAGMAMMA|FISKE|JORDBRUK_SKOGBRUK)$", - "type" : "string", - "enum" : [ "ANNEN", "DAGMAMMA", "FISKE", "JORDBRUK_SKOGBRUK" ] - }, - "fom" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "description" : "YYYY-MM-DD" - }, - "tom" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "description" : "YYYY-MM-DD" - }, - "orgnummer" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "regnskapNavn" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "regnskapTlf" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "nyoppstartet" : { - "type" : "string", - "default" : "NEI", - "enum" : [ "JA", "NEI" ] - }, - "varigEndring" : { - "type" : "string", - "default" : "NEI", - "enum" : [ "JA", "NEI" ] - }, - "nyIArbeidslivet" : { - "type" : "string", - "default" : "NEI", - "enum" : [ "JA", "NEI" ] - }, - "erRelasjon" : { - "type" : "string", - "default" : "NEI", - "enum" : [ "JA", "NEI" ] - }, - "endringsDato" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "description" : "YYYY-MM-DD" - }, - "begrunnelse" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "bruttoBeløp" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningOpptjening/leggTilOppgittNæringFjerneAndreOppgitteOrgnummer" : { - "post" : { - "tags" : [ "FORVALTNING-opptjening" ], - "description" : "Legg til innslag for oppgitt næring og fjern andre orgnummer", - "operationId" : "leggTilOppgittNæringFjerneAndreOppgitteOrgnummer", - "requestBody" : { - "content" : { - "application/x-www-form-urlencoded" : { - "schema" : { - "required" : [ "behandlingUuid", "fom", "typeKode" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "typeKode" : { - "pattern" : "^(?:ANNEN|DAGMAMMA|FISKE|JORDBRUK_SKOGBRUK)$", - "type" : "string", - "enum" : [ "ANNEN", "DAGMAMMA", "FISKE", "JORDBRUK_SKOGBRUK" ] - }, - "fom" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "description" : "YYYY-MM-DD" - }, - "tom" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "description" : "YYYY-MM-DD" - }, - "orgnummer" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "regnskapNavn" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "regnskapTlf" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "nyoppstartet" : { - "type" : "string", - "default" : "NEI", - "enum" : [ "JA", "NEI" ] - }, - "varigEndring" : { - "type" : "string", - "default" : "NEI", - "enum" : [ "JA", "NEI" ] - }, - "nyIArbeidslivet" : { - "type" : "string", - "default" : "NEI", - "enum" : [ "JA", "NEI" ] - }, - "erRelasjon" : { - "type" : "string", - "default" : "NEI", - "enum" : [ "JA", "NEI" ] - }, - "endringsDato" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "description" : "YYYY-MM-DD" - }, - "begrunnelse" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "bruttoBeløp" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningOpptjening/reInnhentAlleIAYRegisterData" : { - "post" : { - "tags" : [ "FORVALTNING-opptjening" ], - "description" : "Tvinger full registeroppdatering av IAY på åpen behandling", - "operationId" : "reInnhentAlleIAYRegisterData", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningSteg/fjernFHValgHoppTilbake" : { - "post" : { - "tags" : [ "FORVALTNING-steg-hopp" ], - "description" : "Fjerner overstyring av familiehendelse og hopper tilbake til KOFAK", - "operationId" : "fjernOverstyrtFH", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningSteg/fjernStartpunkt" : { - "post" : { - "tags" : [ "FORVALTNING-steg-hopp" ], - "description" : "Fjerner startpunkt i revurdering og går tilbake til KOFAK", - "operationId" : "fjernStartpunkt", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningSteg/generell" : { - "post" : { - "tags" : [ "FORVALTNING-steg-hopp" ], - "description" : "Generelt tilbakehopp", - "operationId" : "hoppTilbake", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - }, { - "name" : "målSteg", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "enum" : [ "REGSØK", "INSØK", "VURDERKOMPLETT", "INREG", "VURDERKOMPLETTBEH", "INREG_AVSL", "KOFAK", "VURDEROP", "VURDERMV", "VURDERSAMLET", "BERYT", "FORBRES", "SIMOPP", "VURDER_FARESIGNALER", "FORVEDSTEG", "FVEDSTEG", "IVEDSTEG", "VURDER_FK_UI", "KLAGEUI", "VURDER_FK_OI", "KLAGEOI", "ANKE", "ANKE_MERKNADER", "VURDINNSYN", "INPER", "VURDERSFV", "DEKNINGSGRAD", "FORS_BESTEBEREGNING", "KONTROLLER_OMSORG_RETT", "FAKTA_LØPENDE_OMSORG", "GRUNNLAG_UTTAK", "KOFAKUT", "KONTROLLER_AKTIVITETSKRAV", "FAKTA_UTTAK", "FAKTA_UTTAK_DOKUMENTASJON", "VURDER_TLRG", "VURDERSPV", "VRSLREV", "VURDERSRB", "KO_ARB_IM", "VURDER_ARB_FORHOLD_PERMISJON", "VURDER_OPPTJ_PERIODE", "VURDER_OPPTJ_FAKTA", "VURDER_OPPTJ", "FASTSETT_STP_BER", "KOFAKBER", "FORS_BERGRUNN", "FORS_BERGRUNN_2", "VURDER_VILKAR_BERGRUNN", "VURDER_REF_BERGRUNN", "FORDEL_BERGRUNN", "FAST_BERGRUNN", "KOFAK_LOP_MEDL", "SØKNADSFRIST_FP", "VURDER_UTTAK", "VURDER_TILBAKETREKK", "BERYT_OPPDRAG", "KOARB", "VURDER_FORUTGÅENDE_MEDLEMSKAPVILKÅR", "VULOMED" ] - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningSteg/5085" : { - "post" : { - "tags" : [ "FORVALTNING-steg-hopp" ], - "description" : "Hopp tilbake til 5085", - "operationId" : "hoppTilbakeTil5085", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningSvangerskapspenger/beregnTilretteleggingsperioder" : { - "post" : { - "tags" : [ "FORVALTNING-svangerskapspenger" ], - "description" : "Finner saker som kan ha fått beregnet feil feriepenger", - "operationId" : "beregnTilretteleggingsperioder", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningSoknad/endreTermindato" : { - "post" : { - "tags" : [ "FORVALTNING-søknad" ], - "description" : "Oppdater termindato åpen/siste behandling ifm prematur situasjons", - "operationId" : "endreTermindato", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer", - "required" : true, - "schema" : { - "type" : "string" - } - }, { - "name" : "termindato", - "in" : "query", - "description" : "Termindato (YYYY-MM-DD)", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "utstedtdato", - "in" : "query", - "description" : "Utstedt dato (YYYY-MM-DD)", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - } ], - "requestBody" : { - "content" : { - "application/x-www-form-urlencoded" : { - "schema" : { - "type" : "object", - "properties" : { - "begrunnelse" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string", - "description" : "Begrunnelse, fx FAGSYSTEM-nr" - } - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningSoknad/manglendeFødselsdato" : { - "post" : { - "tags" : [ "FORVALTNING-søknad" ], - "description" : "Legg til fødsels/dødsdato på åpen/siste behandling", - "operationId" : "manglendeFødselsdato", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer", - "required" : true, - "schema" : { - "type" : "string" - } - }, { - "name" : "fødselsdato", - "in" : "query", - "description" : "Fødselsdato (YYYY-MM-DD)", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "dødsdato", - "in" : "query", - "description" : "Dødsdato (YYYY-MM-DD)", - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - } ], - "requestBody" : { - "content" : { - "application/x-www-form-urlencoded" : { - "schema" : { - "type" : "object", - "properties" : { - "begrunnelse" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string", - "description" : "Begrunnelse, fx FAGSYSTEM-nr" - } - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningSoknad/manglendeTermindato" : { - "post" : { - "tags" : [ "FORVALTNING-søknad" ], - "description" : "Legg til terminbekreftelse på åpen/siste behandling ifm prematur situasjons", - "operationId" : "manglendeTermindato", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer", - "required" : true, - "schema" : { - "type" : "string" - } - }, { - "name" : "termindato", - "in" : "query", - "description" : "Termindato (YYYY-MM-DD)", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "utstedtdato", - "in" : "query", - "description" : "Utstedt dato (YYYY-MM-DD)", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - } ], - "requestBody" : { - "content" : { - "application/x-www-form-urlencoded" : { - "schema" : { - "type" : "object", - "properties" : { - "begrunnelse" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string", - "description" : "Begrunnelse, fx FAGSYSTEM-nr" - } - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningSoknad/settNorskIdentAnnenpart" : { - "post" : { - "tags" : [ "FORVALTNING-søknad" ], - "description" : "Oppdater annen part men kun hvis oppgitt = bruker", - "operationId" : "settNorskIdentAnnenpart", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer", - "required" : true, - "schema" : { - "type" : "string" - } - }, { - "name" : "identAnnenPart", - "in" : "query", - "description" : "FNR annen part", - "required" : true, - "schema" : { - "type" : "string" - } - } ], - "requestBody" : { - "content" : { - "application/x-www-form-urlencoded" : { - "schema" : { - "type" : "object", - "properties" : { - "begrunnelse" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string", - "description" : "Begrunnelse, fx FAGSYSTEM-nr" - } - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningSoknad/settUtlandskIdentAnnenpart" : { - "post" : { - "tags" : [ "FORVALTNING-søknad" ], - "description" : "Oppdater annen part men kun hvis oppgitt = bruker", - "operationId" : "settUtlandskIdentAnnenpart", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer", - "required" : true, - "schema" : { - "type" : "string" - } - }, { - "name" : "identAnnenPart", - "in" : "query", - "description" : "FNR annen part", - "required" : true, - "schema" : { - "type" : "string" - } - } ], - "requestBody" : { - "content" : { - "application/x-www-form-urlencoded" : { - "schema" : { - "type" : "object", - "properties" : { - "begrunnelse" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string", - "description" : "Begrunnelse, fx FAGSYSTEM-nr" - } - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltningTeknisk/sett-oppgave-ferdigstilt" : { - "post" : { - "tags" : [ "FORVALTNING-teknisk" ], - "description" : "Ferdigstill Gosys-oppgave", - "operationId" : "ferdigstillOppgave_1", - "requestBody" : { - "description" : "Oppgave som skal settes ferdig", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ProsessTaskIdDto" - } - } - }, - "required" : true - }, - "responses" : { - "200" : { - "description" : "Oppgave satt til ferdig." - }, - "400" : { - "description" : "Fant ikke aktuell oppgave." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningTeknisk/fjern-fagsak-prosesstask-avsluttet" : { - "post" : { - "tags" : [ "FORVALTNING-teknisk" ], - "description" : "Fjern fagsakprosesstask for avsluttede behandlinger", - "operationId" : "fjernFagsakProsesstaskAvsluttetBehandling", - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningTeknisk/hent-alle-aapne-oppgaver" : { - "post" : { - "tags" : [ "FORVALTNING-teknisk" ], - "description" : "Ferdigstill Gosys-oppgave", - "operationId" : "hentAlleÅpneOppgaver", - "responses" : { - "200" : { - "description" : "Oppgave satt til ferdig." - }, - "400" : { - "description" : "Fant ikke aktuell oppgave." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningTeknisk/sett-aksjonspunkt-avbrutt" : { - "post" : { - "tags" : [ "FORVALTNING-teknisk" ], - "description" : "Setter åpent aksjonspunkt til status AVBR", - "operationId" : "setAksjonspunktAvbrutt", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - }, { - "name" : "aksjonspunktKode", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string" - } - } ], - "responses" : { - "200" : { - "description" : "Aksjonspunkt avbrutt." - }, - "400" : { - "description" : "Fant ikke aktuelt aksjonspunkt." - }, - "500" : { - "description" : "Feilet pga ukjent feil." - } - } - } - }, - "/api/forvaltningTeknisk/synk-postnummer" : { - "post" : { - "tags" : [ "FORVALTNING-teknisk" ], - "description" : "Hente og lagre kodeverk Postnummer", - "operationId" : "synkPostnummer", - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningUttak/beregn-kontoer" : { - "post" : { - "tags" : [ "FORVALTNING-uttak" ], - "description" : "Beregner kontoer basert på data fra behandlingen. Husk å revurdere begge foreldre", - "operationId" : "beregnKontoer", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "text/plain" : { } - } - } - } - } - }, - "/api/forvaltningUttak/startdato" : { - "post" : { - "tags" : [ "FORVALTNING-uttak" ], - "description" : "Setter overstyrt startdato for saken (ved manglende uttak)", - "operationId" : "settStartdato", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "requestBody" : { - "content" : { - "*/*" : { - "schema" : { - "required" : [ "startdato" ], - "type" : "object", - "properties" : { - "startdato" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "description" : "YYYY-MM-DD" - } - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "text/plain" : { } - } - } - } - } - }, - "/api/forvaltningUttrekk/avstemOverlappForPeriode" : { - "post" : { - "tags" : [ "FORVALTNING-uttrekk" ], - "description" : "Lagrer task for å finne overlapp. Resultat i overlapp_vedtak", - "operationId" : "avstemOverlappForPeriode", - "parameters" : [ { - "name" : "fom", - "in" : "query", - "description" : "fom (YYYY-MM-DD)", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "tom", - "in" : "query", - "description" : "tom (YYYY-MM-DD)", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "tidsrom", - "in" : "query", - "description" : "tidsrom for avstemming av 1 dag (sekunder)", - "required" : true, - "schema" : { - "maximum" : 3600, - "minimum" : 0, - "type" : "integer", - "format" : "int32" - } - }, { - "name" : "vedtak", - "in" : "query", - "description" : "true gir saker med vedtak fattet i periode, false gir saker opprettet i periode", - "schema" : { - "type" : "boolean" - } - } ], - "requestBody" : { - "content" : { - "application/x-www-form-urlencoded" : { - "schema" : { - "required" : [ "key" ], - "type" : "object", - "properties" : { - "key" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string", - "description" : "key (secret)" - } - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningUttrekk/avstemSakOverlapp" : { - "post" : { - "tags" : [ "FORVALTNING-uttrekk" ], - "description" : "Lagrer task for å finne overlapp. Resultat i app-logg", - "operationId" : "avstemSakForOverlapp", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningUttrekk/flyttBehandlingTilSteg" : { - "post" : { - "tags" : [ "FORVALTNING-uttrekk" ], - "description" : "Flytt behandling til steg", - "operationId" : "flyttBehandlingTilSteg", - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningUttrekk/hentAvstemtSakOverlapp" : { - "get" : { - "tags" : [ "FORVALTNING-uttrekk" ], - "description" : "Prøver å finne overlapp og returnere resultat", - "operationId" : "hentAvstemtSakOverlappTrex", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningUttrekk/infotrygdRestanseFP" : { - "get" : { - "tags" : [ "FORVALTNING-uttrekk" ], - "description" : "Restanse FP", - "operationId" : "infotrygdRestanseFP", - "responses" : { - "200" : { - "description" : "Restanse", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InfotrygdRestanseDto" - } - } - } - } - } - } - } - }, - "/api/forvaltningUttrekk/infotrygdRestanseSVP" : { - "get" : { - "tags" : [ "FORVALTNING-uttrekk" ], - "description" : "Restanse SVP", - "operationId" : "infotrygdRestanseSVP", - "responses" : { - "200" : { - "description" : "Restanse", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InfotrygdRestanseDto" - } - } - } - } - } - } - } - }, - "/api/forvaltningUttrekk/listFagsakUtenBehandling" : { - "get" : { - "tags" : [ "FORVALTNING-uttrekk" ], - "description" : "Hent liste av saknumre for fagsak uten noen behandlinger", - "operationId" : "listFagsakUtenBehandling", - "responses" : { - "200" : { - "description" : "Fagsaker uten behandling", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } - } - } - } - } - } - }, - "/api/forvaltningUttrekk/openAutopunkt" : { - "post" : { - "tags" : [ "FORVALTNING-uttrekk" ], - "description" : "Gir åpne aksjonspunkter med angitt kode", - "operationId" : "openAutopunkt", - "parameters" : [ { - "name" : "aksjonspunktKode", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningUttrekk/openIkkeLopendeSaker" : { - "post" : { - "tags" : [ "FORVALTNING-uttrekk" ], - "description" : "Setter saker med revurdering til under behandling", - "operationId" : "openIkkeLopendeSaker", - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/forvaltningUttrekk/slettTidligereAvstemmingOverlapp" : { - "post" : { - "tags" : [ "FORVALTNING-uttrekk" ], - "description" : "Sletter tidligere avstemming som er eldre enn fom (dd + 1 sletter alle)", - "operationId" : "slettTidligereAvstemming", - "parameters" : [ { - "name" : "fom", - "in" : "query", - "description" : "fom (YYYY-MM-DD)", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "tom", - "in" : "query", - "description" : "tom (YYYY-MM-DD)", - "required" : true, - "schema" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string" - } - }, { - "name" : "tidsrom", - "in" : "query", - "description" : "tidsrom for avstemming av 1 dag (sekunder)", - "required" : true, - "schema" : { - "maximum" : 3600, - "minimum" : 0, - "type" : "integer", - "format" : "int32" - } - }, { - "name" : "vedtak", - "in" : "query", - "description" : "true gir saker med vedtak fattet i periode, false gir saker opprettet i periode", - "schema" : { - "type" : "boolean" - } - } ], - "requestBody" : { - "content" : { - "application/x-www-form-urlencoded" : { - "schema" : { - "required" : [ "key" ], - "type" : "object", - "properties" : { - "key" : { - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string", - "description" : "key (secret)" - } - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/fpoversiktMigrering/opprettTask" : { - "post" : { - "tags" : [ "FORVALTNING-fpoversikt" ], - "description" : "Oppretter task for migrering", - "operationId" : "opprettTask", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/TaskInput" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/forvaltning-stonadsstatistikk/for-behandling" : { - "post" : { - "tags" : [ "FORVALTNING-stønadsstatistikk" ], - "description" : "Genereres vedtak json for en behandling", - "operationId" : "genererVedtakJson", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/StønadsstatistikkVedtak" - } - } - } - } - } - } - }, - "/api/forvaltning-stonadsstatistikk/opprettTaskForPeriode" : { - "post" : { - "tags" : [ "FORVALTNING-stønadsstatistikk" ], - "description" : "Oppretter task for migrering for vedtak opprettet etter fom dato", - "operationId" : "opprettTaskForPeriode", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/MigreringTaskInput" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/fpoversikt/inntektsmeldinger" : { - "get" : { - "tags" : [ "fpoversikt" ], - "description" : "Henter inntektsmeldinger på sak", - "operationId" : "hentInntektsmeldinger", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer for fagsak", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FpSakInntektsmeldingDto" - } - } - } - } - } - } - } - }, - "/api/fpoversikt/sak" : { - "get" : { - "tags" : [ "fpoversikt" ], - "description" : "Hent sak for bruk i fpoversikt", - "operationId" : "hentSak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer for fagsak", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/Sak" - } - } - } - } - } - } - }, - "/api/fpoversikt/manglendeVedlegg" : { - "get" : { - "tags" : [ "fpoversikt" ], - "description" : "Henter manglede vedlegg på sak", - "operationId" : "hentmanglendeVedlegg", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "description" : "Saksnummer for fagsak", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "I000007", "I000023", "I000032", "I000036", "I000037", "I000038", "I000039", "I000041", "I000042", "I000044", "I000045", "I000051", "I000060", "I000061", "I000062", "I000063", "I000065", "I000066", "I000109", "I000110", "I000111", "I000112", "I000114", "I000116", "I000117", "I000118", "I000119", "I000120", "I000121", "I000122", "I000123", "I000124", "I000130", "I000131", "I000132", "I000133", "I000140", "I000141" ] - } - } - } - } - } - } - } - }, - "/api/hendelser/grovsorter" : { - "post" : { - "tags" : [ "hendelser" ], - "description" : "Grovsortering av aktørID-er. Returnerer aktørID-er i listen som har en sak.", - "operationId" : "grovSorter", - "requestBody" : { - "description" : "Liste med aktør IDer som skal sorteres", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AktørIdDto" - } - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "type" : "string" - } - } - } - } - } - } - } - }, - "/api/hendelser/motta" : { - "post" : { - "tags" : [ "hendelser" ], - "description" : "Mottak av hendelser", - "operationId" : "mottaHendelse", - "requestBody" : { - "description" : "Hendelse fra Fpabonnent", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/HendelseWrapperDto" - } - } - } - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/EnkelRespons" - } - } - } - } - } - } - }, - "/api/hendelser/ping" : { - "post" : { - "tags" : [ "hendelser" ], - "description" : "Ping", - "operationId" : "ping", - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/EnkelRespons" - } - } - } - } - } - } - }, - "/api/infotrygd/sok" : { - "post" : { - "tags" : [ "infotrygd" ], - "summary" : "Oversikt over utbetalinger knyttet til en bruker kan søkes via fødselsnummer eller d-nummer.", - "description" : "Søk etter utbetalinger i Infotrygd for fødselsnummer", - "operationId" : "sokInfotrygd", - "requestBody" : { - "description" : "Søkestreng kan være aktørId, fødselsnummer eller D-nummer.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SokefeltDto" - } - } - } - }, - "responses" : { - "200" : { - "description" : "Returnerer grunnlag", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/InfotrygdVedtakDto" - } - } - } - } - } - } - }, - "/api/kodeverk" : { - "get" : { - "tags" : [ "kodeverk" ], - "description" : "Henter kodeliste", - "operationId" : "hentGruppertKodeliste", - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { } - } - } - } - } - }, - "/api/los/los-behandling" : { - "get" : { - "tags" : [ "los-data" ], - "summary" : "Returnerer behandlingen som er tilknyttet uuid.", - "description" : "Hent behandling gitt id for LOS", - "operationId" : "hentBehandlingResultatForBackend_1", - "parameters" : [ { - "name" : "uuid", - "in" : "query", - "description" : "behandlingUUID", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer behandling", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/LosBehandlingDto" - } - } - } - } - } - } - }, - "/api/los/los-egenskap" : { - "get" : { - "tags" : [ "los-data" ], - "summary" : "Returnerer saksegenskaper som er tilknyttet saksnummer.", - "description" : "Hent egenskaper for fagsak gitt saksnummer for LOS", - "operationId" : "hentFagsakEgenskaper", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer behandling", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/LosFagsakEgenskaperDto" - } - } - } - } - } - } - }, - "/api/los/los-fristutlop" : { - "get" : { - "tags" : [ "los-data" ], - "description" : "Tilbyr data over når førstegangsbehandlinger går av vent", - "operationId" : "nøkkeltallFristUtløper", - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/NøkkeltallBehandlingVentefristUtløper" - } - } - } - } - } - } - } - }, - "/api/los/los-nokkeltall" : { - "get" : { - "tags" : [ "los-data" ], - "description" : "Tilbyr første søkte uttaksdato for åpne foreldrepenge-behandlinger med info om venting", - "operationId" : "nøkkeltallFørsteUttakPrMåned", - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/NøkkeltallBehandlingFørsteUttak" - } - } - } - } - } - } - } - }, - "/api/register/redirect-to/a-inntekt" : { - "get" : { - "tags" : [ "aktoer" ], - "description" : "Redirecter til a-inntekt for arbeidstakeren forhåndsvalgt nasjonal enhet og filter 8-30", - "operationId" : "getAInntektSammenligningUrl", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "307" : { - "description" : "Redirecter til a-inntekt for arbeidstakeren" - } - } - } - }, - "/api/register/redirect-to/aa-reg" : { - "get" : { - "tags" : [ "aktoer" ], - "description" : "Redirecter til aa-reg for arbeidstakeren", - "operationId" : "getAaregUrl", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "307" : { - "description" : "Redirecter til aa-reg for arbeidstakeren" - } - } - } - }, - "/api/init-fetch" : { - "get" : { - "tags" : [ "init-fetch" ], - "description" : "Returnerer ", - "operationId" : "hentInitielleRessurser", - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/InitLinksDto" - } - } - } - } - } - } - }, - "/api/vedtak/hent-vedtaksdokument" : { - "get" : { - "tags" : [ "vedtak" ], - "summary" : "Returnerer vedtaksdokument som er tilknyttet behandlingId.", - "description" : "Hent vedtaksdokument gitt behandlingId", - "operationId" : "hentVedtaksdokument", - "parameters" : [ { - "name" : "behandlingId", - "in" : "query", - "description" : "BehandlingId for vedtaksdokument", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/BehandlingIdDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/vedtak/regenerer" : { - "post" : { - "tags" : [ "vedtak" ], - "description" : "Generer vedtaksxmler som ikke er gyldige på nytt", - "operationId" : "regenererIkkeGyldigeVedtaksXml", - "requestBody" : { - "description" : "Datointervall i vedtak tabell for hvor det skal genereres ny vedtaksxml og maksAntall som behandles", - "content" : { - "*/*" : { - "schema" : { - "$ref" : "#/components/schemas/GenererVedtaksXmlDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/vedtak/validate" : { - "post" : { - "tags" : [ "vedtak" ], - "description" : "Validerer vedtaksxml", - "operationId" : "validerVedtaksXml", - "requestBody" : { - "description" : "Datointervall i vedtak tabell for hvilke vedtakxml som skal valideres og maksAntall som behandles", - "content" : { - "*/*" : { - "schema" : { - "$ref" : "#/components/schemas/GenererVedtaksXmlDto" - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "*/*" : { } - } - } - } - } - }, - "/api/feed/vedtak/foreldrepenger" : { - "get" : { - "tags" : [ "feed" ], - "description" : "Henter ut hendelser om foreldrepenger-vedtak", - "operationId" : "fpVedtakHendelser", - "parameters" : [ { - "name" : "sistLesteSekvensId", - "in" : "query", - "description" : "Siste sekvensId lest", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SekvensIdParam" - } - }, { - "name" : "maxAntall", - "in" : "query", - "description" : "max antall returnert", - "schema" : { - "$ref" : "#/components/schemas/MaxAntallParam" - } - }, { - "name" : "type", - "in" : "query", - "description" : "Filtrerer på type hendelse", - "schema" : { - "$ref" : "#/components/schemas/HendelseTypeParam" - } - }, { - "name" : "aktoerId", - "in" : "query", - "description" : "aktoerId", - "schema" : { - "$ref" : "#/components/schemas/AktørParam" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer hendelser om foreldrepenger-vedtak", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/FeedDto" - } - } - } - } - } - } - }, - "/api/feed/vedtak/svangerskapspenger" : { - "get" : { - "tags" : [ "feed" ], - "description" : "Henter ut hendelser om svangerskapspenger-vedtak", - "operationId" : "svpVedtakHendelser", - "parameters" : [ { - "name" : "sistLesteSekvensId", - "in" : "query", - "description" : "Siste sekvensId lest", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SekvensIdParam" - } - }, { - "name" : "maxAntall", - "in" : "query", - "description" : "max antall returnert", - "schema" : { - "$ref" : "#/components/schemas/MaxAntallParam" - } - }, { - "name" : "type", - "in" : "query", - "description" : "Filtrerer på type hendelse", - "schema" : { - "$ref" : "#/components/schemas/HendelseTypeParam" - } - }, { - "name" : "aktoerId", - "in" : "query", - "description" : "aktoerId", - "schema" : { - "$ref" : "#/components/schemas/AktørParam" - } - } ], - "responses" : { - "200" : { - "description" : "Returnerer hendelser om svangerskapspenger-vedtak", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/FeedDto" - } - } - } - } - } - } - }, - "/api/pip/aktoer-for-sak" : { - "get" : { - "tags" : [ "pip" ], - "description" : "Henter alle aktørId tilknyttet en fagsak", - "operationId" : "hentAktørIdListeTilknyttetSak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "type" : "string" - } - } - } - } - } - } - } - }, - "/api/pip/full-for-sak" : { - "get" : { - "tags" : [ "pip" ], - "description" : "Henter saksnummer, saksident og tilknyttede identer for en fagsak", - "operationId" : "hentFullInfoForSak", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SakOgPersonerDto" - } - } - } - } - } - }, - "post" : { - "tags" : [ "pip" ], - "description" : "Henter saksnummer, saksident og tilknyttede identer for en gruppe saker", - "operationId" : "hentFullInfoForSakEr", - "requestBody" : { - "content" : { - "*/*" : { - "schema" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "type" : "string" - } - } - } - }, - "required" : true - }, - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SakOgPersonerDto" - } - } - } - } - } - } - } - }, - "/api/pip/ident-for-sak" : { - "get" : { - "tags" : [ "pip" ], - "description" : "Henter saksident for en fagsak", - "operationId" : "hentSaksIdent", - "parameters" : [ { - "name" : "saksnummer", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - } - } - } - }, - "/api/pip/saksnummer-for-behandling" : { - "get" : { - "tags" : [ "pip" ], - "description" : "Henter saksnummer for en behandling", - "operationId" : "hentSaksnummerTilknyttetBehandling", - "parameters" : [ { - "name" : "behandlingUuid", - "in" : "query", - "required" : true, - "schema" : { - "$ref" : "#/components/schemas/UuidDto" - } - } ], - "responses" : { - "default" : { - "description" : "default response", - "content" : { - "application/json" : { - "schema" : { - "type" : "string" - } - } - } - } - } - } - }, - "/api/prosesstask/create" : { - "post" : { - "tags" : [ "prosesstask" ], - "summary" : "Oppretter en ny task klar for kjøring.", - "description" : "Oppretter en prosess task i henhold til request", - "operationId" : "createProsessTask", - "requestBody" : { - "description" : "Informasjon for restart en eksisterende prosesstask", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ProsessTaskOpprettInputDto" - } - } - } - }, - "responses" : { - "202" : { - "description" : "Prosesstaskens oppdatert informasjon", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ProsessTaskDataDto" - } - } - } - }, - "500" : { - "description" : "Feilet pga ukjent feil eller tekniske/funksjonelle feil" - } - } - } - }, - "/api/prosesstask/feil/{prosessTaskId}" : { - "post" : { - "tags" : [ "prosesstask" ], - "description" : "Henter informasjon om feilet prosesstask med angitt prosesstask-id", - "operationId" : "finnFeiletProsessTask", - "parameters" : [ { - "name" : "prosessTaskId", - "in" : "path", - "required" : true, - "schema" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } ], - "responses" : { - "200" : { - "description" : "Angitt prosesstask-id finnes", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/FeiletProsessTaskDataDto" - } - } - } - }, - "404" : { - "description" : "Tom respons når angitt prosesstask-id ikke finnes" - }, - "400" : { - "description" : "Feil input" - } - } - } - }, - "/api/prosesstask/list/{prosessTaskStatus}" : { - "post" : { - "tags" : [ "prosesstask" ], - "description" : "Lister prosesstasker med angitt status.", - "operationId" : "finnProsessTasks", - "parameters" : [ { - "name" : "prosessTaskStatus", - "in" : "path", - "description" : "Liste av statuser som skal hentes.", - "required" : true, - "schema" : { - "type" : "string", - "enum" : [ "FEILET", "VENTER_SVAR", "SUSPENDERT", "VETO", "KLAR" ] - } - } ], - "responses" : { - "200" : { - "description" : "Liste over prosesstasker, eller tom liste når angitt/default søkefilter ikke finner noen prosesstasker", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ProsessTaskDataDto" - } - } - } - } - } - } - }, - "/api/prosesstask/launch/{prosessTaskId}/{prosessTaskStatus}" : { - "post" : { - "tags" : [ "prosesstask" ], - "summary" : "En allerede FERDIG prosesstask kan ikke restartes. Dette endepunktet vil tvinge tasken til å trigge uavhengig av maks antall forsøk", - "description" : "Restarter en eksisterende prosesstask.", - "operationId" : "restartProsessTask", - "parameters" : [ { - "name" : "prosessTaskId", - "in" : "path", - "required" : true, - "schema" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - }, { - "name" : "prosessTaskStatus", - "in" : "path", - "required" : true, - "schema" : { - "type" : "string", - "enum" : [ "FEILET", "VENTER_SVAR", "SUSPENDERT" ] - } - } ], - "responses" : { - "200" : { - "description" : "Prosesstaskens oppdatert informasjon", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ProsessTaskRestartResultatDto" - } - } - } - }, - "500" : { - "description" : "Feilet pga ukjent feil eller tekniske/funksjonelle feil" - } - } - } - }, - "/api/prosesstask/retryall" : { - "post" : { - "tags" : [ "prosesstask" ], - "summary" : "Dette endepunktet vil tvinge feilede tasks til å trigge ett forsøk uavhengig av maks antall forsøk", - "description" : "Restarter alle prosesstask med status FEILET.", - "operationId" : "retryAllProsessTask", - "responses" : { - "200" : { - "description" : "Response med liste av prosesstasks som restartes", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ProsessTaskRetryAllResultatDto" - } - } - } - }, - "500" : { - "description" : "Feilet pga ukjent feil eller tekniske/funksjonelle feil" - } - } - } - }, - "/api/prosesstask/search" : { - "post" : { - "tags" : [ "prosesstask" ], - "description" : "Søker etter prosesstask med angitt tekst i properties.", - "operationId" : "searchProsessTasks", - "requestBody" : { - "description" : "Søkefilter for å begrense resultatet av returnerte prosesstask.", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/SokeFilterDto" - } - } - } - }, - "responses" : { - "200" : { - "description" : "Liste over prosesstasker, eller tom liste når angitt/default søkefilter ikke finner noen prosesstasker", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ProsessTaskDataDto" - } - } - } - } - } - } - }, - "/api/prosesstask/setferdig/{prosessTaskId}/{prosessTaskStatus}" : { - "post" : { - "tags" : [ "prosesstask" ], - "description" : "Setter feilet prosesstask med angitt prosesstask-id til FERDIG (kjøres ikke)", - "operationId" : "setFeiletProsessTaskFerdig", - "parameters" : [ { - "name" : "prosessTaskId", - "in" : "path", - "required" : true, - "schema" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - }, { - "name" : "prosessTaskStatus", - "in" : "path", - "required" : true, - "schema" : { - "type" : "string", - "enum" : [ "FEILET", "VENTER_SVAR", "SUSPENDERT", "VETO", "KLAR" ] - } - } ], - "responses" : { - "200" : { - "description" : "Angitt prosesstask-id satt til status FERDIG" - }, - "500" : { - "description" : "Feilet pga ukjent feil eller tekniske/funksjonelle feil" - } - } - } - } - }, - "components" : { - "schemas" : { - "CallbackDto" : { - "required" : [ "avsenderRef", "opprettetTidspunkt" ], - "type" : "object", - "properties" : { - "opprettetTidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "avsenderRef" : { - "$ref" : "#/components/schemas/ReferanseDto" - }, - "opprinneligGrunnlagRef" : { - "$ref" : "#/components/schemas/ReferanseDto" - }, - "oppdatertGrunnlagRef" : { - "$ref" : "#/components/schemas/ReferanseDto" - } - } - }, - "ReferanseDto" : { - "required" : [ "referanse" ], - "type" : "object", - "properties" : { - "referanse" : { - "type" : "string", - "format" : "uuid" - } - } - }, - "BehandlingDto" : { - "type" : "object", - "properties" : { - "id" : { - "type" : "integer", - "format" : "int64" - }, - "uuid" : { - "type" : "string", - "format" : "uuid" - }, - "versjon" : { - "type" : "integer", - "format" : "int64" - }, - "type" : { - "type" : "string", - "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] - }, - "status" : { - "type" : "string", - "enum" : [ "AVSLU", "FVED", "IVED", "OPPRE", "UTRED" ] - }, - "fagsakId" : { - "type" : "integer", - "format" : "int64" - }, - "opprettet" : { - "type" : "string", - "format" : "date-time" - }, - "avsluttet" : { - "type" : "string", - "format" : "date-time" - }, - "endret" : { - "type" : "string", - "format" : "date-time" - }, - "endretAvBrukernavn" : { - "type" : "string" - }, - "behandlendeEnhetId" : { - "type" : "string" - }, - "behandlendeEnhetNavn" : { - "type" : "string" - }, - "erAktivPapirsoknad" : { - "type" : "boolean" - }, - "førsteÅrsak" : { - "$ref" : "#/components/schemas/BehandlingÅrsakDto" - }, - "behandlingsfristTid" : { - "type" : "string", - "format" : "date" - }, - "gjeldendeVedtak" : { - "type" : "boolean" - }, - "erPaaVent" : { - "type" : "boolean" - }, - "originalVedtaksDato" : { - "type" : "string", - "format" : "date" - }, - "behandlingHenlagt" : { - "type" : "boolean" - }, - "behandlingPaaVent" : { - "type" : "boolean" - }, - "behandlingPåVent" : { - "type" : "boolean" - }, - "fristBehandlingPåVent" : { - "type" : "string" - }, - "fristBehandlingPaaVent" : { - "type" : "string" - }, - "venteArsakKode" : { - "type" : "string" - }, - "venteÅrsakKode" : { - "type" : "string" - }, - "sprakkode" : { - "type" : "string", - "enum" : [ "NB", "NN", "EN", "-" ] - }, - "språkkode" : { - "type" : "string", - "enum" : [ "NB", "NN", "EN", "-" ] - }, - "behandlingKøet" : { - "type" : "boolean" - }, - "ansvarligSaksbehandler" : { - "type" : "string" - }, - "toTrinnsBehandling" : { - "type" : "boolean" - }, - "behandlingsresultat" : { - "$ref" : "#/components/schemas/BehandlingsresultatDto" - }, - "behandlingÅrsaker" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BehandlingÅrsakDto" - } - }, - "vilkår" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/VilkårDto" - } - }, - "links" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ResourceLink" - } - }, - "behandlingKoet" : { - "type" : "boolean" - } - } - }, - "BehandlingsresultatDto" : { - "type" : "object", - "properties" : { - "id" : { - "type" : "integer", - "format" : "int64" - }, - "type" : { - "type" : "string", - "enum" : [ "IKKE_FASTSATT", "INNVILGET", "AVSLÅTT", "OPPHØR", "HENLAGT_SØKNAD_TRUKKET", "HENLAGT_FEILOPPRETTET", "HENLAGT_BRUKER_DØD", "MERGET_OG_HENLAGT", "HENLAGT_SØKNAD_MANGLER", "FORELDREPENGER_ENDRET", "FORELDREPENGER_SENERE", "INGEN_ENDRING", "MANGLER_BEREGNINGSREGLER", "KLAGE_AVVIST", "KLAGE_MEDHOLD", "KLAGE_DELVIS_MEDHOLD", "KLAGE_OMGJORT_UGUNST", "KLAGE_YTELSESVEDTAK_OPPHEVET", "KLAGE_YTELSESVEDTAK_STADFESTET", "KLAGE_TILBAKEKREVING_VEDTAK_STADFESTET", "HENLAGT_KLAGE_TRUKKET", "HJEMSENDE_UTEN_OPPHEVE", "ANKE_AVVIST", "ANKE_MEDHOLD", "ANKE_DELVIS_MEDHOLD", "ANKE_OMGJORT_UGUNST", "ANKE_OPPHEVE_OG_HJEMSENDE", "ANKE_HJEMSENDE_UTEN_OPPHEV", "ANKE_YTELSESVEDTAK_STADFESTET", "HENLAGT_ANKE_TRUKKET", "INNSYN_INNVILGET", "INNSYN_DELVIS_INNVILGET", "INNSYN_AVVIST", "HENLAGT_INNSYN_TRUKKET" ] - }, - "avslagsarsak" : { - "type" : "string", - "enum" : [ "1001", "1002", "1003", "1004", "1005", "1006", "1007", "1008", "1009", "1010", "1011", "1012", "1013", "1014", "1015", "1016", "1017", "1018", "1019", "1020", "1021", "1023", "1024", "1025", "1026", "1027", "1028", "1029", "1031", "1032", "1033", "1034", "1035", "1041", "1051", "1052", "1060", "1061", "1062", "1063", "1064", "1065", "1066", "1099", "-" ] - }, - "avslagsarsakFritekst" : { - "type" : "string" - }, - "rettenTil" : { - "type" : "string", - "enum" : [ "HAR_RETT_TIL_FP", "HAR_IKKE_RETT_TIL_FP", "-" ] - }, - "konsekvenserForYtelsen" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "FORELDREPENGER_OPPHØRER", "ENDRING_I_BEREGNING", "ENDRING_I_UTTAK", "ENDRING_I_FORDELING_AV_YTELSEN", "INGEN_ENDRING", "-" ] - } - }, - "vedtaksbrev" : { - "type" : "string", - "enum" : [ "AUTOMATISK", "FRITEKST", "INGEN", "-" ] - }, - "vedtaksbrevStatus" : { - "type" : "string", - "enum" : [ "VEDTAKSBREV_PRODUSERES", "INGEN_VEDTAKSBREV", "INGEN_VEDTAKSBREV_ANKE", "INGEN_VEDTAKSBREV_KLAGEBEHANDLING", "INGEN_VEDTAKSBREV_BEHANDLING_ETTER_KLAGE", "INGEN_VEDTAKSBREV_JUSTERING_AV_FERIEPENGER", "INGEN_VEDTAKSBREV_INGEN_KONSEKVENS_FOR_YTELSE" ] - }, - "overskrift" : { - "type" : "string" - }, - "fritekstbrev" : { - "type" : "string" - }, - "harRedigertVedtaksbrev" : { - "type" : "boolean" - }, - "erRevurderingMedUendretUtfall" : { - "type" : "boolean" - }, - "skjæringstidspunkt" : { - "$ref" : "#/components/schemas/SkjæringstidspunktDto" - }, - "endretDekningsgrad" : { - "type" : "boolean" - }, - "opphørsdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "BehandlingÅrsakDto" : { - "type" : "object", - "properties" : { - "erAutomatiskRevurdering" : { - "type" : "boolean" - }, - "behandlingArsakType" : { - "type" : "string", - "enum" : [ "RE-LOV", "RE-RGLF", "RE-FEFAKTA", "RE-PRSSL", "RE-ANNET", "RE-MDL", "RE-OPTJ", "RE-FRDLING", "RE-INNTK", "RE-FØDSEL", "RE-DØD", "RE-SRTB", "RE-FRIST", "RE-BER-GRUN", "RE-KLAG-U-INNTK", "RE-KLAG-M-INNTK", "ETTER_KLAGE", "RE-MF", "RE-MFIP", "RE-AVAB", "RE-END-FRA-BRUKER", "RE-END-INNTEKTSMELD", "BERØRT-BEHANDLING", "REBEREGN-FERIEPENGER", "RE-UTSATT-START", "RE-SATS-REGULERING", "ENDRE-DEKNINGSGRAD", "INFOBREV_BEHANDLING", "INFOBREV_OPPHOLD", "INFOBREV_PÅMINNELSE", "OPPHØR-NYTT-BARN", "RE-HENDELSE-FØDSEL", "RE-HENDELSE-DØD-F", "RE-HENDELSE-DØD-B", "RE-HENDELSE-DØDFØD", "RE-HENDELSE-UTFLYTTING", "RE-VEDTAK-PSB", "FEIL_PRAKSIS_UTSETTELSE", "FEIL_PRAKSIS_IVERKS_UTSET", "KLAGE_TILBAKE", "RE-YTELSE", "RE-REGISTEROPPL", "KØET-BEHANDLING", "RE-TILST-YT-INNVIL", "RE-TILST-YT-OPPH", "-" ] - }, - "manueltOpprettet" : { - "type" : "boolean" - } - } - }, - "ResourceLink" : { - "required" : [ "href", "rel", "type" ], - "type" : "object", - "properties" : { - "href" : { - "type" : "string", - "format" : "uri" - }, - "rel" : { - "type" : "string" - }, - "requestPayload" : { - "type" : "object" - }, - "type" : { - "type" : "string", - "enum" : [ "DELETE", "GET", "PATCH", "POST", "PUT" ] - } - } - }, - "SkjæringstidspunktDto" : { - "type" : "object", - "properties" : { - "dato" : { - "type" : "string", - "format" : "date" - }, - "utenMinsterett" : { - "type" : "boolean" - } - } - }, - "VilkårDto" : { - "type" : "object", - "properties" : { - "vilkarType" : { - "type" : "string", - "enum" : [ "FP_VK_1", "FP_VK_11", "FP_VK_16", "FP_VK_2", "FP_VK_2_F", "FP_VK_2_L", "FP_VK_3", "FP_VK_4", "FP_VK_5", "FP_VK_8", "FP_VK_33", "FP_VK_34", "FP_VK_21", "FP_VK_23", "FP_VK_41", "SVP_VK_1", "-" ] - }, - "vilkarStatus" : { - "type" : "string", - "enum" : [ "OPPFYLT", "IKKE_OPPFYLT", "IKKE_VURDERT", "-" ] - }, - "avslagKode" : { - "type" : "string" - }, - "lovReferanse" : { - "type" : "string" - }, - "overstyrbar" : { - "type" : "boolean" - }, - "evaluering" : { - "type" : "string" - }, - "input" : { - "type" : "string" - } - } - }, - "UuidDto" : { - "type" : "object", - "properties" : { - "uuid" : { - "type" : "string", - "format" : "uuid" - } - } - }, - "ReåpneBehandlingDto" : { - "required" : [ "behandlingUuid", "behandlingVersjon" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "behandlingVersjon" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - }, - "ByttBehandlendeEnhetDto" : { - "required" : [ "behandlingUuid" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "enhetNavn" : { - "maxLength" : 256, - "minLength" : 1, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "enhetId" : { - "maxLength" : 10, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-\\–0-9]*$", - "type" : "string" - }, - "begrunnelse" : { - "maxLength" : 4000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "behandlingVersjon" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - }, - "SettBehandlingPaVentDto" : { - "required" : [ "behandlingUuid", "behandlingVersjon" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "behandlingVersjon" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "frist" : { - "type" : "string", - "format" : "date" - }, - "ventearsak" : { - "type" : "string", - "enum" : [ "-", "AVV_DOK", "AVV_FODSEL", "FOR_TIDLIG_SOKNAD", "SCANN", "UTV_FRIST", "VENT_PÅ_BRUKERTILBAKEMELDING", "VENT_UTLAND_TRYGD", "VENT_INNTEKT_RAPPORTERINGSFRIST", "VENT_MANGLENDE_SYKEMELDING", "VENT_OPDT_INNTEKTSMELDING", "VENT_OPPTJENING_OPPLYSNINGER", "VENT_PÅ_SISTE_AAP_MELDEKORT", "VENT_SØKNAD_SENDT_INFORMASJONSBREV", "VENT_ÅPEN_BEHANDLING", "VENT_KABAL", "ANKE_OVERSENDT_TIL_TRYGDERETTEN", "ANKE_VENTER_PAA_MERKNADER_FRA_BRUKER", "AVV_RESPONS_REVURDERING", "VENT_TIDLIGERE_BEHANDLING", "AAP_DP_SISTE_10_MND_SVP", "AAP_DP_ENESTE_AKTIVITET_SVP", "DELVIS_TILRETTELEGGING_OG_REFUSJON_SVP", "FLERE_ARBEIDSFORHOLD_SAMME_ORG_SVP", "FL_SN_IKKE_STOTTET_FOR_SVP", "GRADERING_FLERE_ARBEIDSFORHOLD", "OPPD_ÅPEN_BEH", "REFUSJON_3_MÅNEDER", "VENTELØNN_ELLER_MILITÆR_MED_FLERE_AKTIVITETER", "VENT_BEREGNING_TILBAKE_I_TID", "VENT_DEKGRAD_REGEL", "VENT_DØDFØDSEL_80P_DEKNINGSGRAD", "VENT_FEIL_ENDRINGSSØKNAD", "VENT_GRADERING_UTEN_BEREGNINGSGRUNNLAG", "VENT_INFOTRYGD", "VENT_MANGLENDE_ARBEIDSFORHOLD", "VENT_MILITÆR_OG_BG_UNDER_3G", "ULIKE_STARTDATOER_SVP", "VENT_LOVENDRING_8_41", "VENT_PÅ_KORRIGERT_BESTEBEREGNING", "VENT_PÅ_NY_INNTEKTSMELDING_MED_GYLDIG_ARB_ID", "VENT_REGISTERINNHENTING", "VENT_ØKONOMI" ] - } - } - }, - "GjenopptaBehandlingDto" : { - "required" : [ "behandlingUuid", "behandlingVersjon" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "behandlingVersjon" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - }, - "HenleggBehandlingDto" : { - "required" : [ "behandlingUuid", "årsakKode" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "årsakKode" : { - "maxLength" : 100, - "minLength" : 1, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-\\–0-9]*$", - "type" : "string" - }, - "begrunnelse" : { - "maxLength" : 4000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "behandlingVersjon" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - }, - "SaksnummerDto" : { - "required" : [ "saksnummer" ], - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - } - } - }, - "BehandlingIdDto" : { - "required" : [ "behandlingUuid" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - } - } - }, - "AksjonspunktDto" : { - "required" : [ "begrunnelse", "definisjon", "erAktivt", "kanLoses", "status", "toTrinnsBehandling" ], - "type" : "object", - "properties" : { - "definisjon" : { - "type" : "string", - "enum" : [ "5001", "5027", "5004", "5005", "5006", "5007", "5008", "5011", "5012", "5013", "5014", "5015", "5016", "5017", "5002", "5026", "5028", "5030", "5031", "5033", "5034", "5003", "5035", "5037", "5038", "5039", "5040", "5043", "5046", "5047", "5049", "5051", "5052", "5054", "5055", "5057", "5058", "5059", "5060", "5061", "5068", "5064", "5065", "5063", "5066", "5071", "5072", "5069", "5073", "5076", "5077", "5085", "5082", "5084", "5029", "5086", "5089", "5041", "5062", "5091", "5092", "5095", "5096", "5074", "5101", "5102", "6002", "6003", "6004", "6005", "6006", "6008", "6009", "6010", "6011", "6065", "6014", "6015", "6045", "6016", "6018", "6017", "7001", "7002", "7003", "7005", "7007", "7008", "7011", "7013", "7014", "7020", "7030", "7033", "7037", "7039", "7040", "UNDEFINED('null')", "5009", "5019", "5020", "5021", "5022", "5023", "5024", "5025", "5032", "5036", "5042", "5044", "5045", "5048", "5050", "5053", "5056", "5067", "5070", "5075", "5078", "5079", "5080", "5081", "5083", "5087", "5088", "5090", "5093", "5094", "5097", "5098", "5099", "6007", "6012", "6013", "6068", "6070", "7004", "7006", "7009", "7015", "7016", "7017", "7018", "7019", "7021", "7022", "7023", "7024", "7025", "7026", "7027", "7028", "7029", "7032", "7034", "7035", "7036", "7038", "7041" ] - }, - "status" : { - "type" : "string", - "enum" : [ "AVBR", "OPPR", "UTFO" ] - }, - "begrunnelse" : { - "type" : "string", - "nullable" : true - }, - "vilkarType" : { - "type" : "string", - "nullable" : true, - "enum" : [ "FP_VK_1", "FP_VK_11", "FP_VK_16", "FP_VK_2", "FP_VK_2_F", "FP_VK_2_L", "FP_VK_3", "FP_VK_4", "FP_VK_5", "FP_VK_8", "FP_VK_33", "FP_VK_34", "FP_VK_21", "FP_VK_23", "FP_VK_41", "SVP_VK_1", "-" ] - }, - "toTrinnsBehandling" : { - "type" : "boolean" - }, - "toTrinnsBehandlingGodkjent" : { - "type" : "boolean", - "nullable" : true - }, - "vurderPaNyttArsaker" : { - "uniqueItems" : true, - "type" : "array", - "nullable" : true, - "items" : { - "type" : "string", - "nullable" : true, - "enum" : [ "FEIL_FAKTA", "FEIL_LOV", "SKJØNN", "UTREDNING", "SAKSFLYT", "BEGRUNNELSE", "-", "ANNET", "FEIL_REGEL" ] - } - }, - "besluttersBegrunnelse" : { - "type" : "string", - "nullable" : true - }, - "aksjonspunktType" : { - "type" : "string", - "nullable" : true, - "enum" : [ "AUTO", "MANU", "OVST", "SAOV", "-" ] - }, - "kanLoses" : { - "type" : "boolean" - }, - "erAktivt" : { - "type" : "boolean" - }, - "fristTid" : { - "type" : "string", - "format" : "date-time", - "nullable" : true - }, - "endretTidspunkt" : { - "type" : "string", - "format" : "date-time", - "nullable" : true - }, - "endretAv" : { - "type" : "string", - "nullable" : true - } - } - }, - "AsyncPollingStatus" : { - "type" : "object", - "properties" : { - "status" : { - "type" : "string", - "enum" : [ "PENDING", "COMPLETE", "DELAYED", "CANCELLED", "HALTED" ] - }, - "eta" : { - "type" : "string", - "format" : "date-time" - }, - "message" : { - "type" : "string" - }, - "pollIntervalMillis" : { - "type" : "integer", - "format" : "int64" - }, - "location" : { - "type" : "string", - "format" : "uri" - }, - "cancelUri" : { - "type" : "string", - "format" : "uri" - }, - "readOnly" : { - "type" : "boolean" - }, - "pending" : { - "type" : "boolean" - } - } - }, - "UtvidetBehandlingDto" : { - "type" : "object", - "properties" : { - "id" : { - "type" : "integer", - "format" : "int64" - }, - "uuid" : { - "type" : "string", - "format" : "uuid" - }, - "versjon" : { - "type" : "integer", - "format" : "int64" - }, - "type" : { - "type" : "string", - "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] - }, - "status" : { - "type" : "string", - "enum" : [ "AVSLU", "FVED", "IVED", "OPPRE", "UTRED" ] - }, - "fagsakId" : { - "type" : "integer", - "format" : "int64" - }, - "opprettet" : { - "type" : "string", - "format" : "date-time" - }, - "avsluttet" : { - "type" : "string", - "format" : "date-time" - }, - "endret" : { - "type" : "string", - "format" : "date-time" - }, - "endretAvBrukernavn" : { - "type" : "string" - }, - "behandlendeEnhetId" : { - "type" : "string" - }, - "behandlendeEnhetNavn" : { - "type" : "string" - }, - "erAktivPapirsoknad" : { - "type" : "boolean" - }, - "førsteÅrsak" : { - "$ref" : "#/components/schemas/BehandlingÅrsakDto" - }, - "behandlingsfristTid" : { - "type" : "string", - "format" : "date" - }, - "gjeldendeVedtak" : { - "type" : "boolean" - }, - "erPaaVent" : { - "type" : "boolean" - }, - "originalVedtaksDato" : { - "type" : "string", - "format" : "date" - }, - "behandlingHenlagt" : { - "type" : "boolean" - }, - "behandlingPaaVent" : { - "type" : "boolean" - }, - "behandlingPåVent" : { - "type" : "boolean" - }, - "fristBehandlingPåVent" : { - "type" : "string" - }, - "fristBehandlingPaaVent" : { - "type" : "string" - }, - "venteArsakKode" : { - "type" : "string" - }, - "venteÅrsakKode" : { - "type" : "string" - }, - "sprakkode" : { - "type" : "string", - "enum" : [ "NB", "NN", "EN", "-" ] - }, - "språkkode" : { - "type" : "string", - "enum" : [ "NB", "NN", "EN", "-" ] - }, - "behandlingKøet" : { - "type" : "boolean" - }, - "ansvarligSaksbehandler" : { - "type" : "string" - }, - "toTrinnsBehandling" : { - "type" : "boolean" - }, - "behandlingsresultat" : { - "$ref" : "#/components/schemas/BehandlingsresultatDto" - }, - "behandlingÅrsaker" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BehandlingÅrsakDto" - } - }, - "vilkår" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/VilkårDto" - } - }, - "links" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ResourceLink" - } - }, - "ansvarligBeslutter" : { - "type" : "string" - }, - "aksjonspunkt" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AksjonspunktDto" - } - }, - "harSøknad" : { - "type" : "boolean" - }, - "harRegisterdata" : { - "type" : "boolean" - }, - "harSattEndringsdato" : { - "type" : "boolean" - }, - "alleUttaksperioderAvslått" : { - "type" : "boolean" - }, - "sjekkSimuleringResultat" : { - "type" : "boolean" - }, - "taskStatus" : { - "$ref" : "#/components/schemas/AsyncPollingStatus" - }, - "behandlingKoet" : { - "type" : "boolean" - } - } - }, - "NyBehandlingDto" : { - "required" : [ "behandlingType", "saksnummer" ], - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "behandlingType" : { - "type" : "string", - "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] - }, - "behandlingArsakType" : { - "type" : "string", - "enum" : [ "RE-LOV", "RE-RGLF", "RE-FEFAKTA", "RE-PRSSL", "RE-ANNET", "RE-MDL", "RE-OPTJ", "RE-FRDLING", "RE-INNTK", "RE-FØDSEL", "RE-DØD", "RE-SRTB", "RE-FRIST", "RE-BER-GRUN", "RE-KLAG-U-INNTK", "RE-KLAG-M-INNTK", "ETTER_KLAGE", "RE-MF", "RE-MFIP", "RE-AVAB", "RE-END-FRA-BRUKER", "RE-END-INNTEKTSMELD", "BERØRT-BEHANDLING", "REBEREGN-FERIEPENGER", "RE-UTSATT-START", "RE-SATS-REGULERING", "ENDRE-DEKNINGSGRAD", "INFOBREV_BEHANDLING", "INFOBREV_OPPHOLD", "INFOBREV_PÅMINNELSE", "OPPHØR-NYTT-BARN", "RE-HENDELSE-FØDSEL", "RE-HENDELSE-DØD-F", "RE-HENDELSE-DØD-B", "RE-HENDELSE-DØDFØD", "RE-HENDELSE-UTFLYTTING", "RE-VEDTAK-PSB", "FEIL_PRAKSIS_UTSETTELSE", "FEIL_PRAKSIS_IVERKS_UTSET", "KLAGE_TILBAKE", "RE-YTELSE", "RE-REGISTEROPPL", "KØET-BEHANDLING", "RE-TILST-YT-INNVIL", "RE-TILST-YT-OPPH", "-" ] - }, - "nyBehandlingEtterKlage" : { - "type" : "boolean" - } - } - }, - "ProsessTaskGruppeIdDto" : { - "type" : "object", - "properties" : { - "gruppe" : { - "maxLength" : 250, - "minLength" : 1, - "pattern" : "[a-zA-Z0-9-.]+", - "type" : "string" - } - } - }, - "BekreftedeAksjonspunkterDto" : { - "required" : [ "behandlingUuid", "behandlingVersjon" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "behandlingVersjon" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "bekreftedeAksjonspunktDtoer" : { - "maxItems" : 10, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BekreftetAksjonspunktDto" - } - } - } - }, - "BekreftetAksjonspunktDto" : { - "type" : "object", - "properties" : { - "begrunnelse" : { - "maxLength" : 4000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - } - } - }, - "OverstyringAksjonspunktDto" : { - "type" : "object", - "properties" : { - "begrunnelse" : { - "maxLength" : 4000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - } - } - }, - "OverstyrteAksjonspunkterDto" : { - "required" : [ "behandlingUuid", "behandlingVersjon" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "behandlingVersjon" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "overstyrteAksjonspunktDtoer" : { - "maxItems" : 10, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OverstyringAksjonspunktDto" - } - } - } - }, - "AnkeVurderingResultatDto" : { - "type" : "object", - "properties" : { - "ankeVurdering" : { - "type" : "string", - "enum" : [ "ANKE_STADFESTE_YTELSESVEDTAK", "ANKE_HJEMSENDE_UTEN_OPPHEV", "ANKE_OPPHEVE_OG_HJEMSENDE", "ANKE_OMGJOER", "ANKE_AVVIS", "-" ] - }, - "begrunnelse" : { - "type" : "string" - }, - "fritekstTilBrev" : { - "type" : "string" - }, - "ankeOmgjoerArsak" : { - "type" : "string", - "enum" : [ "NYE_OPPLYSNINGER", "ULIK_REGELVERKSTOLKNING", "ULIK_VURDERING", "PROSESSUELL_FEIL", "-" ] - }, - "ankeVurderingOmgjoer" : { - "type" : "string", - "enum" : [ "ANKE_TIL_GUNST", "ANKE_DELVIS_OMGJOERING_TIL_GUNST", "ANKE_TIL_UGUNST", "-" ] - }, - "erAnkerIkkePart" : { - "type" : "boolean" - }, - "erFristIkkeOverholdt" : { - "type" : "boolean" - }, - "erIkkeKonkret" : { - "type" : "boolean" - }, - "erIkkeSignert" : { - "type" : "boolean" - }, - "erSubsidiartRealitetsbehandles" : { - "type" : "boolean" - }, - "erMerknaderMottatt" : { - "type" : "boolean" - }, - "merknadKommentar" : { - "type" : "string" - }, - "påAnketKlageBehandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "trygderettVurdering" : { - "type" : "string", - "enum" : [ "ANKE_STADFESTE_YTELSESVEDTAK", "ANKE_HJEMSENDE_UTEN_OPPHEV", "ANKE_OPPHEVE_OG_HJEMSENDE", "ANKE_OMGJOER", "ANKE_AVVIS", "-" ] - }, - "trygderettOmgjoerArsak" : { - "type" : "string", - "enum" : [ "NYE_OPPLYSNINGER", "ULIK_REGELVERKSTOLKNING", "ULIK_VURDERING", "PROSESSUELL_FEIL", "-" ] - }, - "trygderettVurderingOmgjoer" : { - "type" : "string", - "enum" : [ "ANKE_TIL_GUNST", "ANKE_DELVIS_OMGJOERING_TIL_GUNST", "ANKE_TIL_UGUNST", "-" ] - }, - "sendtTilTrygderettenDato" : { - "type" : "string", - "format" : "date" - } - } - }, - "AnkebehandlingDto" : { - "type" : "object", - "properties" : { - "ankeVurderingResultat" : { - "$ref" : "#/components/schemas/AnkeVurderingResultatDto" - }, - "underBehandlingKabal" : { - "type" : "boolean" - }, - "underBehandlingKabalTrygderett" : { - "type" : "boolean" - }, - "behandletAvKabal" : { - "type" : "boolean" - } - } - }, - "Beløp" : { - "type" : "object", - "properties" : { - "verdi" : { - "type" : "number" - }, - "indexKey" : { - "type" : "string" - } - } - }, - "DatoIntervallEntitet" : { - "type" : "object", - "properties" : { - "fomDato" : { - "type" : "string", - "format" : "date" - }, - "tomDato" : { - "type" : "string", - "format" : "date" - } - } - }, - "InntektsmeldingDto" : { - "type" : "object", - "properties" : { - "arbeidsgiverReferanse" : { - "type" : "string" - }, - "arbeidsgiver" : { - "type" : "string" - }, - "arbeidsgiverOrgnr" : { - "type" : "string" - }, - "arbeidsgiverStartdato" : { - "type" : "string", - "format" : "date" - }, - "innsendingstidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "utsettelsePerioder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/UtsettelsePeriodeDto" - } - }, - "graderingPerioder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/GraderingPeriodeDto" - } - }, - "getRefusjonBeløpPerMnd" : { - "$ref" : "#/components/schemas/Beløp" - } - } - }, - "NaturalYtelse" : { - "type" : "object", - "properties" : { - "periode" : { - "$ref" : "#/components/schemas/DatoIntervallEntitet" - }, - "beloepPerMnd" : { - "$ref" : "#/components/schemas/Beløp" - }, - "type" : { - "type" : "string", - "enum" : [ "ELEKTRISK_KOMMUNIKASJON", "AKSJER_UNDERKURS", "LOSJI", "KOST_DOEGN", "BESOEKSREISER_HJEM", "KOSTBESPARELSE_HJEM", "RENTEFORDEL_LAAN", "BIL", "KOST_DAGER", "BOLIG", "FORSIKRINGER", "FRI_TRANSPORT", "OPSJONER", "TILSKUDD_BARNEHAGE", "ANNET", "BEDRIFTSBARNEHAGE", "YRKESBIL_KILOMETER", "YRKESBIL_LISTEPRIS", "UTENLANDSK_PENSJONSORDNING", "-" ] - }, - "indexKey" : { - "type" : "string" - } - } - }, - "Refusjon" : { - "type" : "object", - "properties" : { - "refusjonsbeløpMnd" : { - "type" : "number" - }, - "fomDato" : { - "type" : "string", - "format" : "date" - } - } - }, - "ArbeidOgInntektsmeldingDto" : { - "type" : "object", - "properties" : { - "inntektsmeldinger" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InntektsmeldingDto" - } - }, - "arbeidsforhold" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ArbeidsforholdDto" - } - }, - "inntekter" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InntektDto" - } - }, - "skjæringstidspunkt" : { - "type" : "string", - "format" : "date" - } - } - }, - "ArbeidsforholdDto" : { - "type" : "object", - "properties" : { - "arbeidsgiverReferanse" : { - "pattern" : "^\\d{9}$|^\\d{13}$", - "type" : "string" - }, - "arbeidType" : { - "type" : "string", - "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] - } - } - }, - "InntektDto" : { - "type" : "object", - "properties" : { - "arbeidsgiverIdent" : { - "type" : "string" - }, - "inntekter" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InntektspostDto" - } - } - } - }, - "InntektspostDto" : { - "type" : "object", - "properties" : { - "beløp" : { - "type" : "number" - }, - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "type" : { - "type" : "string", - "enum" : [ "-", "LØNN", "YTELSE", "VANLIG", "SELVSTENDIG_NÆRINGSDRIVENDE", "NÆRING_FISKE_FANGST_FAMBARNEHAGE" ] - } - } - }, - "PermisjonOgMangelDto" : { - "type" : "object", - "properties" : { - "permisjonFom" : { - "type" : "string", - "format" : "date" - }, - "permisjonTom" : { - "type" : "string", - "format" : "date" - }, - "type" : { - "type" : "string", - "enum" : [ "-", "PERMISJON", "UTDANNINGSPERMISJON", "UTDANNINGSPERMISJON_IKKE_LOVFESTET", "UTDANNINGSPERMISJON_LOVFESTET", "VELFERDSPERMISJON", "ANNEN_PERMISJON_IKKE_LOVFESTET", "ANNEN_PERMISJON_LOVFESTET", "PERMISJON_MED_FORELDREPENGER", "PERMITTERING", "PERMISJON_VED_MILITÆRTJENESTE" ] - }, - "årsak" : { - "type" : "string", - "enum" : [ "PERMISJON", "MANGLENDE_INNTEKTSMELDING", "INNTEKTSMELDING_UTEN_ARBEIDSFORHOLD", "ENDRING_I_ARBEIDSFORHOLDS_ID", "PERMISJON_UTEN_SLUTTDATO" ] - }, - "permisjonStatus" : { - "type" : "string", - "enum" : [ "-", "BRUK_PERMISJON", "IKKE_BRUK_PERMISJON", "UGYLDIGE_PERIODER" ] - } - } - }, - "ManueltArbeidsforholdDto" : { - "required" : [ "arbeidsgiverIdent", "behandlingUuid", "behandlingVersjon", "fom", "stillingsprosent", "vurdering" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "begrunnelse" : { - "maxLength" : 2000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "arbeidsgiverIdent" : { - "pattern" : "^\\d{9}$|^\\d{13}$", - "type" : "string" - }, - "internArbeidsforholdRef" : { - "maxLength" : 100, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "arbeidsgiverNavn" : { - "maxLength" : 200, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "stillingsprosent" : { - "maximum" : 100, - "minimum" : 0, - "type" : "integer", - "format" : "int32" - }, - "vurdering" : { - "type" : "string", - "enum" : [ "KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_INNTEKTSMELDING", "FORTSETT_UTEN_INNTEKTSMELDING", "MELDING_TIL_ARBEIDSGIVER_NAV_NO", "KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_ARBEIDSFORHOLD", "IKKE_OPPRETT_BASERT_PÅ_INNTEKTSMELDING", "OPPRETT_BASERT_PÅ_INNTEKTSMELDING", "MANUELT_OPPRETTET_AV_SAKSBEHANDLER", "FJERN_FRA_BEHANDLINGEN", "SLÅTT_SAMMEN_MED_ANNET", "BRUK_MED_OVERSTYRT_PERIODE", "INNTEKT_IKKE_MED_I_BG", "BRUK", "NYTT_ARBEIDSFORHOLD", "-" ] - }, - "behandlingVersjon" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - }, - "ManglendeOpplysningerVurderingDto" : { - "required" : [ "arbeidsgiverIdent", "behandlingUuid", "behandlingVersjon" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "vurdering" : { - "type" : "string", - "enum" : [ "KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_INNTEKTSMELDING", "FORTSETT_UTEN_INNTEKTSMELDING", "MELDING_TIL_ARBEIDSGIVER_NAV_NO", "KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_ARBEIDSFORHOLD", "IKKE_OPPRETT_BASERT_PÅ_INNTEKTSMELDING", "OPPRETT_BASERT_PÅ_INNTEKTSMELDING", "MANUELT_OPPRETTET_AV_SAKSBEHANDLER", "FJERN_FRA_BEHANDLINGEN", "SLÅTT_SAMMEN_MED_ANNET", "BRUK_MED_OVERSTYRT_PERIODE", "INNTEKT_IKKE_MED_I_BG", "BRUK", "NYTT_ARBEIDSFORHOLD", "-" ] - }, - "begrunnelse" : { - "maxLength" : 100000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "arbeidsgiverIdent" : { - "pattern" : "^\\d{9}$|^\\d{13}$", - "type" : "string" - }, - "internArbeidsforholdRef" : { - "maxLength" : 100, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "behandlingVersjon" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - }, - "BehandlingIdVersjonDto" : { - "required" : [ "behandlingUuid", "behandlingVersjon" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "behandlingVersjon" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - }, - "GraderingPeriodeDto" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "arbeidsprosent" : { - "type" : "number" - } - } - }, - "InntektsmeldingerDto" : { - "type" : "object", - "properties" : { - "inntektsmeldinger" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InntektsmeldingDto" - } - } - } - }, - "UtsettelsePeriodeDto" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "utsettelseArsak" : { - "type" : "string", - "enum" : [ "ARBEID", "LOVBESTEMT_FERIE", "SYKDOM", "INSTITUSJONSOPPHOLD_SØKER", "INSTITUSJONSOPPHOLD_BARNET", "HV_OVELSE", "NAV_TILTAK", "FRI", "-" ] - } - } - }, - "ArbeidsgiverOpplysningerDto" : { - "type" : "object", - "properties" : { - "referanse" : { - "type" : "string" - }, - "identifikator" : { - "type" : "string" - }, - "navn" : { - "type" : "string" - }, - "fødselsdato" : { - "type" : "string", - "format" : "date" - }, - "erPrivatPerson" : { - "type" : "boolean" - } - } - }, - "ArbeidsgiverOversiktDto" : { - "type" : "object", - "properties" : { - "arbeidsgivere" : { - "type" : "object", - "additionalProperties" : { - "$ref" : "#/components/schemas/ArbeidsgiverOpplysningerDto" - } - } - } - }, - "IAYYtelseDto" : { - "type" : "object", - "properties" : { - "relatertTilgrensendeYtelserForSoker" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/RelaterteYtelserDto" - } - }, - "relatertTilgrensendeYtelserForAnnenForelder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/RelaterteYtelserDto" - } - }, - "innvilgetRelatertTilgrensendeYtelserForAnnenForelder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/RelaterteYtelserDto" - } - } - } - }, - "RelaterteYtelserDto" : { - "type" : "object", - "properties" : { - "relatertYtelseNavn" : { - "type" : "string" - }, - "tilgrensendeYtelserListe" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/TilgrensendeYtelserDto" - } - } - } - }, - "TilgrensendeYtelserDto" : { - "type" : "object", - "properties" : { - "periodeFraDato" : { - "type" : "string", - "format" : "date" - }, - "periodeTilDato" : { - "type" : "string", - "format" : "date" - }, - "statusNavn" : { - "type" : "string" - }, - "saksNummer" : { - "type" : "string" - } - } - }, - "ATogFLISammeOrganisasjonDto" : { - "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "inntektskategori", "kilde" ], - "type" : "object", - "properties" : { - "andelsnr" : { - "maximum" : 1000, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "arbeidsforhold" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" - }, - "inntektskategori" : { - "type" : "string", - "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] - }, - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - }, - "kilde" : { - "type" : "string", - "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] - }, - "lagtTilAvSaksbehandler" : { - "type" : "boolean" - }, - "fastsattAvSaksbehandler" : { - "type" : "boolean" - }, - "andelIArbeid" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "type" : "number" - } - }, - "inntektPrMnd" : { - "type" : "number" - } - } - }, - "AktivitetTomDatoMappingDto" : { - "required" : [ "aktiviteter", "tom" ], - "type" : "object", - "properties" : { - "tom" : { - "type" : "string", - "format" : "date" - }, - "aktiviteter" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BeregningAktivitetDto" - } - } - } - }, - "AndelForFaktaOmBeregningDto" : { - "type" : "object", - "properties" : { - "belopReadOnly" : { - "type" : "number" - }, - "fastsattBelop" : { - "type" : "number" - }, - "inntektskategori" : { - "type" : "string", - "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] - }, - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - }, - "refusjonskrav" : { - "type" : "number" - }, - "arbeidsforhold" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" - }, - "andelsnr" : { - "maximum" : 1000, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "skalKunneEndreAktivitet" : { - "type" : "boolean" - }, - "lagtTilAvSaksbehandler" : { - "type" : "boolean" - } - } - }, - "AndelMedBeløpDto" : { - "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "inntektskategori", "kilde" ], - "type" : "object", - "properties" : { - "andelsnr" : { - "maximum" : 1000, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "arbeidsforhold" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" - }, - "inntektskategori" : { - "type" : "string", - "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] - }, - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - }, - "kilde" : { - "type" : "string", - "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] - }, - "lagtTilAvSaksbehandler" : { - "type" : "boolean" - }, - "fastsattAvSaksbehandler" : { - "type" : "boolean" - }, - "andelIArbeid" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "type" : "number" - } - }, - "fastsattBelopPrMnd" : { - "type" : "number" - } - } - }, - "Arbeidsgiver" : { - "type" : "object", - "properties" : { - "aktørId" : { - "type" : "string" - }, - "indexKey" : { - "type" : "string" - }, - "orgnr" : { - "type" : "string" - }, - "identifikator" : { - "type" : "string" - }, - "erVirksomhet" : { - "type" : "boolean" - } - } - }, - "ArbeidstakerUtenInntektsmeldingAndelDto" : { - "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "inntektskategori", "kilde" ], - "type" : "object", - "properties" : { - "andelsnr" : { - "maximum" : 1000, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "arbeidsforhold" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" - }, - "inntektskategori" : { - "type" : "string", - "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] - }, - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - }, - "kilde" : { - "type" : "string", - "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] - }, - "lagtTilAvSaksbehandler" : { - "type" : "boolean" - }, - "fastsattAvSaksbehandler" : { - "type" : "boolean" - }, - "andelIArbeid" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "type" : "number" - } - }, - "mottarYtelse" : { - "type" : "boolean" - }, - "inntektPrMnd" : { - "type" : "number" - } - } - }, - "AvklarAktiviteterDto" : { - "required" : [ "skjæringstidspunkt" ], - "type" : "object", - "properties" : { - "aktiviteterTomDatoMapping" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AktivitetTomDatoMappingDto" - } - }, - "skjæringstidspunkt" : { - "type" : "string", - "format" : "date" - } - } - }, - "AvklaringsbehovDto" : { - "required" : [ "definisjon", "erTrukket", "kanLoses", "status" ], - "type" : "object", - "properties" : { - "definisjon" : { - "type" : "string", - "enum" : [ "FASTSETT_BG_AT_FL", "VURDER_VARIG_ENDRT_NYOPPSTR_NAERNG_SN", "VURDER_VARIG_ENDRT_ARB_SITSJN_MDL_INAKTV", "FORDEL_BG", "FASTSETT_BG_TB_ARB", "VURDER_NYTT_INNTKTSFRHLD", "VURDER_REPRSNTR_STORTNGT", "FASTSETT_BG_SN_NY_I_ARB_LIVT", "AVKLAR_AKTIVITETER", "VURDER_FAKTA_ATFL_SN", "VURDER_REFUSJONSKRAV", "OVST_BEREGNINGSAKTIVITETER", "OVST_INNTEKT", "AUTO_VENT_PAA_INNTKT_RAP_FRST", "AUTO_VENT_PAA_SISTE_AAP_DP_MELDKRT", "AUTO_VENT_FRISINN", "INGEN_AKTIVITETER" ] - }, - "status" : { - "type" : "string", - "enum" : [ "OPPR", "UTFO", "AVBR" ] - }, - "kanLoses" : { - "type" : "boolean" - }, - "erTrukket" : { - "type" : "boolean" - }, - "begrunnelse" : { - "maxLength" : 5000, - "minLength" : 0, - "type" : "string" - }, - "vurdertAv" : { - "maxLength" : 20, - "minLength" : 0, - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}§]+$", - "type" : "string" - }, - "vurdertTidspunkt" : { - "type" : "string", - "format" : "date-time" - } - } - }, - "AvslagsårsakPrPeriodeDto" : { - "required" : [ "avslagsårsak", "fom", "tom" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "avslagsårsak" : { - "type" : "string", - "enum" : [ "FOR_LAVT_BG", "INGEN_FRILANS_I_PERIODE_UTEN_YTELSE", "AVKORTET_GRUNNET_LØPENDE_INNTEKT", "AVKORTET_GRUNNET_ANNEN_INNTEKT" ] - } - } - }, - "BeregningAktivitetDto" : { - "required" : [ "arbeidsforholdType", "fom", "tom" ], - "type" : "object", - "properties" : { - "arbeidsgiverIdent" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "eksternArbeidsforholdId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "arbeidsforholdId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "arbeidsforholdType" : { - "type" : "string", - "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "SYKEPENGER_AV_DAGPENGER", "PLEIEPENGER_AV_DAGPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] - }, - "skalBrukes" : { - "type" : "boolean" - } - } - }, - "BeregningsgrunnlagArbeidsforholdDto" : { - "type" : "object", - "properties" : { - "arbeidsgiverIdent" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "startdato" : { - "type" : "string", - "format" : "date" - }, - "opphoersdato" : { - "type" : "string", - "format" : "date" - }, - "arbeidsforholdId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "eksternArbeidsforholdId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "arbeidsforholdType" : { - "type" : "string", - "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "SYKEPENGER_AV_DAGPENGER", "PLEIEPENGER_AV_DAGPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] - }, - "refusjonPrAar" : { - "type" : "number" - }, - "belopFraInntektsmeldingPrMnd" : { - "type" : "number" - }, - "organisasjonstype" : { - "type" : "string", - "enum" : [ "JURIDISK_ENHET", "VIRKSOMHET", "KUNSTIG", "-" ] - }, - "naturalytelseBortfaltPrÅr" : { - "type" : "number" - }, - "naturalytelseTilkommetPrÅr" : { - "type" : "number" - } - } - }, - "BeregningsgrunnlagDto" : { - "required" : [ "avklaringsbehov", "erOverstyrtInntekt", "sammenligningsgrunnlag", "skjaeringstidspunktBeregning", "skjæringstidspunkt" ], - "type" : "object", - "properties" : { - "avklaringsbehov" : { - "maxItems" : 10, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AvklaringsbehovDto" - } - }, - "skjaeringstidspunktBeregning" : { - "type" : "string", - "format" : "date" - }, - "skjæringstidspunkt" : { - "type" : "string", - "format" : "date" - }, - "aktivitetStatus" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - } - }, - "beregningsgrunnlagPeriode" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagPeriodeDto" - } - }, - "sammenligningsgrunnlag" : { - "$ref" : "#/components/schemas/SammenligningsgrunnlagDto" - }, - "sammenligningsgrunnlagPrStatus" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SammenligningsgrunnlagDto" - } - }, - "halvG" : { - "type" : "number" - }, - "grunnbeløp" : { - "type" : "number" - }, - "faktaOmBeregning" : { - "$ref" : "#/components/schemas/FaktaOmBeregningDto" - }, - "andelerMedGraderingUtenBG" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" - } - }, - "hjemmel" : { - "type" : "string", - "enum" : [ "F_9_9", "F_9_8_8_28", "F_9_9_8_28_8_30", "F_9_9_8_35", "F_9_9_8_38", "F_9_9_8_40", "F_9_9_8_41", "F_9_9_8_42", "F_9_9_8_43", "F_9_9_8_47", "F_9_9_8_49", "F_14_7", "F_14_7_8_30", "F_14_7_8_28_8_30", "F_14_7_8_35", "F_14_7_8_38", "F_14_7_8_40", "F_14_7_8_41", "F_14_7_8_42", "F_14_7_8_43", "F_14_7_8_47", "F_14_7_8_49", "F_22_13_6", "COV_1_5", "KORONALOVEN_3", "-" ] - }, - "faktaOmFordeling" : { - "$ref" : "#/components/schemas/FordelingDto" - }, - "dekningsgrad" : { - "maximum" : 100, - "minimum" : 0, - "type" : "integer", - "format" : "int32" - }, - "ytelsesspesifiktGrunnlag" : { - "$ref" : "#/components/schemas/YtelsespesifiktGrunnlagDto" - }, - "refusjonTilVurdering" : { - "$ref" : "#/components/schemas/RefusjonTilVurderingDto" - }, - "erOverstyrtInntekt" : { - "type" : "boolean" - }, - "vilkårsperiodeFom" : { - "type" : "string", - "format" : "date" - }, - "inntektsgrunnlag" : { - "$ref" : "#/components/schemas/InntektsgrunnlagDto" - }, - "forlengelseperioder" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Periode" - } - } - } - }, - "BeregningsgrunnlagPeriodeDto" : { - "type" : "object", - "properties" : { - "beregningsgrunnlagPeriodeFom" : { - "type" : "string", - "format" : "date" - }, - "beregningsgrunnlagPeriodeTom" : { - "type" : "string", - "format" : "date" - }, - "beregnetPrAar" : { - "type" : "number" - }, - "bruttoPrAar" : { - "type" : "number" - }, - "bruttoInkludertBortfaltNaturalytelsePrAar" : { - "type" : "number" - }, - "avkortetPrAar" : { - "type" : "number" - }, - "redusertPrAar" : { - "type" : "number" - }, - "periodeAarsaker" : { - "maxItems" : 2147483647, - "minItems" : 0, - "uniqueItems" : true, - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "NATURALYTELSE_BORTFALT", "ARBEIDSFORHOLD_AVSLUTTET", "NATURALYTELSE_TILKOMMER", "ENDRING_I_REFUSJONSKRAV", "REFUSJON_OPPHØRER", "GRADERING", "GRADERING_OPPHØRER", "ENDRING_I_AKTIVITETER_SØKT_FOR", "TILKOMMET_INNTEKT", "TILKOMMET_INNTEKT_MANUELT", "TILKOMMET_INNTEKT_AVSLUTTET", "REFUSJON_AVSLÅTT", "REPRESENTERER_STORTINGET", "REPRESENTERER_STORTINGET_AVSLUTTET", "-" ] - } - }, - "dagsats" : { - "maximum" : 10000000.00, - "exclusiveMaximum" : false, - "minimum" : 0.00, - "exclusiveMinimum" : false, - "type" : "integer", - "format" : "int64" - }, - "beregningsgrunnlagPrStatusOgAndel" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" - } - } - } - }, - "BeregningsgrunnlagPrStatusOgAndelATDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" - }, { - "type" : "object", - "properties" : { - "bortfaltNaturalytelse" : { - "type" : "number" - } - } - } ] - }, - "BeregningsgrunnlagPrStatusOgAndelDto" : { - "required" : [ "dtoType" ], - "type" : "object", - "properties" : { - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - }, - "beregningsperiodeFom" : { - "type" : "string", - "format" : "date" - }, - "beregningsperiodeTom" : { - "type" : "string", - "format" : "date" - }, - "beregnetPrAar" : { - "type" : "number" - }, - "overstyrtPrAar" : { - "type" : "number" - }, - "bruttoPrAar" : { - "type" : "number" - }, - "avkortetPrAar" : { - "type" : "number" - }, - "redusertPrAar" : { - "type" : "number" - }, - "erTidsbegrensetArbeidsforhold" : { - "type" : "boolean" - }, - "erNyIArbeidslivet" : { - "type" : "boolean" - }, - "lonnsendringIBeregningsperioden" : { - "type" : "boolean" - }, - "andelsnr" : { - "maximum" : 1000, - "minimum" : 1, - "type" : "integer", - "format" : "int64" - }, - "besteberegningPrAar" : { - "type" : "number" - }, - "inntektskategori" : { - "type" : "string", - "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] - }, - "arbeidsforhold" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" - }, - "fastsattAvSaksbehandler" : { - "type" : "boolean" - }, - "lagtTilAvSaksbehandler" : { - "type" : "boolean" - }, - "belopPrMndEtterAOrdningen" : { - "type" : "number" - }, - "belopPrAarEtterAOrdningen" : { - "type" : "number" - }, - "dagsats" : { - "maximum" : 1000000, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "originalDagsatsFraTilstøtendeYtelse" : { - "maximum" : 1000000, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "fordeltPrAar" : { - "type" : "number" - }, - "erTilkommetAndel" : { - "type" : "boolean" - }, - "skalFastsetteGrunnlag" : { - "type" : "boolean" - }, - "dtoType" : { - "type" : "string" - } - }, - "discriminator" : { - "propertyName" : "dtoType" - } - }, - "BeregningsgrunnlagPrStatusOgAndelDtoFelles" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" - } ] - }, - "BeregningsgrunnlagPrStatusOgAndelFLDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" - }, { - "type" : "object", - "properties" : { - "erNyoppstartet" : { - "type" : "boolean" - } - } - } ] - }, - "BeregningsgrunnlagPrStatusOgAndelSNDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" - }, { - "type" : "object", - "properties" : { - "pgiSnitt" : { - "type" : "number" - }, - "pgiVerdier" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/PgiDto" - } - }, - "næringer" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/EgenNæringDto" - } - } - } - } ] - }, - "BeregningsgrunnlagPrStatusOgAndelYtelseDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/BeregningsgrunnlagPrStatusOgAndelDto" - }, { - "type" : "object", - "properties" : { - "belopFraMeldekortPrMnd" : { - "type" : "number" - }, - "belopFraMeldekortPrAar" : { - "type" : "number" - }, - "oppjustertGrunnlag" : { - "type" : "number" - } - } - } ] - }, - "BesteberegningInntektDto" : { - "required" : [ "inntekt", "opptjeningAktivitetType" ], - "type" : "object", - "properties" : { - "arbeidsgiverId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "arbeidsgiverIdent" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "arbeidsforholdId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "opptjeningAktivitetType" : { - "type" : "string", - "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "SYKEPENGER_AV_DAGPENGER", "PLEIEPENGER_AV_DAGPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] - }, - "inntekt" : { - "type" : "number" - } - } - }, - "BesteberegningMånedGrunnlagDto" : { - "required" : [ "fom", "tom" ], - "type" : "object", - "properties" : { - "inntekter" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BesteberegningInntektDto" - } - }, - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - } - } - }, - "BesteberegninggrunnlagDto" : { - "type" : "object", - "properties" : { - "besteMåneder" : { - "maxItems" : 6, - "minItems" : 6, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BesteberegningMånedGrunnlagDto" - } - }, - "avvik" : { - "type" : "number" - } - } - }, - "EgenNæringDto" : { - "type" : "object", - "properties" : { - "utenlandskvirksomhetsnavn" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "orgnr" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "erVarigEndret" : { - "type" : "boolean" - }, - "erNyoppstartet" : { - "type" : "boolean" - }, - "virksomhetType" : { - "type" : "string", - "enum" : [ "DAGMAMMA", "FISKE", "FRILANSER", "JORDBRUK_SKOGBRUK", "ANNEN", "-" ] - }, - "begrunnelse" : { - "type" : "string" - }, - "endringsdato" : { - "type" : "string", - "format" : "date" - }, - "oppstartsdato" : { - "type" : "string", - "format" : "date" - }, - "opphørsdato" : { - "type" : "string", - "format" : "date" - }, - "regnskapsførerNavn" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "regnskapsførerTlf" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "kanRegnskapsførerKontaktes" : { - "type" : "boolean" - }, - "erNyIArbeidslivet" : { - "type" : "boolean" - }, - "oppgittInntekt" : { - "type" : "number" - } - } - }, - "FaktaOmBeregningAndelDto" : { - "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "inntektskategori", "kilde" ], - "type" : "object", - "properties" : { - "andelsnr" : { - "maximum" : 1000, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "arbeidsforhold" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" - }, - "inntektskategori" : { - "type" : "string", - "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] - }, - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - }, - "kilde" : { - "type" : "string", - "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] - }, - "lagtTilAvSaksbehandler" : { - "type" : "boolean" - }, - "fastsattAvSaksbehandler" : { - "type" : "boolean" - }, - "andelIArbeid" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "type" : "number" - } - } - } - }, - "FaktaOmBeregningDto" : { - "type" : "object", - "properties" : { - "saksopplysninger" : { - "$ref" : "#/components/schemas/Saksopplysninger" - }, - "kortvarigeArbeidsforhold" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/KortvarigeArbeidsforholdDto" - } - }, - "frilansAndel" : { - "$ref" : "#/components/schemas/FaktaOmBeregningAndelDto" - }, - "kunYtelse" : { - "$ref" : "#/components/schemas/KunYtelseDto" - }, - "faktaOmBeregningTilfeller" : { - "maxItems" : 15, - "minItems" : 0, - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "VURDER_TIDSBEGRENSET_ARBEIDSFORHOLD", "VURDER_SN_NY_I_ARBEIDSLIVET", "VURDER_NYOPPSTARTET_FL", "FASTSETT_MAANEDSINNTEKT_FL", "FASTSETT_BG_ARBEIDSTAKER_UTEN_INNTEKTSMELDING", "VURDER_LØNNSENDRING", "FASTSETT_MÅNEDSLØNN_ARBEIDSTAKER_UTEN_INNTEKTSMELDING", "VURDER_AT_OG_FL_I_SAMME_ORGANISASJON", "FASTSETT_BESTEBEREGNING_FØDENDE_KVINNE", "VURDER_ETTERLØNN_SLUTTPAKKE", "FASTSETT_ETTERLØNN_SLUTTPAKKE", "VURDER_MOTTAR_YTELSE", "VURDER_BESTEBEREGNING", "VURDER_MILITÆR_SIVILTJENESTE", "VURDER_REFUSJONSKRAV_SOM_HAR_KOMMET_FOR_SENT", "FASTSETT_BG_KUN_YTELSE", "TILSTØTENDE_YTELSE", "FASTSETT_ENDRET_BEREGNINGSGRUNNLAG", "-" ] - } - }, - "arbeidstakerOgFrilanserISammeOrganisasjonListe" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ATogFLISammeOrganisasjonDto" - } - }, - "arbeidsforholdMedLønnsendringUtenIM" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FaktaOmBeregningAndelDto" - } - }, - "vurderMottarYtelse" : { - "$ref" : "#/components/schemas/VurderMottarYtelseDto" - }, - "avklarAktiviteter" : { - "$ref" : "#/components/schemas/AvklarAktiviteterDto" - }, - "vurderBesteberegning" : { - "$ref" : "#/components/schemas/VurderBesteberegningDto" - }, - "andelerForFaktaOmBeregning" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AndelForFaktaOmBeregningDto" - } - }, - "vurderMilitaer" : { - "$ref" : "#/components/schemas/VurderMilitærDto" - }, - "refusjonskravSomKommerForSentListe" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/RefusjonskravSomKommerForSentDto" - } - } - } - }, - "FordelBeregningsgrunnlagAndelDto" : { - "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "arbeidsforholdType", "inntektskategori", "kilde" ], - "type" : "object", - "properties" : { - "andelsnr" : { - "maximum" : 1000, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "arbeidsforhold" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" - }, - "inntektskategori" : { - "type" : "string", - "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] - }, - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - }, - "kilde" : { - "type" : "string", - "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] - }, - "lagtTilAvSaksbehandler" : { - "type" : "boolean" - }, - "fastsattAvSaksbehandler" : { - "type" : "boolean" - }, - "andelIArbeid" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "type" : "number" - } - }, - "fordelingForrigeBehandlingPrAar" : { - "type" : "number" - }, - "refusjonskravPrAar" : { - "type" : "number" - }, - "fordeltPrAar" : { - "type" : "number" - }, - "belopFraInntektsmeldingPrAar" : { - "type" : "number" - }, - "refusjonskravFraInntektsmeldingPrAar" : { - "type" : "number" - }, - "nyttArbeidsforhold" : { - "type" : "boolean" - }, - "arbeidsforholdType" : { - "type" : "string", - "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "SYKEPENGER_AV_DAGPENGER", "PLEIEPENGER_AV_DAGPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] - } - } - }, - "FordelBeregningsgrunnlagArbeidsforholdDto" : { - "required" : [ "perioderMedGraderingEllerRefusjon" ], - "type" : "object", - "properties" : { - "arbeidsgiverIdent" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "startdato" : { - "type" : "string", - "format" : "date" - }, - "opphoersdato" : { - "type" : "string", - "format" : "date" - }, - "arbeidsforholdId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "eksternArbeidsforholdId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "arbeidsforholdType" : { - "type" : "string", - "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "SYKEPENGER_AV_DAGPENGER", "PLEIEPENGER_AV_DAGPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] - }, - "refusjonPrAar" : { - "type" : "number" - }, - "belopFraInntektsmeldingPrMnd" : { - "type" : "number" - }, - "organisasjonstype" : { - "type" : "string", - "enum" : [ "JURIDISK_ENHET", "VIRKSOMHET", "KUNSTIG", "-" ] - }, - "naturalytelseBortfaltPrÅr" : { - "type" : "number" - }, - "naturalytelseTilkommetPrÅr" : { - "type" : "number" - }, - "perioderMedGraderingEllerRefusjon" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/NyPeriodeDto" - } - }, - "permisjon" : { - "$ref" : "#/components/schemas/PermisjonDto" - } - } - }, - "FordelBeregningsgrunnlagDto" : { - "required" : [ "arbeidsforholdTilFordeling", "fordelBeregningsgrunnlagPerioder" ], - "type" : "object", - "properties" : { - "fordelBeregningsgrunnlagPerioder" : { - "maxItems" : 5000, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FordelBeregningsgrunnlagPeriodeDto" - } - }, - "arbeidsforholdTilFordeling" : { - "maxItems" : 500, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FordelBeregningsgrunnlagArbeidsforholdDto" - } - } - } - }, - "FordelBeregningsgrunnlagPeriodeDto" : { - "required" : [ "fom", "fordelBeregningsgrunnlagAndeler" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "fordelBeregningsgrunnlagAndeler" : { - "maxItems" : 100, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FordelBeregningsgrunnlagAndelDto" - } - }, - "harPeriodeAarsakGraderingEllerRefusjon" : { - "type" : "boolean" - }, - "skalRedigereInntekt" : { - "type" : "boolean" - }, - "skalPreutfyllesMedBeregningsgrunnlag" : { - "type" : "boolean" - }, - "skalKunneEndreRefusjon" : { - "type" : "boolean" - } - } - }, - "FordelingDto" : { - "type" : "object", - "properties" : { - "vurderNyttInntektsforholdDto" : { - "$ref" : "#/components/schemas/VurderNyttInntektsforholdDto" - }, - "vurderRepresentererStortinget" : { - "$ref" : "#/components/schemas/VurderRepresentererStortingetDto" - }, - "fordelBeregningsgrunnlag" : { - "$ref" : "#/components/schemas/FordelBeregningsgrunnlagDto" - } - } - }, - "ForeldrepengerGrunnlagDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/YtelsespesifiktGrunnlagDto" - }, { - "type" : "object", - "properties" : { - "besteberegninggrunnlag" : { - "$ref" : "#/components/schemas/BesteberegninggrunnlagDto" - } - } - } ] - }, - "FrisinnAndelDto" : { - "required" : [ "statusSøktFor" ], - "type" : "object", - "properties" : { - "oppgittInntekt" : { - "type" : "number" - }, - "statusSøktFor" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - } - } - }, - "FrisinnGrunnlagDto" : { - "required" : [ "avslagsårsakPrPeriode", "frisinnPerioder", "perioderSøktFor" ], - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/YtelsespesifiktGrunnlagDto" - }, { - "type" : "object", - "properties" : { - "opplysningerFL" : { - "$ref" : "#/components/schemas/SøknadsopplysningerDto" - }, - "opplysningerSN" : { - "$ref" : "#/components/schemas/SøknadsopplysningerDto" - }, - "perioderSøktFor" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OpplystPeriodeDto" - } - }, - "frisinnPerioder" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FrisinnPeriodeDto" - } - }, - "avslagsårsakPrPeriode" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AvslagsårsakPrPeriodeDto" - } - } - } - } ] - }, - "FrisinnPeriodeDto" : { - "required" : [ "fom", "frisinnAndeler", "tom" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "oppgittArbeidsinntekt" : { - "type" : "number" - }, - "frisinnAndeler" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FrisinnAndelDto" - } - } - } - }, - "InntektsforholdDto" : { - "required" : [ "aktivitetStatus", "periode" ], - "type" : "object", - "properties" : { - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - }, - "arbeidsgiverId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "arbeidsforholdId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "eksternArbeidsforholdId" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "periode" : { - "$ref" : "#/components/schemas/Periode" - }, - "inntektFraInntektsmeldingPrÅr" : { - "maximum" : 178956970, - "minimum" : 0, - "type" : "integer", - "format" : "int32" - }, - "bruttoInntektPrÅr" : { - "maximum" : 178956970, - "minimum" : 0, - "type" : "integer", - "format" : "int32" - }, - "skalRedusereUtbetaling" : { - "type" : "boolean" - } - } - }, - "InntektsgrunnlagDto" : { - "required" : [ "beregningsgrunnlagInntekter", "måneder", "pgiGrunnlag", "sammenligningsgrunnlagInntekter" ], - "type" : "object", - "properties" : { - "måneder" : { - "maxItems" : 12, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InntektsgrunnlagMånedDto" - } - }, - "pgiGrunnlag" : { - "maxItems" : 3, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/PGIPrÅrDto" - } - }, - "sammenligningsgrunnlagInntekter" : { - "maxItems" : 12, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InntektsgrunnlagMånedDto" - } - }, - "beregningsgrunnlagInntekter" : { - "maxItems" : 3, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InntektsgrunnlagMånedDto" - } - } - } - }, - "InntektsgrunnlagInntektDto" : { - "required" : [ "inntektAktivitetType" ], - "type" : "object", - "properties" : { - "inntektAktivitetType" : { - "type" : "string", - "enum" : [ "ARBEIDSTAKERINNTEKT", "FRILANSINNTEKT", "YTELSEINNTEKT", "-" ] - }, - "beløp" : { - "type" : "number" - }, - "arbeidsgiverIdent" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - } - } - }, - "InntektsgrunnlagMånedDto" : { - "required" : [ "fom", "tom" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "inntekter" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InntektsgrunnlagInntektDto" - } - } - } - }, - "KortvarigeArbeidsforholdDto" : { - "required" : [ "aktivitetStatus", "andelIArbeid", "andelsnr", "inntektskategori", "kilde" ], - "type" : "object", - "properties" : { - "andelsnr" : { - "maximum" : 1000, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "arbeidsforhold" : { - "$ref" : "#/components/schemas/BeregningsgrunnlagArbeidsforholdDto" - }, - "inntektskategori" : { - "type" : "string", - "enum" : [ "ARBEIDSTAKER", "FRILANSER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SJØMANN", "DAGMAMMA", "JORDBRUKER", "FISKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "-" ] - }, - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - }, - "kilde" : { - "type" : "string", - "enum" : [ "SAKSBEHANDLER_KOFAKBER", "PROSESS_BESTEBEREGNING", "SAKSBEHANDLER_FORDELING", "PROSESS_PERIODISERING", "PROSESS_OMFORDELING", "PROSESS_START", "PROSESS_PERIODISERING_TILKOMMET_INNTEKT" ] - }, - "lagtTilAvSaksbehandler" : { - "type" : "boolean" - }, - "fastsattAvSaksbehandler" : { - "type" : "boolean" - }, - "andelIArbeid" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "type" : "number" - } - }, - "erTidsbegrensetArbeidsforhold" : { - "type" : "boolean" - } - } - }, - "KunYtelseDto" : { - "type" : "object", - "properties" : { - "andeler" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AndelMedBeløpDto" - } - }, - "fodendeKvinneMedDP" : { - "type" : "boolean" - }, - "erBesteberegning" : { - "type" : "boolean" - } - } - }, - "LønnsendringSaksopplysningDto" : { - "required" : [ "arbeidsforhold", "lønnsendringscenario", "sisteLønnsendringsdato" ], - "type" : "object", - "properties" : { - "sisteLønnsendringsdato" : { - "type" : "string", - "format" : "date" - }, - "lønnsendringscenario" : { - "type" : "string", - "enum" : [ "MANUELT_BEHANDLET", "DELVIS_MÅNEDSINNTEKT_SISTE_MND", "FULL_MÅNEDSINNTEKT_EN_MND", "FULL_MÅNEDSINNTEKT_TO_MND" ] - }, - "arbeidsforhold" : { - "$ref" : "#/components/schemas/ArbeidsforholdDto" - } - } - }, - "NyPeriodeDto" : { - "type" : "object", - "properties" : { - "erRefusjon" : { - "type" : "boolean" - }, - "erGradering" : { - "type" : "boolean" - }, - "erSøktYtelse" : { - "type" : "boolean" - }, - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - } - } - }, - "OmsorgspengeGrunnlagDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/YtelsespesifiktGrunnlagDto" - }, { - "type" : "object", - "properties" : { - "skalAvviksvurdere" : { - "type" : "boolean" - } - } - } ] - }, - "OpplystPeriodeDto" : { - "required" : [ "fom", "statusSøktFor", "tom" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "statusSøktFor" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - } - } - }, - "PGIGrunnlagDto" : { - "required" : [ "pgiType" ], - "type" : "object", - "properties" : { - "pgiType" : { - "type" : "string", - "enum" : [ "LØNN", "NÆRING", "-" ] - }, - "beløp" : { - "type" : "number" - } - } - }, - "PGIPrÅrDto" : { - "required" : [ "år" ], - "type" : "object", - "properties" : { - "år" : { - "maximum" : 3000, - "minimum" : 1900, - "type" : "integer", - "format" : "int32" - }, - "inntekter" : { - "maxItems" : 3, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/PGIGrunnlagDto" - } - } - } - }, - "Periode" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - } - } - }, - "PermisjonDto" : { - "required" : [ "permisjonFom", "permisjonTom" ], - "type" : "object", - "properties" : { - "permisjonFom" : { - "type" : "string", - "format" : "date" - }, - "permisjonTom" : { - "type" : "string", - "format" : "date" - } - } - }, - "PgiDto" : { - "type" : "object", - "properties" : { - "beløp" : { - "type" : "number" - }, - "årstall" : { - "maximum" : 3000, - "minimum" : 0, - "type" : "integer", - "format" : "int32" - } - } - }, - "RefusjonAndelTilVurderingDto" : { - "required" : [ "aktivitetStatus" ], - "type" : "object", - "properties" : { - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "MIDL_INAKTIV", "AAP", "AT", "DP", "SP_AV_DP", "PSB_AV_DP", "FL", "MS", "SN", "AT_FL", "AT_SN", "FL_SN", "AT_FL_SN", "BA", "KUN_YTELSE", "TY", "VENTELØNN_VARTPENGER", "-" ] - }, - "tidligereUtbetalinger" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/TidligereUtbetalingDto" - } - }, - "nyttRefusjonskravFom" : { - "type" : "string", - "format" : "date" - }, - "fastsattNyttRefusjonskravFom" : { - "type" : "string", - "format" : "date" - }, - "tidligsteMuligeRefusjonsdato" : { - "type" : "string", - "format" : "date" - }, - "arbeidsgiver" : { - "$ref" : "#/components/schemas/Arbeidsgiver" - }, - "internArbeidsforholdRef" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "eksternArbeidsforholdRef" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "skalKunneFastsetteDelvisRefusjon" : { - "type" : "boolean" - }, - "fastsattDelvisRefusjonPrMnd" : { - "type" : "number" - }, - "maksTillattDelvisRefusjonPrMnd" : { - "type" : "number" - } - } - }, - "RefusjonTilVurderingDto" : { - "required" : [ "andeler" ], - "type" : "object", - "properties" : { - "andeler" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/RefusjonAndelTilVurderingDto" - } - } - } - }, - "RefusjonskravSomKommerForSentDto" : { - "required" : [ "arbeidsgiverIdent" ], - "type" : "object", - "properties" : { - "arbeidsgiverIdent" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "erRefusjonskravGyldig" : { - "type" : "boolean" - } - } - }, - "Saksopplysninger" : { - "type" : "object", - "properties" : { - "arbeidsforholdMedLønnsendring" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ArbeidsforholdDto" - } - }, - "lønnsendringSaksopplysning" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/LønnsendringSaksopplysningDto" - } - }, - "kortvarigeArbeidsforhold" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ArbeidsforholdDto" - } - } - } - }, - "SammenligningsgrunnlagDto" : { - "type" : "object", - "properties" : { - "sammenligningsgrunnlagFom" : { - "type" : "string", - "format" : "date" - }, - "sammenligningsgrunnlagTom" : { - "type" : "string", - "format" : "date" - }, - "rapportertPrAar" : { - "type" : "number" - }, - "avvikPromille" : { - "maximum" : 10000000.00, - "exclusiveMaximum" : false, - "minimum" : 0.00, - "exclusiveMinimum" : false, - "type" : "number" - }, - "avvikProsent" : { - "maximum" : 10000000.00, - "exclusiveMaximum" : false, - "minimum" : 0.00, - "exclusiveMinimum" : false, - "type" : "number" - }, - "sammenligningsgrunnlagType" : { - "type" : "string", - "enum" : [ "SAMMENLIGNING_AT", "SAMMENLIGNING_FL", "SAMMENLIGNING_AT_FL", "SAMMENLIGNING_SN", "SAMMENLIGNING_ATFL_SN", "SAMMENLIGNING_MIDL_INAKTIV" ] - }, - "differanseBeregnet" : { - "type" : "number" - } - } - }, - "SvangerskapspengerGrunnlagDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/YtelsespesifiktGrunnlagDto" - } ] - }, - "SøknadsopplysningerDto" : { - "type" : "object", - "properties" : { - "oppgittÅrsinntekt" : { - "type" : "number" - }, - "oppgittInntekt" : { - "type" : "number" - }, - "erNyoppstartet" : { - "type" : "boolean" - } - } - }, - "TidligereUtbetalingDto" : { - "required" : [ "erTildeltRefusjon", "fom" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "erTildeltRefusjon" : { - "type" : "boolean" - } - } - }, - "VurderBesteberegningDto" : { - "type" : "object", - "properties" : { - "skalHaBesteberegning" : { - "type" : "boolean" - } - } - }, - "VurderInntektsforholdPeriodeDto" : { - "required" : [ "fom", "inntektsforholdListe", "tom" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "inntektsforholdListe" : { - "maxItems" : 50, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InntektsforholdDto" - } - } - } - }, - "VurderMilitærDto" : { - "type" : "object", - "properties" : { - "harMilitaer" : { - "type" : "boolean" - } - } - }, - "VurderMottarYtelseDto" : { - "type" : "object", - "properties" : { - "erFrilans" : { - "type" : "boolean" - }, - "frilansMottarYtelse" : { - "type" : "boolean" - }, - "frilansInntektPrMnd" : { - "type" : "number" - }, - "arbeidstakerAndelerUtenIM" : { - "maxItems" : 2147483647, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ArbeidstakerUtenInntektsmeldingAndelDto" - } - } - } - }, - "VurderNyttInntektsforholdDto" : { - "required" : [ "harMottattOmsorgsstønadEllerFosterhjemsgodtgjørelse", "vurderInntektsforholdPerioder" ], - "type" : "object", - "properties" : { - "vurderInntektsforholdPerioder" : { - "maxItems" : 50, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/VurderInntektsforholdPeriodeDto" - } - }, - "harMottattOmsorgsstønadEllerFosterhjemsgodtgjørelse" : { - "type" : "boolean" - } - } - }, - "VurderRepresentererStortingetDto" : { - "type" : "object", - "properties" : { - "stortingsperiodeFom" : { - "type" : "string", - "format" : "date" - }, - "stortingsperiodeTom" : { - "type" : "string", - "format" : "date" - }, - "representererStortinget" : { - "type" : "boolean" - } - } - }, - "YtelsespesifiktGrunnlagDto" : { - "required" : [ "ytelsetype" ], - "type" : "object", - "properties" : { - "ytelsetype" : { - "type" : "string" - } - }, - "discriminator" : { - "propertyName" : "ytelsetype" - } - }, - "BeregningsresultatMedUttaksplanDto" : { - "type" : "object", - "properties" : { - "perioder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BeregningsresultatPeriodeDto" - } - } - } - }, - "BeregningsresultatPeriodeAndelDto" : { - "type" : "object", - "properties" : { - "arbeidsgiverReferanse" : { - "type" : "string" - }, - "refusjon" : { - "type" : "integer", - "format" : "int32" - }, - "tilSoker" : { - "type" : "integer", - "format" : "int32" - }, - "uttak" : { - "$ref" : "#/components/schemas/UttakDto" - }, - "utbetalingsgrad" : { - "type" : "number" - }, - "sisteUtbetalingsdato" : { - "type" : "string", - "format" : "date" - }, - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "ARBEIDSAVKLARINGSPENGER", "ARBEIDSTAKER", "DAGPENGER", "FRILANSER", "MILITÆR_ELLER_SIVIL", "SELVSTENDIG_NÆRINGSDRIVENDE", "KOMBINERT_AT_FL", "KOMBINERT_AT_SN", "KOMBINERT_FL_SN", "KOMBINERT_AT_FL_SN", "BRUKERS_ANDEL", "KUN_YTELSE", "TTLSTØTENDE_YTELSE", "VENTELØNN_VARTPENGER", "UDEFINERT" ] - }, - "arbeidsforholdId" : { - "type" : "string" - }, - "eksternArbeidsforholdId" : { - "type" : "string" - }, - "aktørId" : { - "type" : "string" - }, - "arbeidsforholdType" : { - "type" : "string", - "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "FRILOPP", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] - }, - "stillingsprosent" : { - "type" : "number" - } - } - }, - "BeregningsresultatPeriodeDto" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "dagsats" : { - "type" : "integer", - "format" : "int32" - }, - "andeler" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BeregningsresultatPeriodeAndelDto" - } - } - } - }, - "UttakDto" : { - "type" : "object", - "properties" : { - "stonadskontoType" : { - "type" : "string" - }, - "periodeResultatType" : { - "type" : "string" - }, - "gradering" : { - "type" : "boolean" - } - } - }, - "BeregningsresultatEngangsstønadDto" : { - "type" : "object", - "properties" : { - "beregnetTilkjentYtelse" : { - "type" : "integer", - "format" : "int64" - }, - "satsVerdi" : { - "type" : "integer", - "format" : "int64" - }, - "antallBarn" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "FeriepengegrunnlagAndelDto" : { - "required" : [ "aktivitetStatus", "arbeidsforholdId", "arbeidsgiverId", "erBrukerMottaker", "opptjeningsår", "årsbeløp" ], - "type" : "object", - "properties" : { - "aktivitetStatus" : { - "type" : "string", - "enum" : [ "ARBEIDSAVKLARINGSPENGER", "ARBEIDSTAKER", "DAGPENGER", "FRILANSER", "MILITÆR_ELLER_SIVIL", "SELVSTENDIG_NÆRINGSDRIVENDE", "KOMBINERT_AT_FL", "KOMBINERT_AT_SN", "KOMBINERT_FL_SN", "KOMBINERT_AT_FL_SN", "BRUKERS_ANDEL", "KUN_YTELSE", "TTLSTØTENDE_YTELSE", "VENTELØNN_VARTPENGER", "UDEFINERT" ] - }, - "arbeidsgiverId" : { - "type" : "string" - }, - "arbeidsforholdId" : { - "type" : "string" - }, - "opptjeningsår" : { - "type" : "integer", - "format" : "int32" - }, - "årsbeløp" : { - "type" : "number" - }, - "erBrukerMottaker" : { - "type" : "boolean" - } - } - }, - "FeriepengegrunnlagDto" : { - "required" : [ "andeler" ], - "type" : "object", - "properties" : { - "andeler" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FeriepengegrunnlagAndelDto" - } - } - } - }, - "AntallBarn" : { - "type" : "object", - "properties" : { - "kilde" : { - "type" : "string", - "enum" : [ "SAKSBEHANDLER", "SØKNAD", "FOLKEREGISTER" ] - }, - "antall" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "BarnHendelseData" : { - "type" : "object", - "properties" : { - "fødselsdato" : { - "type" : "string", - "format" : "date" - }, - "dødsdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "FødselDto" : { - "type" : "object", - "properties" : { - "søknad" : { - "$ref" : "#/components/schemas/Søknad" - }, - "register" : { - "$ref" : "#/components/schemas/Register" - }, - "gjeldende" : { - "$ref" : "#/components/schemas/Gjeldende" - } - } - }, - "Gjeldende" : { - "type" : "object", - "properties" : { - "termin" : { - "$ref" : "#/components/schemas/Termin" - }, - "utstedtdato" : { - "$ref" : "#/components/schemas/Utstedtdato" - }, - "antallBarn" : { - "$ref" : "#/components/schemas/AntallBarn" - }, - "barn" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/GjeldendeBarn" - } - }, - "fødselDokumetasjonStatus" : { - "type" : "string", - "enum" : [ "DOKUMENTERT", "IKKE_DOKUMENTERT", "IKKE_VURDERT" ] - } - } - }, - "GjeldendeBarn" : { - "type" : "object", - "properties" : { - "kilde" : { - "type" : "string", - "enum" : [ "SAKSBEHANDLER", "SØKNAD", "FOLKEREGISTER" ] - }, - "barn" : { - "$ref" : "#/components/schemas/BarnHendelseData" - }, - "kanOverstyres" : { - "type" : "boolean" - } - } - }, - "Register" : { - "type" : "object", - "properties" : { - "barn" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BarnHendelseData" - } - } - } - }, - "Søknad" : { - "type" : "object", - "properties" : { - "status" : { - "type" : "string", - "enum" : [ "MOTTATT", "BEHANDLET" ] - }, - "mottattTidspunkt" : { - "type" : "string", - "format" : "date-time" - } - } - }, - "Termin" : { - "type" : "object", - "properties" : { - "kilde" : { - "type" : "string", - "enum" : [ "SAKSBEHANDLER", "SØKNAD", "FOLKEREGISTER" ] - }, - "termindato" : { - "type" : "string", - "format" : "date" - } - } - }, - "Utstedtdato" : { - "type" : "object", - "properties" : { - "kilde" : { - "type" : "string", - "enum" : [ "SAKSBEHANDLER", "SØKNAD", "FOLKEREGISTER" ] - }, - "utstedtdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "InnsynDokumentDto" : { - "type" : "object", - "properties" : { - "fikkInnsyn" : { - "type" : "boolean" - }, - "journalpostId" : { - "type" : "string" - }, - "dokumentId" : { - "type" : "string" - } - } - }, - "InnsynVedtaksdokumentasjonDto" : { - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "tittel" : { - "type" : "string" - }, - "opprettetDato" : { - "type" : "string", - "format" : "date" - } - } - }, - "InnsynsbehandlingDto" : { - "type" : "object", - "properties" : { - "innsynMottattDato" : { - "type" : "string", - "format" : "date" - }, - "innsynResultatType" : { - "type" : "string", - "enum" : [ "INNV", "DELV", "AVVIST", "-" ] - }, - "vedtaksdokumentasjon" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InnsynVedtaksdokumentasjonDto" - } - }, - "dokumenter" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/InnsynDokumentDto" - } - } - } - }, - "KlageFormkravResultatDto" : { - "type" : "object", - "properties" : { - "paKlagdBehandlingId" : { - "type" : "integer", - "format" : "int64" - }, - "paKlagdBehandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "paklagdBehandlingType" : { - "type" : "string", - "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] - }, - "begrunnelse" : { - "type" : "string" - }, - "erKlagerPart" : { - "type" : "boolean" - }, - "erKlageKonkret" : { - "type" : "boolean" - }, - "erKlagefirstOverholdt" : { - "type" : "boolean" - }, - "erSignert" : { - "type" : "boolean" - }, - "avvistArsaker" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "KLAGET_FOR_SENT", "KLAGE_UGYLDIG", "IKKE_PAKLAGD_VEDTAK", "KLAGER_IKKE_PART", "IKKE_KONKRET", "IKKE_SIGNERT", "-" ] - } - } - } - }, - "KlageVurderingResultatDto" : { - "type" : "object", - "properties" : { - "klageVurdertAv" : { - "type" : "string" - }, - "klageVurdering" : { - "type" : "string", - "enum" : [ "OPPHEVE_YTELSESVEDTAK", "STADFESTE_YTELSESVEDTAK", "MEDHOLD_I_KLAGE", "AVVIS_KLAGE", "HJEMSENDE_UTEN_Å_OPPHEVE", "-" ] - }, - "begrunnelse" : { - "type" : "string" - }, - "klageMedholdArsak" : { - "type" : "string", - "enum" : [ "NYE_OPPLYSNINGER", "ULIK_REGELVERKSTOLKNING", "ULIK_VURDERING", "PROSESSUELL_FEIL", "-" ] - }, - "klageVurderingOmgjoer" : { - "type" : "string", - "enum" : [ "GUNST_MEDHOLD_I_KLAGE", "DELVIS_MEDHOLD_I_KLAGE", "UGUNST_MEDHOLD_I_KLAGE", "-" ] - }, - "klageHjemmel" : { - "type" : "string", - "enum" : [ "14-02", "14-04", "14-05", "14-06", "14-07", "14-09", "14-10", "14-11", "14-12", "14-13", "14-14", "14-15", "14-16", "14-17", "8-2", "21-3", "22-13", "22-15", "883-5", "883-6", "-" ] - }, - "godkjentAvMedunderskriver" : { - "type" : "boolean" - }, - "fritekstTilBrev" : { - "type" : "string" - } - } - }, - "KlagebehandlingDto" : { - "type" : "object", - "properties" : { - "klageFormkravResultatNFP" : { - "$ref" : "#/components/schemas/KlageFormkravResultatDto" - }, - "klageVurderingResultatNFP" : { - "$ref" : "#/components/schemas/KlageVurderingResultatDto" - }, - "klageFormkravResultatKA" : { - "$ref" : "#/components/schemas/KlageFormkravResultatDto" - }, - "klageVurderingResultatNK" : { - "$ref" : "#/components/schemas/KlageVurderingResultatDto" - }, - "aktuelleHjemler" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "14-02", "14-04", "14-05", "14-06", "14-07", "14-09", "14-10", "14-11", "14-12", "14-13", "14-14", "14-15", "14-16", "14-17", "8-2", "21-3", "22-13", "22-15", "883-5", "883-6", "-" ] - } - }, - "underBehandlingKabal" : { - "type" : "boolean" - }, - "behandletAvKabal" : { - "type" : "boolean" - } - } - }, - "MottattKlagedokumentDto" : { - "type" : "object", - "properties" : { - "mottattDato" : { - "type" : "string", - "format" : "date" - } - } - }, - "KlageFormKravAksjonspunktMellomlagringDto" : { - "required" : [ "behandlingUuid" ], - "type" : "object", - "properties" : { - "kode" : { - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-\\–0-9]*$", - "type" : "string" - }, - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "erKlagerPart" : { - "type" : "boolean" - }, - "erFristOverholdt" : { - "type" : "boolean" - }, - "erKonkret" : { - "type" : "boolean" - }, - "erSignert" : { - "type" : "boolean" - }, - "erTilbakekreving" : { - "type" : "boolean" - }, - "klageTilbakekreving" : { - "$ref" : "#/components/schemas/KlageTilbakekrevingDto" - }, - "begrunnelse" : { - "maxLength" : 2000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "fritekstTilBrev" : { - "maxLength" : 100000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "paKlagdBehandlingUuid" : { - "type" : "string", - "format" : "uuid" - } - } - }, - "KlageTilbakekrevingDto" : { - "required" : [ "tilbakekrevingUuid" ], - "type" : "object", - "properties" : { - "tilbakekrevingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "tilbakekrevingVedtakDato" : { - "type" : "string", - "format" : "date" - }, - "tilbakekrevingBehandlingType" : { - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-\\–0-9]*$", - "type" : "string" - } - } - }, - "KlageVurderingResultatAksjonspunktMellomlagringDto" : { - "required" : [ "behandlingUuid" ], - "type" : "object", - "properties" : { - "kode" : { - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-\\–0-9]*$", - "type" : "string" - }, - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "klageVurdering" : { - "type" : "string", - "enum" : [ "OPPHEVE_YTELSESVEDTAK", "STADFESTE_YTELSESVEDTAK", "MEDHOLD_I_KLAGE", "AVVIS_KLAGE", "HJEMSENDE_UTEN_Å_OPPHEVE", "-" ] - }, - "begrunnelse" : { - "maxLength" : 2000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "fritekstTilBrev" : { - "maxLength" : 100000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "klageMedholdArsak" : { - "type" : "string", - "enum" : [ "NYE_OPPLYSNINGER", "ULIK_REGELVERKSTOLKNING", "ULIK_VURDERING", "PROSESSUELL_FEIL", "-" ] - }, - "klageVurderingOmgjoer" : { - "type" : "string", - "enum" : [ "GUNST_MEDHOLD_I_KLAGE", "DELVIS_MEDHOLD_I_KLAGE", "UGUNST_MEDHOLD_I_KLAGE", "-" ] - }, - "klageHjemmel" : { - "type" : "string", - "enum" : [ "14-02", "14-04", "14-05", "14-06", "14-07", "14-09", "14-10", "14-11", "14-12", "14-13", "14-14", "14-15", "14-16", "14-17", "8-2", "21-3", "22-13", "22-15", "883-5", "883-6", "-" ] - } - } - }, - "OppdragDto" : { - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - } - } - }, - "OpptjeningIUtlandDokStatusDto" : { - "type" : "object", - "properties" : { - "dokStatus" : { - "type" : "string", - "enum" : [ "DOKUMENTASJON_ER_INNHENTET", "DOKUMENTASJON_VIL_BLI_INNHENTET", "DOKUMENTASJON_VIL_IKKE_BLI_INNHENTET" ] - } - } - }, - "FastsattOpptjeningAktivitetDto" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "klasse" : { - "type" : "string", - "enum" : [ "BEKREFTET_GODKJENT", "BEKREFTET_AVVIST", "ANTATT_GODKJENT", "MELLOMLIGGENDE_PERIODE", "-" ] - } - } - }, - "FastsattOpptjeningDto" : { - "type" : "object", - "properties" : { - "opptjeningFom" : { - "type" : "string", - "format" : "date" - }, - "opptjeningTom" : { - "type" : "string", - "format" : "date" - }, - "opptjeningperiode" : { - "$ref" : "#/components/schemas/OpptjeningPeriodeDto" - }, - "fastsattOpptjeningAktivitetList" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FastsattOpptjeningAktivitetDto" - } - } - } - }, - "FerdiglignetNæringDto" : { - "type" : "object", - "properties" : { - "år" : { - "type" : "string" - }, - "beløp" : { - "type" : "integer", - "format" : "int64" - } - } - }, - "OpptjeningAktivitetDto" : { - "type" : "object", - "properties" : { - "aktivitetType" : { - "type" : "string", - "enum" : [ "AAP", "ARBEID", "DAGPENGER", "FORELDREPENGER", "FRILANS", "FRILOPP", "MILITÆR_ELLER_SIVILTJENESTE", "NÆRING", "OMSORGSPENGER", "OPPLÆRINGSPENGER", "PLEIEPENGER", "FRISINN", "ETTERLØNN_SLUTTPAKKE", "SVANGERSKAPSPENGER", "SYKEPENGER", "VENTELØNN_VARTPENGER", "VIDERE_ETTERUTDANNING", "UTENLANDSK_ARBEIDSFORHOLD", "UTDANNINGSPERMISJON", "-" ] - }, - "originalFom" : { - "type" : "string", - "format" : "date" - }, - "originalTom" : { - "type" : "string", - "format" : "date" - }, - "opptjeningFom" : { - "type" : "string", - "format" : "date" - }, - "opptjeningTom" : { - "type" : "string", - "format" : "date" - }, - "arbeidsgiverReferanse" : { - "type" : "string" - }, - "arbeidsforholdRef" : { - "type" : "string" - }, - "stillingsandel" : { - "type" : "number" - }, - "naringRegistreringsdato" : { - "type" : "string", - "format" : "date" - }, - "erManueltOpprettet" : { - "type" : "boolean" - }, - "erGodkjent" : { - "type" : "boolean" - }, - "erEndret" : { - "type" : "boolean" - }, - "begrunnelse" : { - "type" : "string" - }, - "erPeriodeEndret" : { - "type" : "boolean" - } - } - }, - "OpptjeningDto" : { - "type" : "object", - "properties" : { - "fastsattOpptjening" : { - "$ref" : "#/components/schemas/FastsattOpptjeningDto" - }, - "opptjeningAktivitetList" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OpptjeningAktivitetDto" - } - }, - "ferdiglignetNæring" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FerdiglignetNæringDto" - } - } - } - }, - "OpptjeningPeriodeDto" : { - "type" : "object", - "properties" : { - "måneder" : { - "type" : "integer", - "format" : "int32" - }, - "dager" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "PersonopplysningTilbakeDto" : { - "type" : "object", - "properties" : { - "aktoerId" : { - "type" : "string" - }, - "antallBarn" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "PersonadresseDto" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "adresseType" : { - "type" : "string", - "enum" : [ "BOSTEDSADRESSE", "BOSTEDSADRESSE_UTLAND", "POSTADRESSE", "POSTADRESSE_UTLAND", "MIDLERTIDIG_POSTADRESSE_NORGE", "MIDLERTIDIG_POSTADRESSE_UTLAND", "UKJENT_ADRESSE" ] - }, - "adresselinje1" : { - "type" : "string" - }, - "adresselinje2" : { - "type" : "string" - }, - "adresselinje3" : { - "type" : "string" - }, - "postNummer" : { - "type" : "string" - }, - "poststed" : { - "type" : "string" - }, - "land" : { - "type" : "string" - } - } - }, - "PersonopplysningBasisDto" : { - "type" : "object", - "properties" : { - "fnr" : { - "type" : "string" - }, - "aktoerId" : { - "type" : "string" - }, - "diskresjonskode" : { - "type" : "string", - "enum" : [ "UDEF", "SPSF", "SPFO" ] - }, - "navn" : { - "type" : "string" - }, - "kjønn" : { - "type" : "string", - "enum" : [ "K", "M", "-" ] - }, - "sivilstand" : { - "type" : "string", - "enum" : [ "ENKE", "GIFT", "GJPA", "GLAD", "NULL", "REPA", "SAMB", "SEPA", "SEPR", "SKIL", "SKPA", "UGIF" ] - }, - "dødsdato" : { - "type" : "string", - "format" : "date" - }, - "fødselsdato" : { - "type" : "string", - "format" : "date" - }, - "adresser" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/PersonadresseDto" - } - } - } - }, - "PersonoversiktDto" : { - "type" : "object", - "properties" : { - "bruker" : { - "$ref" : "#/components/schemas/PersonopplysningBasisDto" - }, - "annenPart" : { - "$ref" : "#/components/schemas/PersonopplysningBasisDto" - }, - "barn" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/PersonopplysningBasisDto" - } - } - } - }, - "Annenpart" : { - "type" : "object", - "properties" : { - "adresser" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/PersonadresseDto" - } - }, - "regioner" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Region" - } - }, - "personstatuser" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Personstatus" - } - } - } - }, - "LegacyManuellBehandling" : { - "type" : "object", - "properties" : { - "perioder" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/MedlemPeriode" - } - } - } - }, - "ManuellBehandlingResultat" : { - "type" : "object", - "properties" : { - "søkerHarAleneomsorg" : { - "type" : "string", - "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] - }, - "annenpartRettighet" : { - "$ref" : "#/components/schemas/Rettighet" - } - } - }, - "MedlemPeriode" : { - "type" : "object", - "properties" : { - "vurderingsdato" : { - "type" : "string", - "format" : "date" - }, - "oppholdsrettVurdering" : { - "type" : "boolean" - }, - "erEosBorger" : { - "type" : "boolean" - }, - "lovligOppholdVurdering" : { - "type" : "boolean" - }, - "bosattVurdering" : { - "type" : "boolean" - }, - "medlemskapManuellVurderingType" : { - "type" : "string", - "enum" : [ "-", "MEDLEM", "UNNTAK", "IKKE_RELEVANT", "OPPHOR_PGA_ENDRING_I_TPS" ] - }, - "begrunnelse" : { - "type" : "string" - } - } - }, - "MedlemskapDto" : { - "type" : "object", - "properties" : { - "manuellBehandlingResultat" : { - "$ref" : "#/components/schemas/ManuellBehandlingResultat" - }, - "legacyManuellBehandling" : { - "$ref" : "#/components/schemas/LegacyManuellBehandling" - }, - "regioner" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Region" - } - }, - "personstatuser" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Personstatus" - } - }, - "utenlandsopphold" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Utenlandsopphold" - } - }, - "adresser" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/PersonadresseDto" - } - }, - "oppholdstillatelser" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Oppholdstillatelse" - } - }, - "medlemskapsperioder" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/MedlemskapPeriode" - } - }, - "avvik" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "BOSATT_UTENLANDSOPPHOLD", "BOSATT_MANGLENDE_BOSTEDSADRESSE", "BOSATT_UTENLANDSADRESSE", "BOSATT_UGYLDIG_PERSONSTATUS", "TREDJELAND_MANGLENDE_LOVLIG_OPPHOLD", "EØS_MANGLENDE_ANSETTELSE_MED_INNTEKT", "MEDL_PERIODER" ] - } - }, - "annenpart" : { - "$ref" : "#/components/schemas/Annenpart" - } - } - }, - "MedlemskapPeriode" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "erMedlem" : { - "type" : "boolean" - }, - "lovvalgsland" : { - "type" : "string" - }, - "studieland" : { - "type" : "string" - }, - "medlemskapType" : { - "type" : "string", - "enum" : [ "ENDELIG", "FORELOPIG", "AVKLARES", "-" ] - }, - "dekningType" : { - "type" : "string", - "enum" : [ "FTL_2_6", "FTL_2_7_a", "FTL_2_7_b", "FTL_2_9_1_a", "FTL_2_9_1_b", "FTL_2_9_1_c", "FTL_2_9_2_a", "FTL_2_9_2_c", "FULL", "IHT_AVTALE", "OPPHOR", "UNNTATT", "-" ] - }, - "beslutningsdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "Oppholdstillatelse" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "type" : { - "type" : "string", - "enum" : [ "MIDLERTIDIG", "PERMANENT", "-" ] - } - } - }, - "Personstatus" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "type" : { - "type" : "string", - "enum" : [ "ADNR", "BOSA", "DØD", "FOSV", "FØDR", "UREG", "UTPE", "UTVA", "-" ] - } - } - }, - "Region" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "type" : { - "type" : "string", - "enum" : [ "NORDEN", "EOS", "ANNET", "-" ] - } - } - }, - "Utenlandsopphold" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "landkode" : { - "type" : "string", - "enum" : [ "???", "ABW", "AFG", "AGO", "AIA", "ALA", "ALB", "AND", "ANT", "ARE", "ARG", "ARM", "ASM", "ATG", "AUS", "AUT", "AZE", "BDI", "BEL", "BEN", "BES", "BFA", "BGD", "BGR", "BHR", "BHS", "BIH", "BLM", "BLR", "BLZ", "BMU", "BOL", "BRA", "BRB", "BRN", "BTN", "BVT", "BWA", "CAF", "CAN", "CCK", "CHE", "CHL", "CHN", "CIV", "CMR", "COD", "COG", "COK", "COL", "COM", "CPV", "CRI", "CSK", "CUB", "CUW", "CXR", "CYM", "CYP", "CZE", "DDR", "DEU", "DJI", "DMA", "DNK", "DOM", "DZA", "ECU", "EGY", "ERI", "ESH", "ESP", "EST", "ETH", "FIN", "FJI", "FLK", "FRA", "FRO", "FSM", "GAB", "GBR", "GEO", "GGY", "GHA", "GIB", "GIN", "GLP", "GMB", "GNB", "GNQ", "GRC", "GRD", "GRL", "GTM", "GUF", "GUM", "GUY", "HKG", "HMD", "HND", "HRV", "HTI", "HUN", "IDN", "IMN", "IND", "IOT", "IRL", "IRN", "IRQ", "ISL", "ISR", "ITA", "JAM", "JEY", "JOR", "JPN", "KAZ", "KEN", "KGZ", "KHM", "KIR", "KNA", "KOR", "KWT", "LAO", "LBN", "LBR", "LBY", "LCA", "LIE", "LKA", "LSO", "LTU", "LUX", "LVA", "MAC", "MAF", "MAR", "MCO", "MDA", "MDG", "MDV", "MEX", "MHL", "MKD", "MLI", "MLT", "MMR", "MNE", "MNG", "MNP", "MOZ", "MRT", "MSR", "MTQ", "MUS", "MWI", "MYS", "MYT", "NAM", "NCL", "NER", "NFK", "NGA", "NIC", "NIU", "NLD", "NOR", "NPL", "NRU", "NZL", "OMN", "PAK", "PAN", "PCN", "PER", "PHL", "PLW", "PNG", "POL", "PRI", "PRK", "PRT", "PRY", "PSE", "PYF", "QAT", "REU", "ROU", "RUS", "RWA", "SAU", "SCG", "SDN", "SEN", "SGP", "SGS", "SHN", "SJM", "SLB", "SLE", "SLV", "SMR", "SOM", "SPM", "SRB", "SSD", "STP", "SUN", "SUR", "SVK", "SVN", "SWE", "SWZ", "SXM", "SYC", "SYR", "TCA", "TCD", "TGO", "THA", "TJK", "TKL", "TKM", "TLS", "TON", "TTO", "TUN", "TUR", "TUV", "TWN", "TZA", "UGA", "UKR", "UMI", "URY", "USA", "UZB", "VAT", "VCT", "VEN", "VGB", "VIR", "VNM", "VUT", "WLF", "WSM", "XUK", "XXK", "XXX", "YEM", "YUG", "ZAF", "ZMB", "ZWE", "-" ] - } - } - }, - "SvpArbeidsforholdDto" : { - "type" : "object", - "properties" : { - "tilretteleggingId" : { - "type" : "integer", - "format" : "int64" - }, - "tilretteleggingBehovFom" : { - "type" : "string", - "format" : "date" - }, - "tilretteleggingDatoer" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SvpTilretteleggingDatoDto" - } - }, - "uttakArbeidType" : { - "type" : "string", - "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] - }, - "arbeidsgiverReferanse" : { - "type" : "string" - }, - "opplysningerOmRisiko" : { - "type" : "string" - }, - "opplysningerOmTilrettelegging" : { - "type" : "string" - }, - "kopiertFraTidligereBehandling" : { - "type" : "boolean" - }, - "mottattTidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "internArbeidsforholdReferanse" : { - "type" : "string" - }, - "eksternArbeidsforholdReferanse" : { - "type" : "string" - }, - "skalBrukes" : { - "type" : "boolean" - }, - "kanTilrettelegges" : { - "type" : "boolean" - }, - "stillingsprosentStartTilrettelegging" : { - "type" : "number" - }, - "velferdspermisjoner" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/VelferdspermisjonDto" - } - }, - "avklarteOppholdPerioder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SvpAvklartOppholdPeriodeDto" - } - }, - "begrunnelse" : { - "maxLength" : 4000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - } - } - }, - "SvpAvklartOppholdPeriodeDto" : { - "required" : [ "fom", "oppholdÅrsak", "tom" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "oppholdÅrsak" : { - "type" : "string", - "enum" : [ "SYKEPENGER", "FERIE" ] - }, - "oppholdKilde" : { - "type" : "string", - "enum" : [ "SØKNAD", "INNTEKTSMELDING", "REGISTRERT_AV_SAKSBEHANDLER" ] - }, - "forVisning" : { - "type" : "boolean" - } - } - }, - "SvpTilretteleggingDatoDto" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "type" : { - "type" : "string", - "enum" : [ "HEL_TILRETTELEGGING", "DELVIS_TILRETTELEGGING", "INGEN_TILRETTELEGGING" ] - }, - "stillingsprosent" : { - "type" : "number" - }, - "overstyrtUtbetalingsgrad" : { - "type" : "number" - }, - "kilde" : { - "type" : "string", - "enum" : [ "ENDRET_AV_SAKSBEHANDLER", "REGISTRERT_AV_SAKSBEHANDLER", "TIDLIGERE_VEDTAK", "SØKNAD" ] - }, - "mottattDato" : { - "type" : "string", - "format" : "date" - } - } - }, - "SvpTilretteleggingDto" : { - "type" : "object", - "properties" : { - "termindato" : { - "type" : "string", - "format" : "date" - }, - "fødselsdato" : { - "type" : "string", - "format" : "date" - }, - "arbeidsforholdListe" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SvpArbeidsforholdDto" - } - }, - "saksbehandlet" : { - "type" : "boolean" - } - } - }, - "VelferdspermisjonDto" : { - "type" : "object", - "properties" : { - "permisjonFom" : { - "type" : "string", - "format" : "date" - }, - "permisjonTom" : { - "type" : "string", - "format" : "date" - }, - "permisjonsprosent" : { - "type" : "number" - }, - "type" : { - "type" : "string", - "enum" : [ "-", "PERMISJON", "UTDANNINGSPERMISJON", "UTDANNINGSPERMISJON_IKKE_LOVFESTET", "UTDANNINGSPERMISJON_LOVFESTET", "VELFERDSPERMISJON", "ANNEN_PERMISJON_IKKE_LOVFESTET", "ANNEN_PERMISJON_LOVFESTET", "PERMISJON_MED_FORELDREPENGER", "PERMITTERING", "PERMISJON_VED_MILITÆRTJENESTE" ] - }, - "erGyldig" : { - "type" : "boolean" - } - } - }, - "DekningsgradInfoDto" : { - "type" : "object", - "properties" : { - "avklartDekningsgrad" : { - "type" : "integer", - "format" : "int32" - }, - "søker" : { - "$ref" : "#/components/schemas/OppgittDekningsgradDto" - }, - "annenPart" : { - "$ref" : "#/components/schemas/OppgittDekningsgradDto" - } - } - }, - "ManglendeVedleggDto" : { - "type" : "object", - "properties" : { - "dokumentType" : { - "type" : "string", - "enum" : [ "SØKNAD_SVANGERSKAPSPENGER", "SØKNAD_FORELDREPENGER_ADOPSJON", "SØKNAD_ENGANGSSTØNAD_FØDSEL", "SØKNAD_ENGANGSSTØNAD_ADOPSJON", "SØKNAD_FORELDREPENGER_FØDSEL", "FLEKSIBELT_UTTAK_FORELDREPENGER", "FORELDREPENGER_ENDRING_SØKNAD", "INNTEKTSMELDING", "KLAGE_DOKUMENT", "I500027", "I000114", "I000119", "DOKUMENTASJON_AV_TERMIN_ELLER_FØDSEL", "DOKUMENTASJON_AV_OMSORGSOVERTAKELSE", "BEKREFTELSE_VENTET_FØDSELSDATO", "FØDSELSATTEST", "I000141", "LEGEERKLÆRING", "DOK_INNLEGGELSE", "BESKRIVELSE_FUNKSJONSNEDSETTELSE", "I000120", "I000121", "I000122", "I000123", "I000124", "DOK_MORS_UTDANNING_ARBEID_SYKDOM", "DOK_FERIE", "DOK_ARBEIDSFORHOLD", "BEKREFTELSE_DELTAR_KVALIFISERINGSPROGRAM", "BEKREFTELSE_FRA_STUDIESTED", "BEKREFTELSE_FRA_ARBEIDSGIVER", "I000112", "DOK_HV", "DOK_NAV_TILTAK", "I000130", "I000131", "I000132", "I000133", "I000109", "I000142", "INNTEKTSOPPLYSNING_SELVSTENDIG", "DOK_INNTEKT", "INNTEKTSOPPLYSNINGER", "RESULTATREGNSKAP", "DOK_MILITÆR_SIVIL_TJENESTE", "DOK_ETTERLØNN", "I000146", "I000052", "KOPI_SKATTEMELDING", "I000140", "BEKREFTELSE_OPPHOLDSTILLATELSE", "I000143", "OPPHOLDSOPPLYSNINGER", "I000110", "I000111", "I000118", "ETTERSENDT_SØKNAD_SVANGERSKAPSPENGER_SELVSTENDIG", "ETTERSENDT_SØKNAD_FORELDREPENGER_ADOPSJON", "ETTERSENDT_SØKNAD_ENGANGSSTØNAD_FØDSEL", "ETTERSENDT_SØKNAD_ENGANGSSTØNAD_ADOPSJON", "ETTERSENDT_SØKNAD_FORELDREPENGER_FØDSEL", "ETTERSENDT_FLEKSIBELT_UTTAK_FORELDREPENGER", "ETTERSENDT_FORELDREPENGER_ENDRING_SØKNAD", "BREV_UTLAND", "ANNET_SKJEMA_UTLAND_IKKE_NAV", "BREV", "I000145", "I000144", "ANNET_SKJEMA_IKKE_NAV", "ANNET", "-" ] - }, - "dokumentTittel" : { - "type" : "string" - }, - "arbeidsgiverReferanse" : { - "type" : "string" - }, - "brukerHarSagtAtIkkeKommer" : { - "type" : "boolean" - } - } - }, - "OppgittDekningsgradDto" : { - "type" : "object", - "properties" : { - "søknadsdato" : { - "type" : "string", - "format" : "date" - }, - "dekningsgrad" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "OppgittFordelingDto" : { - "type" : "object", - "properties" : { - "startDatoForPermisjon" : { - "type" : "string", - "format" : "date" - }, - "dekningsgrader" : { - "$ref" : "#/components/schemas/DekningsgradInfoDto" - } - } - }, - "OppgittTilknytningDto" : { - "type" : "object", - "properties" : { - "oppholdNorgeNa" : { - "type" : "boolean" - }, - "oppholdSistePeriode" : { - "type" : "boolean" - }, - "oppholdNestePeriode" : { - "type" : "boolean" - }, - "utlandsoppholdFor" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/UtlandsoppholdDto" - } - }, - "utlandsoppholdEtter" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/UtlandsoppholdDto" - } - } - } - }, - "SoknadAdopsjonDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/SoknadDto" - }, { - "type" : "object", - "properties" : { - "omsorgsovertakelseDato" : { - "type" : "string", - "format" : "date" - }, - "barnetsAnkomstTilNorgeDato" : { - "type" : "string", - "format" : "date" - }, - "adopsjonFodelsedatoer" : { - "type" : "object", - "additionalProperties" : { - "type" : "string", - "format" : "date" - } - }, - "farSokerType" : { - "type" : "string", - "enum" : [ "ADOPTERER_ALENE", "ANDRE_FORELDER_DØD", "OVERTATT_OMSORG", "OVERTATT_OMSORG_F", "ANDRE_FORELD_DØD_F", "-" ] - } - } - } ] - }, - "SoknadDto" : { - "type" : "object", - "properties" : { - "soknadType" : { - "type" : "string", - "enum" : [ "ST-001", "ST-002" ] - }, - "mottattDato" : { - "type" : "string", - "format" : "date" - }, - "begrunnelseForSenInnsending" : { - "type" : "string" - }, - "antallBarn" : { - "type" : "integer", - "format" : "int32" - }, - "oppgittTilknytning" : { - "$ref" : "#/components/schemas/OppgittTilknytningDto" - }, - "manglendeVedlegg" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ManglendeVedleggDto" - } - }, - "oppgittFordeling" : { - "$ref" : "#/components/schemas/OppgittFordelingDto" - }, - "søknadsfrist" : { - "$ref" : "#/components/schemas/SøknadsfristDto" - } - } - }, - "SoknadFodselDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/SoknadDto" - }, { - "type" : "object", - "properties" : { - "utstedtdato" : { - "type" : "string", - "format" : "date" - }, - "termindato" : { - "type" : "string", - "format" : "date" - }, - "farSokerType" : { - "type" : "string", - "enum" : [ "ADOPTERER_ALENE", "ANDRE_FORELDER_DØD", "OVERTATT_OMSORG", "OVERTATT_OMSORG_F", "ANDRE_FORELD_DØD_F", "-" ] - }, - "fodselsdatoer" : { - "type" : "object", - "additionalProperties" : { - "type" : "string", - "format" : "date" - } - } - } - } ] - }, - "SøknadsfristDto" : { - "type" : "object", - "properties" : { - "mottattDato" : { - "type" : "string", - "format" : "date" - }, - "utledetSøknadsfrist" : { - "type" : "string", - "format" : "date" - }, - "søknadsperiodeStart" : { - "type" : "string", - "format" : "date" - }, - "søknadsperiodeSlutt" : { - "type" : "string", - "format" : "date" - }, - "dagerOversittetFrist" : { - "type" : "integer", - "format" : "int64" - } - } - }, - "UtlandsoppholdDto" : { - "type" : "object", - "properties" : { - "landNavn" : { - "type" : "string" - }, - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - } - } - }, - "SoknadBackendDto" : { - "type" : "object", - "properties" : { - "soknadType" : { - "type" : "string", - "enum" : [ "ST-001", "ST-002" ] - }, - "mottattDato" : { - "type" : "string", - "format" : "date" - }, - "oppgittAleneomsorg" : { - "type" : "boolean" - } - } - }, - "DetaljertSimuleringResultatDto" : { - "type" : "object", - "properties" : { - "periode" : { - "$ref" : "#/components/schemas/PeriodeDto" - }, - "ingenPerioderMedAvvik" : { - "type" : "boolean" - }, - "sumEtterbetaling" : { - "type" : "integer", - "format" : "int64" - }, - "sumFeilutbetaling" : { - "type" : "integer", - "format" : "int64" - }, - "sumInntrekk" : { - "type" : "integer", - "format" : "int64" - }, - "perioderPerMottaker" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SimuleringForMottakerDto" - } - } - } - }, - "PeriodeDto" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - } - } - }, - "SimuleringDto" : { - "type" : "object", - "properties" : { - "simuleringResultat" : { - "$ref" : "#/components/schemas/DetaljertSimuleringResultatDto" - }, - "simuleringResultatUtenInntrekk" : { - "$ref" : "#/components/schemas/DetaljertSimuleringResultatDto" - }, - "slåttAvInntrekk" : { - "type" : "boolean" - } - } - }, - "SimuleringForMottakerDto" : { - "type" : "object", - "properties" : { - "mottakerType" : { - "type" : "string", - "enum" : [ "BRUKER", "ARBG_ORG", "ARBG_PRIV" ] - }, - "mottakerNummer" : { - "type" : "string" - }, - "mottakerIdentifikator" : { - "type" : "string" - }, - "resultatPerFagområde" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SimuleringResultatPerFagområdeDto" - } - }, - "resultatOgMotregningRader" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SimuleringResultatRadDto" - } - }, - "nesteUtbPeriode" : { - "$ref" : "#/components/schemas/PeriodeDto" - } - } - }, - "SimuleringResultatPerFagområdeDto" : { - "type" : "object", - "properties" : { - "fagOmrådeKode" : { - "type" : "string", - "enum" : [ "REFUTG", "FP", "FPREF", "SP", "SPREF", "SVP", "SVPREF", "PB", "PBREF", "PN", "PNREF", "OM", "OMREF", "OPP", "OPPREF", "OOP", "OOPREF", "UNG" ] - }, - "rader" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SimuleringResultatRadDto" - } - } - } - }, - "SimuleringResultatPerMånedDto" : { - "type" : "object", - "properties" : { - "periode" : { - "$ref" : "#/components/schemas/PeriodeDto" - }, - "beløp" : { - "type" : "integer", - "format" : "int64" - } - } - }, - "SimuleringResultatRadDto" : { - "type" : "object", - "properties" : { - "feltnavn" : { - "type" : "string", - "enum" : [ "nyttBeløp", "tidligereUtbetalt", "differanse", "resultatEtterMotregning", "inntrekkNesteMåned", "resultat" ] - }, - "resultaterPerMåned" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SimuleringResultatPerMånedDto" - } - } - } - }, - "TilbakekrevingValgDto" : { - "type" : "object", - "properties" : { - "grunnerTilReduksjon" : { - "type" : "boolean" - }, - "videreBehandling" : { - "type" : "string", - "enum" : [ "-", "TILBAKEKR_OPPRETT", "TILBAKEKR_IGNORER", "TILBAKEKR_INNTREKK", "TILBAKEKR_OPPDATER" ] - }, - "varseltekst" : { - "type" : "string" - } - } - }, - "VarseltekstDto" : { - "type" : "object", - "properties" : { - "varseltekst" : { - "type" : "string" - } - } - }, - "AktivitetIdentifikatorDto" : { - "type" : "object", - "properties" : { - "uttakArbeidType" : { - "type" : "string", - "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] - }, - "arbeidsgiverReferanse" : { - "type" : "string" - }, - "arbeidsforholdId" : { - "type" : "string" - } - } - }, - "AktivitetSaldoDto" : { - "type" : "object", - "properties" : { - "aktivitetIdentifikator" : { - "$ref" : "#/components/schemas/AktivitetIdentifikatorDto" - }, - "saldo" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "KontoUtvidelser" : { - "type" : "object", - "properties" : { - "prematurdager" : { - "type" : "integer", - "format" : "int32" - }, - "flerbarnsdager" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "SaldoerDto" : { - "type" : "object", - "properties" : { - "stonadskontoer" : { - "type" : "object", - "additionalProperties" : { - "$ref" : "#/components/schemas/StønadskontoDto" - } - }, - "tapteDagerFpff" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "StønadskontoDto" : { - "type" : "object", - "properties" : { - "stonadskontotype" : { - "type" : "string", - "enum" : [ "MØDREKVOTE", "FEDREKVOTE", "FELLESPERIODE", "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "FLERBARNSDAGER", "UTEN_AKTIVITETSKRAV", "MINSTERETT_NESTE_STØNADSPERIODE", "MINSTERETT" ] - }, - "maxDager" : { - "type" : "integer", - "format" : "int32" - }, - "saldo" : { - "type" : "integer", - "format" : "int32" - }, - "aktivitetSaldoDtoList" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AktivitetSaldoDto" - } - }, - "gyldigForbruk" : { - "type" : "boolean" - }, - "kontoUtvidelser" : { - "$ref" : "#/components/schemas/KontoUtvidelser" - } - } - }, - "BehandlingMedUttaksperioderDto" : { - "required" : [ "behandlingUuid", "perioder" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "perioder" : { - "maxItems" : 1500, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/UttakResultatPeriodeLagreDto" - } - } - } - }, - "InternArbeidsforholdRef" : { - "type" : "object", - "properties" : { - "referanse" : { - "type" : "string" - }, - "indexKey" : { - "type" : "string" - }, - "uuidreferanse" : { - "type" : "string", - "format" : "uuid" - } - } - }, - "Trekkdager" : { - "type" : "object" - }, - "UttakResultatPeriodeAktivitetLagreDto" : { - "required" : [ "trekkdagerDesimaler" ], - "type" : "object", - "properties" : { - "stønadskontoType" : { - "type" : "string", - "enum" : [ "FELLESPERIODE", "MØDREKVOTE", "FEDREKVOTE", "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "-" ] - }, - "trekkdagerDesimaler" : { - "$ref" : "#/components/schemas/Trekkdager" - }, - "arbeidsgiver" : { - "$ref" : "#/components/schemas/Arbeidsgiver" - }, - "arbeidsgiverReferanse" : { - "pattern" : "^\\d{9}$|^\\d{13}$", - "type" : "string" - }, - "arbeidsforholdId" : { - "$ref" : "#/components/schemas/InternArbeidsforholdRef" - }, - "utbetalingsgrad" : { - "type" : "number" - }, - "uttakArbeidType" : { - "type" : "string", - "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] - } - } - }, - "UttakResultatPeriodeLagreDto" : { - "required" : [ "aktiviteter", "fom", "graderingAvslagÅrsak", "oppholdÅrsak", "periodeResultatType", "periodeResultatÅrsak", "tom", "utsettelseType" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "aktiviteter" : { - "maxItems" : 100, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/UttakResultatPeriodeAktivitetLagreDto" - } - }, - "begrunnelse" : { - "maxLength" : 4000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "periodeResultatType" : { - "type" : "string", - "enum" : [ "INNVILGET", "AVSLÅTT", "MANUELL_BEHANDLING" ] - }, - "periodeResultatÅrsak" : { - "type" : "string", - "enum" : [ "-", "2002", "2003", "2004", "2005", "2006", "2007", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2030", "2031", "2032", "2033", "2034", "2035", "2036", "2037", "2038", "2039", "4002", "4003", "4005", "4007", "4008", "4012", "4013", "4020", "4022", "4023", "4025", "4030", "4031", "4032", "4033", "4034", "4035", "4037", "4038", "4039", "4040", "4041", "4050", "4051", "4052", "4053", "4054", "4055", "4056", "4057", "4058", "4059", "4060", "4061", "4062", "4063", "4064", "4065", "4066", "4067", "4068", "4069", "4070", "4071", "4072", "4073", "4074", "4075", "4076", "4077", "4081", "4082", "4084", "4085", "4086", "4087", "4088", "4089", "4092", "4093", "4095", "4096", "4097", "4098", "4099", "4100", "4102", "4103", "4104", "4105", "4106", "4107", "4110", "4111", "4112", "4115", "4116", "4117" ] - }, - "utsettelseType" : { - "type" : "string", - "enum" : [ "ARBEID", "FERIE", "SYKDOM_SKADE", "SØKER_INNLAGT", "BARN_INNLAGT", "HV_OVELSE", "NAV_TILTAK", "FRI", "-" ] - }, - "oppholdÅrsak" : { - "type" : "string", - "enum" : [ "-", "UTTAK_MØDREKVOTE_ANNEN_FORELDER", "UTTAK_FEDREKVOTE_ANNEN_FORELDER", "UTTAK_FELLESP_ANNEN_FORELDER", "UTTAK_FORELDREPENGER_ANNEN_FORELDER" ] - }, - "flerbarnsdager" : { - "type" : "boolean" - }, - "samtidigUttak" : { - "type" : "boolean" - }, - "samtidigUttaksprosent" : { - "type" : "number" - }, - "graderingInnvilget" : { - "type" : "boolean" - }, - "graderingAvslagÅrsak" : { - "type" : "string", - "enum" : [ "-", "4504", "4501", "4502", "4503", "4523" ] - }, - "mottattDato" : { - "type" : "string", - "format" : "date" - } - } - }, - "AktivitetskravGrunnlagArbeid" : { - "type" : "object", - "properties" : { - "orgNummer" : { - "type" : "string" - }, - "stillingsprosent" : { - "type" : "number" - }, - "permisjon" : { - "$ref" : "#/components/schemas/Permisjon" - } - } - }, - "DokumentasjonVurderingBehovDto" : { - "required" : [ "fom", "tom", "type", "årsak" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "type" : { - "type" : "string", - "enum" : [ "UTSETTELSE", "OVERFØRING", "UTTAK" ] - }, - "årsak" : { - "type" : "string", - "enum" : [ "INNLEGGELSE_SØKER", "INNLEGGELSE_BARN", "HV_ØVELSE", "NAV_TILTAK", "SYKDOM_SØKER", "INNLEGGELSE_ANNEN_FORELDER", "SYKDOM_ANNEN_FORELDER", "BARE_SØKER_RETT", "ALENEOMSORG", "AKTIVITETSKRAV_ARBEID", "AKTIVITETSKRAV_UTDANNING", "AKTIVITETSKRAV_KVALPROG", "AKTIVITETSKRAV_INTROPROG", "AKTIVITETSKRAV_TRENGER_HJELP", "AKTIVITETSKRAV_INNLAGT", "AKTIVITETSKRAV_ARBEID_OG_UTDANNING", "AKTIVITETSKRAV_IKKE_OPPGITT", "TIDLIG_OPPSTART_FAR" ] - }, - "vurdering" : { - "type" : "string", - "enum" : [ "GODKJENT", "GODKJENT_AUTOMATISK", "IKKE_GODKJENT", "IKKE_DOKUMENTERT" ] - }, - "morsStillingsprosent" : { - "type" : "number" - }, - "aktivitetskravGrunnlag" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AktivitetskravGrunnlagArbeid" - } - } - } - }, - "Permisjon" : { - "type" : "object", - "properties" : { - "prosent" : { - "type" : "number" - }, - "type" : { - "type" : "string", - "enum" : [ "-", "UTDANNING", "FORELDREPENGER", "PERMITTERING", "ANNEN_PERMISJON" ] - } - } - }, - "FaktaUttakPeriodeDto" : { - "required" : [ "fom", "tom" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "uttakPeriodeType" : { - "type" : "string", - "enum" : [ "FELLESPERIODE", "MØDREKVOTE", "FEDREKVOTE", "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "-" ] - }, - "utsettelseÅrsak" : { - "type" : "string", - "enum" : [ "ARBEID", "LOVBESTEMT_FERIE", "SYKDOM", "INSTITUSJONSOPPHOLD_SØKER", "INSTITUSJONSOPPHOLD_BARNET", "HV_OVELSE", "NAV_TILTAK", "FRI", "-" ] - }, - "overføringÅrsak" : { - "type" : "string", - "enum" : [ "INSTITUSJONSOPPHOLD_ANNEN_FORELDER", "SYKDOM_ANNEN_FORELDER", "IKKE_RETT_ANNEN_FORELDER", "ALENEOMSORG", "-" ] - }, - "oppholdÅrsak" : { - "type" : "string", - "enum" : [ "-", "UTTAK_MØDREKVOTE_ANNEN_FORELDER", "UTTAK_FEDREKVOTE_ANNEN_FORELDER", "UTTAK_FELLESP_ANNEN_FORELDER", "UTTAK_FORELDREPENGER_ANNEN_FORELDER" ] - }, - "arbeidstidsprosent" : { - "maximum" : 100, - "minimum" : 0, - "type" : "number" - }, - "arbeidsforhold" : { - "$ref" : "#/components/schemas/ArbeidsforholdDto" - }, - "samtidigUttaksprosent" : { - "type" : "number" - }, - "flerbarnsdager" : { - "type" : "boolean" - }, - "morsAktivitet" : { - "type" : "string", - "enum" : [ "-", "ARBEID", "UTDANNING", "KVALPROG", "INTROPROG", "TRENGER_HJELP", "INNLAGT", "ARBEID_OG_UTDANNING", "UFØRE", "IKKE_OPPGITT" ] - }, - "periodeKilde" : { - "type" : "string", - "enum" : [ "SØKNAD", "TIDLIGERE_VEDTAK", "ANDRE_NAV_VEDTAK", "SAKSBEHANDLER" ] - }, - "begrunnelse" : { - "maxLength" : 4000, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - } - } - }, - "SvangerskapspengerUttakResultatArbeidsforholdDto" : { - "type" : "object", - "properties" : { - "arbeidsforholdIkkeOppfyltÅrsak" : { - "type" : "string", - "enum" : [ "-", "8301", "8302", "8303", "8312" ] - }, - "arbeidsgiverReferanse" : { - "type" : "string" - }, - "arbeidType" : { - "type" : "string", - "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] - }, - "perioder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SvangerskapspengerUttakResultatPeriodeDto" - } - } - } - }, - "SvangerskapspengerUttakResultatDto" : { - "type" : "object", - "properties" : { - "uttaksResultatArbeidsforhold" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SvangerskapspengerUttakResultatArbeidsforholdDto" - } - } - } - }, - "SvangerskapspengerUttakResultatPeriodeDto" : { - "type" : "object", - "properties" : { - "utbetalingsgrad" : { - "type" : "number" - }, - "periodeResultatType" : { - "type" : "string", - "enum" : [ "INNVILGET", "AVSLÅTT", "MANUELL_BEHANDLING" ] - }, - "periodeIkkeOppfyltÅrsak" : { - "type" : "string", - "enum" : [ "-", "8304", "8305", "8306", "8308", "8309", "8310", "8311", "8313", "8314", "8315", "8316", "8317" ] - }, - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - } - } - }, - "FilterDto" : { - "type" : "object", - "properties" : { - "kreverSammenhengendeUttakTom" : { - "type" : "string", - "format" : "date" - }, - "utenMinsterett" : { - "type" : "boolean" - }, - "søkerErMor" : { - "type" : "boolean" - } - } - }, - "UttakResultatPeriodeAktivitetDto" : { - "type" : "object", - "properties" : { - "stønadskontoType" : { - "type" : "string", - "enum" : [ "FELLESPERIODE", "MØDREKVOTE", "FEDREKVOTE", "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "-" ] - }, - "prosentArbeid" : { - "type" : "number" - }, - "arbeidsforholdId" : { - "type" : "string" - }, - "eksternArbeidsforholdId" : { - "type" : "string" - }, - "arbeidsgiverReferanse" : { - "type" : "string" - }, - "utbetalingsgrad" : { - "type" : "number" - }, - "uttakArbeidType" : { - "type" : "string", - "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] - }, - "gradering" : { - "type" : "boolean" - }, - "trekkdagerDesimaler" : { - "type" : "number" - } - } - }, - "UttakResultatPeriodeDto" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "aktiviteter" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/UttakResultatPeriodeAktivitetDto" - } - }, - "periodeResultatType" : { - "type" : "string", - "enum" : [ "INNVILGET", "AVSLÅTT", "MANUELL_BEHANDLING" ] - }, - "begrunnelse" : { - "type" : "string" - }, - "periodeResultatÅrsak" : { - "type" : "string", - "enum" : [ "-", "2002", "2003", "2004", "2005", "2006", "2007", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2030", "2031", "2032", "2033", "2034", "2035", "2036", "2037", "2038", "2039", "4002", "4003", "4005", "4007", "4008", "4012", "4013", "4020", "4022", "4023", "4025", "4030", "4031", "4032", "4033", "4034", "4035", "4037", "4038", "4039", "4040", "4041", "4050", "4051", "4052", "4053", "4054", "4055", "4056", "4057", "4058", "4059", "4060", "4061", "4062", "4063", "4064", "4065", "4066", "4067", "4068", "4069", "4070", "4071", "4072", "4073", "4074", "4075", "4076", "4077", "4081", "4082", "4084", "4085", "4086", "4087", "4088", "4089", "4092", "4093", "4095", "4096", "4097", "4098", "4099", "4100", "4102", "4103", "4104", "4105", "4106", "4107", "4110", "4111", "4112", "4115", "4116", "4117" ] - }, - "manuellBehandlingÅrsak" : { - "type" : "string", - "enum" : [ "-", "5001", "5002", "5003", "5004", "5005", "5006", "5007", "5009", "5010", "5011", "5012", "5014", "5016", "5018", "5019", "5024", "5025", "5026", "5027", "5028", "5029", "5030", "5031", "5032" ] - }, - "graderingAvslagÅrsak" : { - "type" : "string", - "enum" : [ "-", "4504", "4501", "4502", "4503", "4523" ] - }, - "flerbarnsdager" : { - "type" : "boolean" - }, - "samtidigUttak" : { - "type" : "boolean" - }, - "samtidigUttaksprosent" : { - "type" : "number" - }, - "graderingInnvilget" : { - "type" : "boolean" - }, - "periodeType" : { - "type" : "string", - "enum" : [ "FELLESPERIODE", "MØDREKVOTE", "FEDREKVOTE", "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "-" ] - }, - "utsettelseType" : { - "type" : "string", - "enum" : [ "ARBEID", "FERIE", "SYKDOM_SKADE", "SØKER_INNLAGT", "BARN_INNLAGT", "HV_OVELSE", "NAV_TILTAK", "FRI", "-" ] - }, - "oppholdÅrsak" : { - "type" : "string", - "enum" : [ "-", "UTTAK_MØDREKVOTE_ANNEN_FORELDER", "UTTAK_FEDREKVOTE_ANNEN_FORELDER", "UTTAK_FELLESP_ANNEN_FORELDER", "UTTAK_FORELDREPENGER_ANNEN_FORELDER" ] - }, - "mottattDato" : { - "type" : "string", - "format" : "date" - }, - "tidligstMottattDato" : { - "type" : "string", - "format" : "date" - }, - "erUtbetalingRedusertTilMorsStillingsprosent" : { - "type" : "boolean" - }, - "gradertAktivitet" : { - "$ref" : "#/components/schemas/UttakResultatPeriodeAktivitetDto" - }, - "periodeResultatÅrsakLovhjemmel" : { - "type" : "string" - }, - "graderingsAvslagÅrsakLovhjemmel" : { - "type" : "string" - } - } - }, - "UttakResultatPerioderDto" : { - "type" : "object", - "properties" : { - "perioderSøker" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/UttakResultatPeriodeDto" - } - }, - "perioderAnnenpart" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/UttakResultatPeriodeDto" - } - }, - "annenForelderHarRett" : { - "type" : "boolean" - }, - "aleneomsorg" : { - "type" : "boolean" - }, - "annenForelderRettEØS" : { - "type" : "boolean" - }, - "oppgittAnnenForelderRettEØS" : { - "type" : "boolean" - }, - "årsakFilter" : { - "$ref" : "#/components/schemas/FilterDto" - }, - "endringsdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "Beskrivelse" : { - "type" : "object", - "properties" : { - "header" : { - "type" : "string" - }, - "kommentarer" : { - "type" : "array", - "items" : { - "type" : "string" - } - } - } - }, - "Dokument" : { - "type" : "object", - "properties" : { - "journalpostId" : { - "type" : "string" - }, - "dokumentId" : { - "type" : "string" - }, - "tittel" : { - "type" : "string" - } - } - }, - "OppgaveDto" : { - "type" : "object", - "properties" : { - "oppgaveId" : { - "type" : "string" - }, - "oppgavetype" : { - "type" : "string", - "enum" : [ "VUR_KONSEKVENS", "VUR_DOKUMENT" ] - }, - "beskrivelser" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Beskrivelse" - } - }, - "dokumenter" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Dokument" - } - } - } - }, - "VergeBackendDto" : { - "type" : "object", - "properties" : { - "aktoerId" : { - "type" : "string" - }, - "navn" : { - "type" : "string" - }, - "organisasjonsnummer" : { - "type" : "string" - }, - "gyldigFom" : { - "type" : "string", - "format" : "date" - }, - "gyldigTom" : { - "type" : "string", - "format" : "date" - }, - "vergeType" : { - "type" : "string", - "enum" : [ "BARN", "FBARN", "VOKSEN", "ADVOKAT", "ANNEN_F" ] - } - } - }, - "VergeDto" : { - "required" : [ "vergeType" ], - "type" : "object", - "properties" : { - "vergeType" : { - "type" : "string", - "enum" : [ "BARN", "FBARN", "VOKSEN", "ADVOKAT", "ANNEN_F" ] - }, - "gyldigFom" : { - "type" : "string", - "format" : "date" - }, - "gyldigTom" : { - "type" : "string", - "format" : "date" - }, - "navn" : { - "maxLength" : 100, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "fnr" : { - "pattern" : "^\\d{11}$", - "type" : "string" - }, - "organisasjonsnummer" : { - "pattern" : "^\\d{9}$", - "type" : "string" - } - } - }, - "YtelseFordelingDto" : { - "type" : "object", - "properties" : { - "overstyrtOmsorg" : { - "type" : "boolean" - }, - "førsteUttaksdato" : { - "type" : "string", - "format" : "date" - }, - "ønskerJustertVedFødsel" : { - "type" : "boolean" - } - } - }, - "OmsorgOgRettDto" : { - "type" : "object", - "properties" : { - "søknad" : { - "$ref" : "#/components/schemas/Søknad" - }, - "registerdata" : { - "$ref" : "#/components/schemas/RegisterData" - }, - "manuellBehandlingResultat" : { - "$ref" : "#/components/schemas/ManuellBehandlingResultat" - }, - "rettighetstype" : { - "type" : "string", - "enum" : [ "ALENEOMSORG", "BEGGE_RETT", "BEGGE_RETT_EØS", "BARE_MOR_RETT", "BARE_FAR_RETT", "BARE_FAR_RETT_MOR_UFØR" ] - }, - "relasjonsRolleType" : { - "type" : "string", - "enum" : [ "EKTE", "BARN", "FARA", "MORA", "REPA", "MMOR", "ANPA", "-" ] - } - } - }, - "RegisterData" : { - "type" : "object", - "properties" : { - "harAnnenpartUføretrygd" : { - "type" : "string", - "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] - }, - "harAnnenpartForeldrepenger" : { - "type" : "string", - "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] - }, - "harAnnenpartEngangsstønad" : { - "type" : "string", - "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] - } - } - }, - "Rettighet" : { - "type" : "object", - "properties" : { - "harRettNorge" : { - "type" : "string", - "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] - }, - "harOppholdEØS" : { - "type" : "string", - "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] - }, - "harRettEØS" : { - "type" : "string", - "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] - }, - "harUføretrygd" : { - "type" : "string", - "enum" : [ "JA", "NEI", "IKKE_RELEVANT" ] - } - } - }, - "BestillDokumentDto" : { - "required" : [ "brevmalkode" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "brevmalkode" : { - "type" : "string", - "enum" : [ "FRITEK", "FRIHTM", "INNVES", "AVSLES", "INVFOR", "AVSFOR", "OPPFOR", "ANUFOR", "INVSVP", "OPPSVP", "AVSSVP", "INFOAF", "INNOPP", "VARREV", "IOHENL", "INNSYN", "IKKESO", "INGEND", "FORSAK", "FORMED", "FORMEF", "FORTID", "KGEAVV", "KGEOMG", "KGEOVE", "ELYSIM", "ENDUTB", "INFOPU", "FORPUS", "KLAGAV", "KAVVIS", "KLAGNY", "KHJEMS", "VEDMED", "KOMGJO", "KLAGOV", "KOVKLA", "KLAGVE", "KSTADF", "VEDOGA", "ANKEBO", "ANKOMG", "ANKOPP", "KGESTA", "KGEHJE" ] - }, - "fritekst" : { - "maxLength" : 20000, - "minLength" : 0, - "type" : "string" - }, - "arsakskode" : { - "type" : "string", - "enum" : [ "BARNIKKEREG", "JOBBFULLTID", "IKKEOPPTJENT", "UTVANDRET", "JOBBUTLAND", "IKKEOPPHOLD", "JOBB6MND", "AKTIVITET", "ANNET" ] - } - } - }, - "ForhåndsvisDokumentDto" : { - "required" : [ "behandlingUuid" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "dokumentMal" : { - "type" : "string", - "enum" : [ "FRITEK", "FRIHTM", "INNVES", "AVSLES", "INVFOR", "AVSFOR", "OPPFOR", "ANUFOR", "INVSVP", "OPPSVP", "AVSSVP", "INFOAF", "INNOPP", "VARREV", "IOHENL", "INNSYN", "IKKESO", "INGEND", "FORSAK", "FORMED", "FORMEF", "FORTID", "KGEAVV", "KGEOMG", "KGEOVE", "ELYSIM", "ENDUTB", "INFOPU", "FORPUS", "KLAGAV", "KAVVIS", "KLAGNY", "KHJEMS", "VEDMED", "KOMGJO", "KLAGOV", "KOVKLA", "KLAGVE", "KSTADF", "VEDOGA", "ANKEBO", "ANKOMG", "ANKOPP", "KGESTA", "KGEHJE" ] - }, - "arsakskode" : { - "type" : "string", - "enum" : [ "BARNIKKEREG", "JOBBFULLTID", "IKKEOPPTJENT", "UTVANDRET", "JOBBUTLAND", "IKKEOPPHOLD", "JOBB6MND", "AKTIVITET", "ANNET" ] - }, - "automatiskVedtaksbrev" : { - "type" : "boolean" - }, - "tittel" : { - "maxLength" : 200, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - }, - "fritekst" : { - "maxLength" : 20000, - "minLength" : 0, - "type" : "string" - } - } - }, - "DokumentKvitteringDto" : { - "required" : [ "behandlingUuid", "dokumentId", "dokumentbestillingUuid", "journalpostId", "saksnummer" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "saksnummer" : { - "$ref" : "#/components/schemas/Saksnummer" - }, - "dokumentbestillingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "journalpostId" : { - "pattern" : "^[\\p{L}\\p{N}_.\\-]+$", - "type" : "string" - }, - "dokumentId" : { - "type" : "string" - } - } - }, - "Saksnummer" : { - "required" : [ "saksnummer" ], - "type" : "object", - "properties" : { - "saksnummer" : { - "maxLength" : 20, - "minLength" : 0, - "pattern" : "^[a-zA-Z0-9_\\-]*$", - "type" : "string" - } - } - }, - "MellomlagreHtmlDto" : { - "required" : [ "behandlingUuid" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "redigertInnhold" : { - "maxLength" : 20000, - "minLength" : 0, - "type" : "string" - } - } - }, - "DokumentDto" : { - "type" : "object", - "properties" : { - "journalpostId" : { - "type" : "string" - }, - "dokumentId" : { - "type" : "string" - }, - "behandlinger" : { - "type" : "array", - "items" : { - "type" : "integer", - "format" : "int64" - } - }, - "behandlingUuidList" : { - "type" : "array", - "items" : { - "type" : "string", - "format" : "uuid" - } - }, - "tidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "tittel" : { - "type" : "string" - }, - "kommunikasjonsretning" : { - "type" : "string", - "enum" : [ "INN", "UT", "NOTAT" ] - }, - "gjelderFor" : { - "type" : "string" - }, - "arbeidsgiverReferanse" : { - "type" : "string" - } - } - }, - "MottattDokumentDto" : { - "type" : "object", - "properties" : { - "mottattDato" : { - "type" : "string", - "format" : "date" - }, - "dokumentTypeId" : { - "type" : "string", - "enum" : [ "SØKNAD_SVANGERSKAPSPENGER", "SØKNAD_FORELDREPENGER_ADOPSJON", "SØKNAD_ENGANGSSTØNAD_FØDSEL", "SØKNAD_ENGANGSSTØNAD_ADOPSJON", "SØKNAD_FORELDREPENGER_FØDSEL", "FLEKSIBELT_UTTAK_FORELDREPENGER", "FORELDREPENGER_ENDRING_SØKNAD", "INNTEKTSMELDING", "KLAGE_DOKUMENT", "I500027", "I000114", "I000119", "DOKUMENTASJON_AV_TERMIN_ELLER_FØDSEL", "DOKUMENTASJON_AV_OMSORGSOVERTAKELSE", "BEKREFTELSE_VENTET_FØDSELSDATO", "FØDSELSATTEST", "I000141", "LEGEERKLÆRING", "DOK_INNLEGGELSE", "BESKRIVELSE_FUNKSJONSNEDSETTELSE", "I000120", "I000121", "I000122", "I000123", "I000124", "DOK_MORS_UTDANNING_ARBEID_SYKDOM", "DOK_FERIE", "DOK_ARBEIDSFORHOLD", "BEKREFTELSE_DELTAR_KVALIFISERINGSPROGRAM", "BEKREFTELSE_FRA_STUDIESTED", "BEKREFTELSE_FRA_ARBEIDSGIVER", "I000112", "DOK_HV", "DOK_NAV_TILTAK", "I000130", "I000131", "I000132", "I000133", "I000109", "I000142", "INNTEKTSOPPLYSNING_SELVSTENDIG", "DOK_INNTEKT", "INNTEKTSOPPLYSNINGER", "RESULTATREGNSKAP", "DOK_MILITÆR_SIVIL_TJENESTE", "DOK_ETTERLØNN", "I000146", "I000052", "KOPI_SKATTEMELDING", "I000140", "BEKREFTELSE_OPPHOLDSTILLATELSE", "I000143", "OPPHOLDSOPPLYSNINGER", "I000110", "I000111", "I000118", "ETTERSENDT_SØKNAD_SVANGERSKAPSPENGER_SELVSTENDIG", "ETTERSENDT_SØKNAD_FORELDREPENGER_ADOPSJON", "ETTERSENDT_SØKNAD_ENGANGSSTØNAD_FØDSEL", "ETTERSENDT_SØKNAD_ENGANGSSTØNAD_ADOPSJON", "ETTERSENDT_SØKNAD_FORELDREPENGER_FØDSEL", "ETTERSENDT_FLEKSIBELT_UTTAK_FORELDREPENGER", "ETTERSENDT_FORELDREPENGER_ENDRING_SØKNAD", "BREV_UTLAND", "ANNET_SKJEMA_UTLAND_IKKE_NAV", "BREV", "I000145", "I000144", "ANNET_SKJEMA_IKKE_NAV", "ANNET", "-" ] - }, - "dokumentKategori" : { - "type" : "string", - "enum" : [ "-", "KLGA", "ITSKJ", "SOKN", "ESKJ", "BRV", "EDIALOG", "FNOT", "IBRV", "KONVEARK", "KONVSYS", "PUBEOS", "SEDOK", "TSKJ", "VBRV" ] - } - } - }, - "JournalpostIdDto" : { - "required" : [ "journalpostId" ], - "type" : "object", - "properties" : { - "journalpostId" : { - "type" : "string" - } - } - }, - "DokumentIdDto" : { - "type" : "object", - "properties" : { - "dokumentId" : { - "type" : "string" - } - } - }, - "AktoerInfoDto" : { - "type" : "object", - "properties" : { - "aktørId" : { - "type" : "string" - }, - "person" : { - "$ref" : "#/components/schemas/PersonDto" - }, - "fagsaker" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FagsakSøkDto" - } - } - } - }, - "FagsakSøkDto" : { - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "fagsakYtelseType" : { - "type" : "string", - "enum" : [ "ES", "FP", "SVP", "-" ] - }, - "status" : { - "type" : "string", - "enum" : [ "OPPR", "UBEH", "LOP", "AVSLU" ] - }, - "relasjonsRolleType" : { - "type" : "string", - "enum" : [ "EKTE", "BARN", "FARA", "MORA", "REPA", "MMOR", "ANPA", "-" ] - }, - "aktørId" : { - "type" : "string" - }, - "person" : { - "$ref" : "#/components/schemas/PersonDto" - }, - "barnFødt" : { - "type" : "string", - "format" : "date" - }, - "opprettet" : { - "type" : "string", - "format" : "date" - }, - "endret" : { - "type" : "string", - "format" : "date" - } - } - }, - "PersonDto" : { - "type" : "object", - "properties" : { - "aktørId" : { - "type" : "string" - }, - "navn" : { - "type" : "string" - }, - "fødselsnummer" : { - "type" : "string" - }, - "kjønn" : { - "type" : "string", - "enum" : [ "K", "M", "-" ] - }, - "diskresjonskode" : { - "type" : "string" - }, - "fødselsdato" : { - "type" : "string", - "format" : "date" - }, - "dødsdato" : { - "type" : "string", - "format" : "date" - }, - "dodsdato" : { - "type" : "string", - "format" : "date" - }, - "språkkode" : { - "type" : "string", - "enum" : [ "NB", "NN", "EN", "-" ] - } - } - }, - "AktoerIdDto" : { - "type" : "object", - "properties" : { - "aktoerId" : { - "maxLength" : 20, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - } - } - }, - "EndreUtlandMarkeringDto" : { - "required" : [ "saksnummer" ], - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "fagsakMarkeringer" : { - "maxItems" : 25, - "minItems" : 0, - "uniqueItems" : true, - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "EØS_BOSATT_NORGE", "BOSATT_UTLAND", "SAMMENSATT_KONTROLL", "DØD_DØDFØDSEL", "PRAKSIS_UTSETTELSE", "BARE_FAR_RETT", "SELVSTENDIG_NÆRING", "HASTER" ] - } - } - } - }, - "FagsakBackendDto" : { - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "fagsakYtelseType" : { - "type" : "string", - "enum" : [ "ES", "FP", "SVP", "-" ] - }, - "status" : { - "type" : "string", - "enum" : [ "OPPR", "UBEH", "LOP", "AVSLU" ] - }, - "relasjonsRolleType" : { - "type" : "string", - "enum" : [ "EKTE", "BARN", "FARA", "MORA", "REPA", "MMOR", "ANPA", "-" ] - }, - "aktørId" : { - "type" : "string" - }, - "dekningsgrad" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "AnnenPartBehandlingDto" : { - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "relasjonsRolleType" : { - "type" : "string", - "enum" : [ "EKTE", "BARN", "FARA", "MORA", "REPA", "MMOR", "ANPA", "-" ] - }, - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - } - } - }, - "BehandlingOperasjonerDto" : { - "type" : "object", - "properties" : { - "uuid" : { - "type" : "string", - "format" : "uuid" - }, - "behandlingKanBytteEnhet" : { - "type" : "boolean" - }, - "behandlingKanHenlegges" : { - "type" : "boolean" - }, - "behandlingKanGjenopptas" : { - "type" : "boolean" - }, - "behandlingKanOpnesForEndringer" : { - "type" : "boolean" - }, - "behandlingKanMerkesHaster" : { - "type" : "boolean" - }, - "behandlingKanSettesPaVent" : { - "type" : "boolean" - }, - "behandlingKanSendeMelding" : { - "type" : "boolean" - }, - "behandlingFraBeslutter" : { - "type" : "boolean" - }, - "behandlingTilGodkjenning" : { - "type" : "boolean" - }, - "vergeBehandlingsmeny" : { - "type" : "string", - "enum" : [ "SKJUL", "OPPRETT", "FJERN" ] - } - } - }, - "BehandlingOpprettingDto" : { - "type" : "object", - "properties" : { - "behandlingType" : { - "type" : "string", - "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] - }, - "kanOppretteBehandling" : { - "type" : "boolean" - } - } - }, - "BrevmalDto" : { - "required" : [ "kode", "navn" ], - "type" : "object", - "properties" : { - "kode" : { - "pattern" : "[A-Z]{6}", - "type" : "string" - }, - "navn" : { - "type" : "string" - }, - "tilgjengelig" : { - "type" : "boolean" - } - } - }, - "FagsakBehandlingDto" : { - "type" : "object", - "properties" : { - "id" : { - "type" : "integer", - "format" : "int64" - }, - "uuid" : { - "type" : "string", - "format" : "uuid" - }, - "versjon" : { - "type" : "integer", - "format" : "int64" - }, - "type" : { - "type" : "string", - "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] - }, - "status" : { - "type" : "string", - "enum" : [ "AVSLU", "FVED", "IVED", "OPPRE", "UTRED" ] - }, - "fagsakId" : { - "type" : "integer", - "format" : "int64" - }, - "opprettet" : { - "type" : "string", - "format" : "date-time" - }, - "avsluttet" : { - "type" : "string", - "format" : "date-time" - }, - "endret" : { - "type" : "string", - "format" : "date-time" - }, - "endretAvBrukernavn" : { - "type" : "string" - }, - "behandlendeEnhetId" : { - "type" : "string" - }, - "behandlendeEnhetNavn" : { - "type" : "string" - }, - "erAktivPapirsoknad" : { - "type" : "boolean" - }, - "førsteÅrsak" : { - "$ref" : "#/components/schemas/BehandlingÅrsakDto" - }, - "behandlingsfristTid" : { - "type" : "string", - "format" : "date" - }, - "gjeldendeVedtak" : { - "type" : "boolean" - }, - "erPaaVent" : { - "type" : "boolean" - }, - "originalVedtaksDato" : { - "type" : "string", - "format" : "date" - }, - "behandlingHenlagt" : { - "type" : "boolean" - }, - "behandlingPaaVent" : { - "type" : "boolean" - }, - "behandlingPåVent" : { - "type" : "boolean" - }, - "fristBehandlingPåVent" : { - "type" : "string" - }, - "fristBehandlingPaaVent" : { - "type" : "string" - }, - "venteArsakKode" : { - "type" : "string" - }, - "venteÅrsakKode" : { - "type" : "string" - }, - "sprakkode" : { - "type" : "string", - "enum" : [ "NB", "NN", "EN", "-" ] - }, - "språkkode" : { - "type" : "string", - "enum" : [ "NB", "NN", "EN", "-" ] - }, - "behandlingKøet" : { - "type" : "boolean" - }, - "ansvarligSaksbehandler" : { - "type" : "string" - }, - "toTrinnsBehandling" : { - "type" : "boolean" - }, - "behandlingsresultat" : { - "$ref" : "#/components/schemas/BehandlingsresultatDto" - }, - "behandlingÅrsaker" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BehandlingÅrsakDto" - } - }, - "vilkår" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/VilkårDto" - } - }, - "links" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ResourceLink" - } - }, - "behandlingTillatteOperasjoner" : { - "$ref" : "#/components/schemas/BehandlingOperasjonerDto" - }, - "brevmaler" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BrevmalDto" - } - }, - "totrinnskontrollÅrsaker" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/TotrinnskontrollSkjermlenkeContextDto" - } - }, - "totrinnskontrollReadonly" : { - "type" : "boolean" - }, - "risikoAksjonspunkt" : { - "$ref" : "#/components/schemas/AksjonspunktDto" - }, - "kontrollResultat" : { - "$ref" : "#/components/schemas/KontrollresultatDto" - }, - "ugunstAksjonspunkt" : { - "type" : "boolean" - }, - "behandlingKoet" : { - "type" : "boolean" - } - } - }, - "FagsakFullDto" : { - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "fagsakYtelseType" : { - "type" : "string", - "enum" : [ "ES", "FP", "SVP", "-" ] - }, - "relasjonsRolleType" : { - "type" : "string", - "enum" : [ "EKTE", "BARN", "FARA", "MORA", "REPA", "MMOR", "ANPA", "-" ] - }, - "status" : { - "type" : "string", - "enum" : [ "OPPR", "UBEH", "LOP", "AVSLU" ] - }, - "aktørId" : { - "type" : "string" - }, - "sakSkalTilInfotrygd" : { - "type" : "boolean" - }, - "dekningsgrad" : { - "type" : "integer", - "format" : "int32" - }, - "bruker" : { - "$ref" : "#/components/schemas/PersonDto" - }, - "brukerManglerAdresse" : { - "type" : "boolean" - }, - "annenPart" : { - "$ref" : "#/components/schemas/PersonDto" - }, - "annenpartBehandling" : { - "$ref" : "#/components/schemas/AnnenPartBehandlingDto" - }, - "familiehendelse" : { - "$ref" : "#/components/schemas/SakHendelseDto" - }, - "fagsakMarkeringer" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FagsakMarkeringDto" - } - }, - "behandlingTypeKanOpprettes" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BehandlingOpprettingDto" - } - }, - "behandlinger" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FagsakBehandlingDto" - } - }, - "historikkinnslag" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/HistorikkinnslagDto" - } - }, - "notater" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FagsakNotatDto" - } - }, - "kontrollResultat" : { - "$ref" : "#/components/schemas/KontrollresultatDto" - }, - "harVergeIÅpenBehandling" : { - "type" : "boolean" - } - } - }, - "FagsakMarkeringDto" : { - "type" : "object", - "properties" : { - "fagsakMarkering" : { - "type" : "string", - "enum" : [ "EØS_BOSATT_NORGE", "BOSATT_UTLAND", "SAMMENSATT_KONTROLL", "DØD_DØDFØDSEL", "PRAKSIS_UTSETTELSE", "BARE_FAR_RETT", "SELVSTENDIG_NÆRING", "HASTER" ] - }, - "kortNavn" : { - "type" : "string" - } - } - }, - "FagsakNotatDto" : { - "type" : "object", - "properties" : { - "opprettetAv" : { - "type" : "string" - }, - "opprettetTidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "notat" : { - "type" : "string" - } - } - }, - "FaresignalgruppeDto" : { - "type" : "object", - "properties" : { - "faresignaler" : { - "type" : "array", - "items" : { - "type" : "string" - } - } - } - }, - "HistorikkAktørDto" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "BESL", "SBH", "SOKER", "ARBEIDSGIVER", "VL", "-" ] - }, - "ident" : { - "type" : "string" - } - } - }, - "HistorikkInnslagDokumentLinkDto" : { - "type" : "object", - "properties" : { - "tag" : { - "type" : "string" - }, - "journalpostId" : { - "type" : "string" - }, - "dokumentId" : { - "type" : "string" - }, - "utgått" : { - "type" : "boolean" - } - } - }, - "HistorikkinnslagDto" : { - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "aktør" : { - "$ref" : "#/components/schemas/HistorikkAktørDto" - }, - "skjermlenke" : { - "type" : "string", - "enum" : [ "ANKE_MERKNADER", "ANKE_VURDERING", "BEREGNING_ENGANGSSTOENAD", "BEREGNING_FORELDREPENGER", "BESTEBEREGNING", "FAKTA_FOR_OMSORG", "FAKTA_FOR_OPPTJENING", "FAKTA_OM_ADOPSJON", "FAKTA_OM_ARBEIDSFORHOLD", "FAKTA_OM_ARBEIDSFORHOLD_INNTEKTSMELDING", "FAKTA_OM_ARBEIDSFORHOLD_PERMISJON", "FAKTA_OM_BEREGNING", "FAKTA_OM_FOEDSEL", "FAKTA_OM_FORDELING", "FAKTA_OM_MEDLEMSKAP", "FAKTA_OM_OMSORG_OG_FORELDREANSVAR", "FAKTA_OM_OPPTJENING", "FAKTA_OM_SIMULERING", "FAKTA_OM_UTTAK", "FAKTA_OM_AKTIVITETSKRAV", "FAKTA_OMSORG_OG_RETT", "FAKTA_OM_VERGE", "FORMKRAV_KLAGE_KA", "FORMKRAV_KLAGE_NFP", "KLAGE_BEH_NFP", "KLAGE_BEH_NK", "KONTROLL_AV_SAKSOPPLYSNINGER", "OPPLYSNINGSPLIKT", "PUNKT_FOR_ADOPSJON", "PUNKT_FOR_FOEDSEL", "PUNKT_FOR_FORELDREANSVAR", "PUNKT_FOR_MEDLEMSKAP", "PUNKT_FOR_MEDLEMSKAP_LØPENDE", "PUNKT_FOR_OMSORG", "PUNKT_FOR_OPPTJENING", "PUNKT_FOR_SVANGERSKAPSPENGER", "PUNKT_FOR_SVP_INNGANG", "SOEKNADSFRIST", "TILKJENT_YTELSE", "-", "UTLAND", "UTTAK", "VEDTAK", "VURDER_FARESIGNALER", "FAKTA_OM_UTTAK_DOKUMENTASJON", "FAKTA_UTTAK" ] - }, - "opprettetTidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "dokumenter" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/HistorikkInnslagDokumentLinkDto" - } - }, - "tittel" : { - "type" : "string" - }, - "linjer" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Linje" - } - } - } - }, - "KontrollresultatDto" : { - "type" : "object", - "properties" : { - "kontrollresultat" : { - "type" : "string", - "enum" : [ "HOY", "IKKE_HOY", "IKKE_KLASSIFISERT", "-" ] - }, - "iayFaresignaler" : { - "$ref" : "#/components/schemas/FaresignalgruppeDto" - }, - "medlFaresignaler" : { - "$ref" : "#/components/schemas/FaresignalgruppeDto" - }, - "faresignalVurdering" : { - "type" : "string", - "enum" : [ "INNVIRKNING", "INNVILGET_REDUSERT", "INNVILGET_UENDRET", "AVSLAG_FARESIGNAL", "AVSLAG_ANNET", "INGEN_INNVIRKNING", "-" ] - } - } - }, - "Linje" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "TEKST", "LINJESKIFT" ] - }, - "tekst" : { - "type" : "string" - } - } - }, - "SakHendelseDto" : { - "type" : "object", - "properties" : { - "hendelseType" : { - "type" : "string", - "enum" : [ "ADPSJN", "OMSRGO", "FODSL", "TERM", "-" ] - }, - "hendelseDato" : { - "type" : "string", - "format" : "date" - }, - "antallBarn" : { - "type" : "integer", - "format" : "int32" - }, - "dødfødsel" : { - "type" : "boolean" - } - } - }, - "TotrinnsBeregningDto" : { - "type" : "object", - "properties" : { - "fastsattVarigEndringNaering" : { - "type" : "boolean" - }, - "faktaOmBeregningTilfeller" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "VURDER_TIDSBEGRENSET_ARBEIDSFORHOLD", "VURDER_SN_NY_I_ARBEIDSLIVET", "VURDER_NYOPPSTARTET_FL", "FASTSETT_MAANEDSINNTEKT_FL", "FASTSETT_BG_ARBEIDSTAKER_UTEN_INNTEKTSMELDING", "VURDER_LØNNSENDRING", "FASTSETT_MÅNEDSLØNN_ARBEIDSTAKER_UTEN_INNTEKTSMELDING", "VURDER_AT_OG_FL_I_SAMME_ORGANISASJON", "FASTSETT_BESTEBEREGNING_FØDENDE_KVINNE", "VURDER_ETTERLØNN_SLUTTPAKKE", "FASTSETT_ETTERLØNN_SLUTTPAKKE", "VURDER_MOTTAR_YTELSE", "VURDER_BESTEBEREGNING", "VURDER_MILITÆR_SIVILTJENESTE", "VURDER_REFUSJONSKRAV_SOM_HAR_KOMMET_FOR_SENT", "FASTSETT_BG_KUN_YTELSE", "TILSTØTENDE_YTELSE", "FASTSETT_ENDRET_BEREGNINGSGRUNNLAG", "-" ] - } - } - } - }, - "TotrinnskontrollAksjonspunkterDto" : { - "type" : "object", - "properties" : { - "aksjonspunktKode" : { - "type" : "string" - }, - "opptjeningAktiviteter" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/TotrinnskontrollAktivitetDto" - } - }, - "beregningDto" : { - "$ref" : "#/components/schemas/TotrinnsBeregningDto" - }, - "besluttersBegrunnelse" : { - "type" : "string" - }, - "totrinnskontrollGodkjent" : { - "type" : "boolean" - }, - "vurderPaNyttArsaker" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "FEIL_FAKTA", "FEIL_LOV", "SKJØNN", "UTREDNING", "SAKSFLYT", "BEGRUNNELSE", "-", "ANNET", "FEIL_REGEL" ] - } - }, - "uttakPerioder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/UttakPeriodeEndringDto" - } - } - } - }, - "TotrinnskontrollAktivitetDto" : { - "type" : "object", - "properties" : { - "aktivitetType" : { - "type" : "string" - }, - "erEndring" : { - "type" : "boolean" - }, - "godkjent" : { - "type" : "boolean" - }, - "arbeidsgiverReferanse" : { - "type" : "string" - }, - "arbeidsgiverNavn" : { - "type" : "string" - }, - "orgnr" : { - "type" : "string" - }, - "privatpersonFødselsdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "TotrinnskontrollSkjermlenkeContextDto" : { - "type" : "object", - "properties" : { - "skjermlenkeType" : { - "type" : "string" - }, - "totrinnskontrollAksjonspunkter" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/TotrinnskontrollAksjonspunkterDto" - } - } - } - }, - "UttakPeriodeEndringDto" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "erSlettet" : { - "type" : "boolean" - }, - "erEndret" : { - "type" : "boolean" - }, - "erLagtTil" : { - "type" : "boolean" - } - } - }, - "LagreFagsakNotatDto" : { - "required" : [ "notat", "saksnummer" ], - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "notat" : { - "maxLength" : 1001, - "minLength" : 0, - "pattern" : "^[\\p{N}\\p{L}\\p{M}\\p{Z}\\p{Cf}\\p{P}\\p{Sc}\\p{Sk}\n\t+=]*$", - "type" : "string" - } - } - }, - "SokefeltDto" : { - "required" : [ "searchString" ], - "type" : "object", - "properties" : { - "searchString" : { - "type" : "string" - } - } - }, - "AvklartBarnDto" : { - "type" : "object", - "properties" : { - "fodselsdato" : { - "type" : "string", - "format" : "date" - }, - "dodsdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "AvklartDataAdopsjonDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/FamiliehendelseDto" - }, { - "type" : "object", - "properties" : { - "mannAdoptererAlene" : { - "type" : "boolean" - }, - "ektefellesBarn" : { - "type" : "boolean" - }, - "omsorgsovertakelseDato" : { - "type" : "string", - "format" : "date" - }, - "ankomstNorge" : { - "type" : "string", - "format" : "date" - }, - "adopsjonFodelsedatoer" : { - "type" : "object", - "additionalProperties" : { - "type" : "string", - "format" : "date" - } - }, - "fødselsdatoer" : { - "type" : "object", - "additionalProperties" : { - "type" : "string", - "format" : "date" - } - } - } - } ] - }, - "AvklartDataFodselDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/FamiliehendelseDto" - }, { - "type" : "object", - "properties" : { - "dokumentasjonForligger" : { - "type" : "boolean", - "writeOnly" : true - }, - "dokumentasjonForeligger" : { - "type" : "boolean" - }, - "avklartBarn" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AvklartBarnDto" - } - }, - "brukAntallBarnFraTps" : { - "type" : "boolean" - }, - "termindato" : { - "type" : "string", - "format" : "date" - }, - "antallBarnTermin" : { - "type" : "integer", - "format" : "int32" - }, - "utstedtdato" : { - "type" : "string", - "format" : "date" - }, - "morForSykVedFodsel" : { - "type" : "boolean" - }, - "vedtaksDatoSomSvangerskapsuke" : { - "type" : "integer", - "format" : "int64" - } - } - } ] - }, - "AvklartDataOmsorgDto" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/FamiliehendelseDto" - }, { - "type" : "object", - "properties" : { - "omsorgsovertakelseDato" : { - "type" : "string", - "format" : "date" - }, - "vilkarType" : { - "type" : "string", - "enum" : [ "FP_VK_5", "FP_VK_8", "FP_VK_33", "-" ] - }, - "antallBarnTilBeregning" : { - "type" : "integer", - "format" : "int32" - }, - "foreldreansvarDato" : { - "type" : "string", - "format" : "date" - }, - "fødselsdatoer" : { - "type" : "object", - "additionalProperties" : { - "type" : "string", - "format" : "date" - } - } - } - } ] - }, - "FamiliehendelseDto" : { - "type" : "object", - "properties" : { - "soknadType" : { - "type" : "string", - "enum" : [ "ST-001", "ST-002" ] - }, - "skjaringstidspunkt" : { - "type" : "string", - "format" : "date" - } - } - }, - "FamilieHendelseGrunnlagDto" : { - "type" : "object", - "properties" : { - "oppgitt" : { - "$ref" : "#/components/schemas/FamiliehendelseDto" - }, - "gjeldende" : { - "$ref" : "#/components/schemas/FamiliehendelseDto" - }, - "register" : { - "$ref" : "#/components/schemas/FamiliehendelseDto" - } - } - }, - "FagsakInfomasjonDto" : { - "required" : [ "aktørId", "behandlingstemaOffisiellKode" ], - "type" : "object", - "properties" : { - "aktørId" : { - "type" : "string" - }, - "behandlingstemaOffisiellKode" : { - "maxLength" : 8, - "minLength" : 0, - "pattern" : "^[a-zA-Z0-9_-æøåÆØÅ]*$", - "type" : "string" - } - } - }, - "FamiliehendelseInfoDto" : { - "type" : "object", - "properties" : { - "familiehendelseDato" : { - "type" : "string", - "format" : "date" - }, - "familihendelseType" : { - "type" : "string", - "enum" : [ "FØDSEL", "TERMIN", "ADOPSJON", "OMSORG" ] - } - } - }, - "SakInfoV2Dto" : { - "required" : [ "opprettetDato", "saksnummer", "status", "ytelseType" ], - "type" : "object", - "properties" : { - "saksnummer" : { - "$ref" : "#/components/schemas/SaksnummerDto" - }, - "ytelseType" : { - "type" : "string", - "enum" : [ "ES", "FP", "SVP" ] - }, - "status" : { - "type" : "string", - "enum" : [ "UNDER_BEHANDLING", "LØPENDE", "AVSLUTTET" ] - }, - "familiehendelseInfoDto" : { - "$ref" : "#/components/schemas/FamiliehendelseInfoDto" - }, - "opprettetDato" : { - "type" : "string", - "format" : "date" - }, - "førsteUttaksdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "AktørIdDto" : { - "required" : [ "aktørId" ], - "type" : "object", - "properties" : { - "aktørId" : { - "type" : "string" - } - } - }, - "SakInntektsmeldingDto" : { - "required" : [ "bruker", "ytelse" ], - "type" : "object", - "properties" : { - "bruker" : { - "$ref" : "#/components/schemas/AktørIdDto" - }, - "ytelse" : { - "type" : "string", - "enum" : [ "FORELDREPENGER", "SVANGERSKAPSPENGER" ] - } - } - }, - "JournalpostKnyttningDto" : { - "required" : [ "journalpostIdDto", "saksnummerDto" ], - "type" : "object", - "properties" : { - "saksnummerDto" : { - "$ref" : "#/components/schemas/SaksnummerDto" - }, - "journalpostIdDto" : { - "$ref" : "#/components/schemas/JournalpostIdDto" - } - } - }, - "JournalpostMottakDto" : { - "required" : [ "behandlingstemaOffisiellKode", "journalpostId", "saksnummer" ], - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "journalpostId" : { - "type" : "string" - }, - "forsendelseId" : { - "type" : "string", - "format" : "uuid" - }, - "eksternReferanseId" : { - "pattern" : "^[\\p{L}\\p{N}\\p{P}]+$", - "type" : "string" - }, - "behandlingstemaOffisiellKode" : { - "maxLength" : 8, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*", - "type" : "string" - }, - "dokumentTypeIdOffisiellKode" : { - "maxLength" : 8, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*", - "type" : "string" - }, - "forsendelseMottatt" : { - "type" : "string", - "format" : "date" - }, - "forsendelseMottattTidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "dokumentKategoriOffisiellKode" : { - "maxLength" : 25, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*", - "type" : "string" - }, - "journalForendeEnhet" : { - "maxLength" : 5, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*", - "type" : "string" - }, - "payloadXml" : { - "maxLength" : 392000, - "minLength" : 0, - "pattern" : "^[a-zA-Z0-9\\-_=]*$", - "type" : "string" - }, - "payloadLength" : { - "maximum" : 196000, - "minimum" : 1, - "type" : "integer", - "format" : "int32" - } - } - }, - "OpprettSakDto" : { - "required" : [ "aktørId", "behandlingstemaOffisiellKode" ], - "type" : "object", - "properties" : { - "journalpostId" : { - "type" : "string" - }, - "behandlingstemaOffisiellKode" : { - "maxLength" : 8, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*$", - "type" : "string" - }, - "aktørId" : { - "type" : "string" - } - } - }, - "OpprettSakV2Dto" : { - "required" : [ "aktørId", "ytelseType" ], - "type" : "object", - "properties" : { - "journalpostId" : { - "type" : "string" - }, - "ytelseType" : { - "type" : "string", - "enum" : [ "ES", "FP", "SVP" ] - }, - "aktørId" : { - "type" : "string" - } - } - }, - "BehandlendeFagsystemDto" : { - "type" : "object", - "properties" : { - "behandlesIVedtaksløsningen" : { - "type" : "boolean" - }, - "sjekkMotInfotrygd" : { - "type" : "boolean" - }, - "manuellVurdering" : { - "type" : "boolean" - }, - "saksnummerDto" : { - "$ref" : "#/components/schemas/SaksnummerDto" - } - } - }, - "VurderFagsystemDto" : { - "required" : [ "aktørId", "behandlingstemaOffisiellKode", "strukturertSøknad" ], - "type" : "object", - "properties" : { - "journalpostId" : { - "type" : "string" - }, - "strukturertSøknad" : { - "type" : "boolean" - }, - "aktørId" : { - "type" : "string" - }, - "behandlingstemaOffisiellKode" : { - "maxLength" : 8, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*$", - "type" : "string" - }, - "adopsjonsBarnFodselsdatoer" : { - "maxItems" : 9, - "minItems" : 1, - "type" : "array", - "items" : { - "type" : "string", - "format" : "date" - } - }, - "barnTermindato" : { - "type" : "string", - "format" : "date" - }, - "barnFodselsdato" : { - "type" : "string", - "format" : "date" - }, - "omsorgsovertakelsedato" : { - "type" : "string", - "format" : "date" - }, - "årsakInnsendingInntektsmelding" : { - "maxLength" : 7, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9 .'AaÁáBbCcČčDdĐđEeFfGgHhIiJjKkLlMmNnŊŋOoPpRrSsŠšTtŦŧUuVvZzŽžéôèÉöüäÖÜÄ]*$", - "type" : "string" - }, - "saksnummer" : { - "maxLength" : 30, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*$", - "type" : "string" - }, - "annenPart" : { - "type" : "string" - }, - "virksomhetsnummer" : { - "pattern" : "\\d{9}|\\d{13}", - "type" : "string" - }, - "arbeidsgiverAktørId" : { - "type" : "string" - }, - "arbeidsforholdsid" : { - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9 .',AaÁáBbCcČčDdĐđEeFfGgHhIiJjKkLlMmNnŊŋOoPpRrSsŠšTtŦŧUuVvZzŽžéôèÉöüäÖÜÄ]*$", - "type" : "string" - }, - "forsendelseMottatt" : { - "type" : "string", - "format" : "date" - }, - "forsendelseMottattTidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "startDatoForeldrepengerInntektsmelding" : { - "type" : "string", - "format" : "date" - }, - "dokumentTypeIdOffisiellKode" : { - "maxLength" : 8, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*$", - "type" : "string" - }, - "dokumentKategoriOffisiellKode" : { - "maxLength" : 25, - "minLength" : 0, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*$", - "type" : "string" - }, - "brukerRolle" : { - "type" : "string", - "enum" : [ "MOR", "FAR", "MEDMOR" ] - } - } - }, - "BeregningSatsDto" : { - "required" : [ "satsFom", "satsType", "satsVerdi" ], - "type" : "object", - "properties" : { - "satsType" : { - "pattern" : "^(?:ENGANG|GRUNNBELØP|GSNITT)$", - "type" : "string", - "enum" : [ "ENGANG", "GRUNNBELØP", "GSNITT", "-", "ENGANG", "GRUNNBELØP", "GSNITT" ] - }, - "satsFom" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "format" : "date" - }, - "satsTom" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "format" : "date" - }, - "satsVerdi" : { - "maximum" : 9223372036854775807, - "minimum" : 75000, - "type" : "integer", - "format" : "int64" - } - } - }, - "EndreInntektsmeldingDto" : { - "required" : [ "behandlingUuid", "journalpostId" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "journalpostId" : { - "type" : "string" - }, - "refusjonOpphørFom" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "format" : "date" - }, - "startdatoPermisjon" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "format" : "date" - }, - "refusjonPrMndFraStart" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "refusjonsendringer" : { - "maxItems" : 20, - "minItems" : 0, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/RefusjonsendringDto" - } - } - } - }, - "RefusjonsendringDto" : { - "required" : [ "beløp", "fom" ], - "type" : "object", - "properties" : { - "fom" : { - "pattern" : "^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]))?$", - "type" : "string", - "format" : "date" - }, - "beløp" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - }, - "ByttAktørRequestDto" : { - "required" : [ "gyldigAktørId", "utgåttAktørId" ], - "type" : "object", - "properties" : { - "utgåttAktørId" : { - "type" : "string" - }, - "gyldigAktørId" : { - "type" : "string" - } - } - }, - "KvitteringDto" : { - "required" : [ "behandlingUuid", "fagsystemId", "maksDato", "oppdaterProsessTask" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "fagsystemId" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "maksDato" : { - "type" : "string", - "format" : "date" - }, - "oppdaterProsessTask" : { - "type" : "boolean" - } - } - }, - "K27PatchDto" : { - "required" : [ "behandlingUuid", "fagsystemId", "maksDato" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "fagsystemId" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - }, - "maksDato" : { - "type" : "string", - "format" : "date" - } - } - }, - "OppdragPatchDto" : { - "required" : [ "behandingUuid", "brukerErMottaker", "fagsystemId", "kodeEndring", "oppdragslinjer" ], - "type" : "object", - "properties" : { - "behandingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "brukerErMottaker" : { - "type" : "boolean" - }, - "arbeidsgiverOrgnr" : { - "maxLength" : 9, - "minLength" : 9, - "pattern" : "^\\d*$", - "type" : "string" - }, - "kodeEndring" : { - "pattern" : "^UEND$|^ENDR$|^NY$", - "type" : "string" - }, - "fagsystemId" : { - "maximum" : 300000000000, - "minimum" : 10000000000, - "type" : "integer", - "format" : "int64" - }, - "oppdragslinjer" : { - "maxItems" : 20, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OppdragslinjePatchDto" - } - }, - "bruk-ompostering116" : { - "type" : "boolean" - }, - "omposter-fom" : { - "type" : "string", - "format" : "date" - } - } - }, - "OppdragslinjePatchDto" : { - "required" : [ "delytelseId", "fom", "kodeEndring", "kodeKlassifik", "sats", "satsType", "tom" ], - "type" : "object", - "properties" : { - "kodeEndring" : { - "pattern" : "^(NY|ENDR)$", - "type" : "string" - }, - "opphoerFom" : { - "type" : "string", - "format" : "date" - }, - "kodeKlassifik" : { - "pattern" : "^((FP(AD|SV)?(ATORD|ATFRI|SND-OP|ATAL|ATSJO|SNDDM-OP|SNDJB-OP|SNDFI|REFAG-IOP|REFAGFER-IOP))|FPATFER|FPADATFER|FPSVATFER|FPENFOD-OP|FPENAD-OP)$", - "type" : "string" - }, - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "sats" : { - "maximum" : 100000, - "minimum" : 1, - "type" : "integer", - "format" : "int64" - }, - "satsType" : { - "pattern" : "^(ENG|DAG)$", - "type" : "string" - }, - "delytelseId" : { - "maximum" : 300000000000000, - "minimum" : 10000000000000, - "type" : "integer", - "format" : "int64" - }, - "refDelytelseId" : { - "maximum" : 300000000000000, - "minimum" : 10000000000000, - "type" : "integer", - "format" : "int64" - }, - "refFagsystemId" : { - "maximum" : 300000000000, - "minimum" : 10000000000, - "type" : "integer", - "format" : "int64" - } - } - }, - "OppgittAnnenAktivitetDto" : { - "required" : [ "arbeidType", "periode" ], - "type" : "object", - "properties" : { - "periode" : { - "$ref" : "#/components/schemas/Periode" - }, - "arbeidType" : { - "type" : "string", - "enum" : [ "ETTERLØNN_SLUTTPAKKE", "FORENKLET_OPPGJØRSORDNING", "FRILANSER", "FRILANSER_OPPDRAGSTAKER", "LØNN_UNDER_UTDANNING", "MARITIMT_ARBEIDSFORHOLD", "MILITÆR_ELLER_SIVILTJENESTE", "ORDINÆRT_ARBEIDSFORHOLD", "PENSJON_OG_ANDRE_TYPER_YTELSER_UTEN_ANSETTELSESFORHOLD", "NÆRING", "UTENLANDSK_ARBEIDSFORHOLD", "VENTELØNN_VARTPENGER", "VANLIG", "-" ] - } - } - }, - "OppgittArbeidsforholdDto" : { - "required" : [ "arbeidType", "landkode", "periode" ], - "type" : "object", - "properties" : { - "periode" : { - "$ref" : "#/components/schemas/Periode" - }, - "arbeidType" : { - "type" : "string", - "enum" : [ "ETTERLØNN_SLUTTPAKKE", "FORENKLET_OPPGJØRSORDNING", "FRILANSER", "FRILANSER_OPPDRAGSTAKER", "LØNN_UNDER_UTDANNING", "MARITIMT_ARBEIDSFORHOLD", "MILITÆR_ELLER_SIVILTJENESTE", "ORDINÆRT_ARBEIDSFORHOLD", "PENSJON_OG_ANDRE_TYPER_YTELSER_UTEN_ANSETTELSESFORHOLD", "NÆRING", "UTENLANDSK_ARBEIDSFORHOLD", "VENTELØNN_VARTPENGER", "VANLIG", "-" ] - }, - "erUtenlandskInntekt" : { - "type" : "boolean" - }, - "landkode" : { - "type" : "string" - }, - "inntekt" : { - "maximum" : 9999999999.00, - "exclusiveMaximum" : false, - "minimum" : 0.00, - "exclusiveMinimum" : false, - "type" : "number" - }, - "virksomhetNavn" : { - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - } - } - }, - "OppgittEgenNæringDto" : { - "required" : [ "landkode", "periode" ], - "type" : "object", - "properties" : { - "periode" : { - "$ref" : "#/components/schemas/Periode" - }, - "virksomhet" : { - "$ref" : "#/components/schemas/Organisasjon" - }, - "virksomhetType" : { - "type" : "string", - "enum" : [ "DAGMAMMA", "FISKE", "JORDBRUK_SKOGBRUK", "ANNEN", "-" ] - }, - "regnskapsførerNavn" : { - "maxLength" : 400, - "minLength" : 0, - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "regnskapsførerTlf" : { - "maxLength" : 100, - "minLength" : 0, - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "virksomhetNavn" : { - "maxLength" : 100, - "minLength" : 0, - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "landkode" : { - "type" : "string" - }, - "endringDato" : { - "type" : "string", - "format" : "date" - }, - "erVarigEndring" : { - "type" : "boolean" - }, - "endringBegrunnelse" : { - "maxLength" : 10000, - "minLength" : 0, - "type" : "string" - }, - "bruttoInntekt" : { - "minimum" : 0.00, - "exclusiveMinimum" : false, - "type" : "number" - }, - "erNyoppstartet" : { - "type" : "boolean" - }, - "erNærRelasjon" : { - "type" : "boolean" - }, - "erNyIArbeidslivet" : { - "type" : "boolean" - } - } - }, - "OppgittFrilansDto" : { - "required" : [ "frilansoppdrag" ], - "type" : "object", - "properties" : { - "harInntektFraFosterhjem" : { - "type" : "boolean" - }, - "erNyoppstartet" : { - "type" : "boolean" - }, - "erNærRelasjon" : { - "type" : "boolean" - }, - "frilansoppdrag" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OppgittFrilansoppdragDto" - } - } - } - }, - "OppgittFrilansoppdragDto" : { - "required" : [ "periode" ], - "type" : "object", - "properties" : { - "periode" : { - "$ref" : "#/components/schemas/Periode" - }, - "oppdragsgiver" : { - "maxLength" : 100, - "minLength" : 0, - "pattern" : "^[\\p{Graph}\\p{Space}\\p{Sc}\\p{L}\\p{M}\\p{N}]+$", - "type" : "string" - }, - "inntekt" : { - "minimum" : 0.00, - "exclusiveMinimum" : false, - "type" : "number" - } - } - }, - "OppgittOpptjeningDto" : { - "required" : [ "eksternReferanse", "opprettetTidspunkt" ], - "type" : "object", - "properties" : { - "journalpostId" : { - "type" : "string" - }, - "innsendingstidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "eksternReferanse" : { - "type" : "string" - }, - "opprettetTidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "arbeidsforhold" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OppgittArbeidsforholdDto" - } - }, - "egenNæring" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OppgittEgenNæringDto" - } - }, - "annenAktivitet" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OppgittAnnenAktivitetDto" - } - }, - "frilans" : { - "$ref" : "#/components/schemas/OppgittFrilansDto" - } - } - }, - "Organisasjon" : { - "required" : [ "ident" ], - "type" : "object", - "properties" : { - "ident" : { - "pattern" : "^\\d{9}+$", - "type" : "string" - } - } - }, - "ProsessTaskIdDto" : { - "required" : [ "prosessTaskId" ], - "type" : "object", - "properties" : { - "prosessTaskId" : { - "maximum" : 9223372036854775807, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - }, - "InfotrygdRestanseDto" : { - "type" : "object", - "properties" : { - "fnr" : { - "type" : "string" - }, - "valg" : { - "type" : "string" - }, - "type" : { - "type" : "string" - }, - "registrert" : { - "type" : "string", - "format" : "date" - }, - "mottatt" : { - "type" : "string", - "format" : "date" - }, - "vedtatt" : { - "type" : "string", - "format" : "date" - }, - "reellEnhet" : { - "type" : "string" - }, - "behandlendeEnhet" : { - "type" : "string" - } - } - }, - "TaskInput" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "ytelseType" : { - "type" : "string", - "enum" : [ "ES", "FP", "SVP", "-" ] - }, - "delayBetween" : { - "maximum" : 60, - "minimum" : 0, - "type" : "integer", - "format" : "int32" - } - } - }, - "AnnenForelder" : { - "required" : [ "aktørId" ], - "type" : "object", - "properties" : { - "aktørId" : { - "type" : "string" - }, - "saksnummer" : { - "type" : "string" - }, - "ytelseType" : { - "type" : "string", - "enum" : [ "FORELDREPENGER", "SVANGERSKAPSPENGER", "ENGANGSSTØNAD" ] - }, - "saksrolle" : { - "type" : "string", - "enum" : [ "MOR", "FAR", "MEDMOR", "UKJENT" ] - } - } - }, - "Barn" : { - "required" : [ "fødselsdato" ], - "type" : "object", - "properties" : { - "aktørId" : { - "type" : "string" - }, - "fødselsdato" : { - "type" : "string", - "format" : "date" - }, - "dødsdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "Beregning" : { - "required" : [ "fastsatt", "grunnbeløp", "hjemmel", "årsbeløp" ], - "type" : "object", - "properties" : { - "grunnbeløp" : { - "type" : "number" - }, - "årsbeløp" : { - "$ref" : "#/components/schemas/BeregningÅrsbeløp" - }, - "andeler" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/BeregningAndel" - } - }, - "næringOrgNr" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "type" : "string" - } - }, - "hjemmel" : { - "type" : "string", - "enum" : [ "ARBEID", "NÆRING", "FRILANS", "ARBEID_FRILANS", "ARBEID_NÆRING", "NÆRING_FRILANS", "ARBEID_NÆRING_FRILANS", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "BESTEBEREGNING", "MILITÆR_SIVIL", "ANNEN" ] - }, - "fastsatt" : { - "type" : "string", - "enum" : [ "AUTOMATISK", "SKJØNN" ] - } - } - }, - "BeregningAndel" : { - "type" : "object", - "properties" : { - "aktivitet" : { - "type" : "string", - "enum" : [ "ARBEIDSAVKLARINGSPENGER", "ARBEIDSTAKER", "DAGPENGER", "FRILANSER", "MILITÆR_SIVILTJENESTE", "SELVSTENDIG_NÆRINGSDRIVENDE", "YTELSE" ] - }, - "arbeidsgiver" : { - "type" : "string" - }, - "årsbeløp" : { - "$ref" : "#/components/schemas/BeregningÅrsbeløp" - } - } - }, - "BeregningÅrsbeløp" : { - "type" : "object", - "properties" : { - "brutto" : { - "type" : "number" - }, - "avkortet" : { - "type" : "number" - }, - "redusert" : { - "type" : "number" - }, - "dagsats" : { - "type" : "integer", - "format" : "int64" - } - } - }, - "FamilieHendelse" : { - "type" : "object", - "properties" : { - "fødselsdato" : { - "type" : "string", - "format" : "date" - }, - "termindato" : { - "type" : "string", - "format" : "date" - }, - "antallBarn" : { - "type" : "integer", - "format" : "int32" - }, - "omsorgsovertakelse" : { - "type" : "string", - "format" : "date" - } - } - }, - "ForeldrepengerRettigheter" : { - "required" : [ "dekningsgrad", "rettighetType", "stønadskonti" ], - "type" : "object", - "properties" : { - "dekningsgrad" : { - "type" : "integer", - "format" : "int32" - }, - "rettighetType" : { - "type" : "string", - "enum" : [ "ALENEOMSORG", "BARE_SØKER_RETT", "BEGGE_RETT", "BEGGE_RETT_EØS" ] - }, - "stønadskonti" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Stønadskonto" - } - }, - "stønadsutvidelser" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Stønadsutvidelse" - } - } - } - }, - "Gradering" : { - "type" : "object", - "properties" : { - "prosent" : { - "type" : "number" - }, - "uttakAktivitet" : { - "$ref" : "#/components/schemas/UttakAktivitet" - } - } - }, - "Stønadskonto" : { - "required" : [ "maksdager", "restdager", "type" ], - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "MØDREKVOTE", "FELLESPERIODE", "FEDREKVOTE" ] - }, - "maksdager" : { - "type" : "number" - }, - "restdager" : { - "type" : "number" - }, - "minsterett" : { - "type" : "number" - } - } - }, - "StønadsstatistikkUtbetalingPeriode" : { - "required" : [ "dagsats", "fom", "inntektskategori", "mottaker", "tom", "utbetalingsgrad" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "inntektskategori" : { - "type" : "string", - "enum" : [ "ARBEIDSTAKER", "ARBEIDSTAKER_UTEN_FERIEPENGER", "SJØMANN", "FRILANSER", "DAGPENGER", "ARBEIDSAVKLARINGSPENGER", "SELVSTENDIG_NÆRINGSDRIVENDE", "DAGMAMMA", "JORDBRUKER", "FISKER" ] - }, - "arbeidsgiver" : { - "type" : "string" - }, - "mottaker" : { - "type" : "string", - "enum" : [ "BRUKER", "ARBEIDSGIVER" ] - }, - "dagsats" : { - "type" : "integer", - "format" : "int32" - }, - "utbetalingsgrad" : { - "type" : "number" - } - } - }, - "StønadsstatistikkUttakPeriode" : { - "required" : [ "fom", "rettighetType", "tom", "trekkdager" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "type" : { - "type" : "string", - "enum" : [ "UTTAK", "UTSETTELSE", "AVSLAG" ] - }, - "stønadskontoType" : { - "type" : "string", - "enum" : [ "FORELDREPENGER", "FORELDREPENGER_FØR_FØDSEL", "MØDREKVOTE", "FELLESPERIODE", "FEDREKVOTE" ] - }, - "rettighetType" : { - "type" : "string", - "enum" : [ "ALENEOMSORG", "BARE_SØKER_RETT", "BEGGE_RETT", "BEGGE_RETT_EØS" ] - }, - "forklaring" : { - "type" : "string", - "enum" : [ "UTSETTELSE_FERIE", "UTSETTELSE_ARBEID", "UTSETTELSE_INNLEGGELSE", "UTSETTELSE_BARNINNLAGT", "UTSETTELSE_SYKDOM", "UTSETTELSE_HVOVELSE", "UTSETTELSE_NAVTILTAK", "OVERFØRING_ANNEN_PART_SYKDOM", "OVERFØRING_ANNEN_PART_INNLAGT", "OVERFØRING_ALENEOMSORG", "OVERFØRING_BARE_SØKER_RETT", "AKTIVITETSKRAV_ARBEID", "AKTIVITETSKRAV_UTDANNING", "AKTIVITETSKRAV_ARBEIDUTDANNING", "AKTIVITETSKRAV_SYKDOM", "AKTIVITETSKRAV_INNLEGGELSE", "AKTIVITETSKRAV_INTRODUKSJONSPROGRAM", "AKTIVITETSKRAV_KVALIFISERINGSPROGRAM", "MINSTERETT", "FLERBARNSDAGER", "SAMTIDIG_MØDREKVOTE", "AVSLAG_ANNET", "AVSLAG_AKTIVITETSKRAV", "AVSLAG_SØKNADSFRIST", "AVSLAG_IKKE_SØKT", "AVSLAG_UTSETTELSE", "AVSLAG_UTSETTELSE_TILBAKE_I_TID", "AVSLAG_PLEIEPENGER", "AVSLAG_STØNADSPERIODE_UTLØPT", "AVSLAG_VILKÅR" ] - }, - "søknadsdato" : { - "type" : "string", - "format" : "date" - }, - "erUtbetaling" : { - "type" : "boolean" - }, - "virkedager" : { - "type" : "integer", - "format" : "int32" - }, - "trekkdager" : { - "type" : "number" - }, - "gradering" : { - "$ref" : "#/components/schemas/Gradering" - }, - "samtidigUttakProsent" : { - "type" : "number" - } - } - }, - "StønadsstatistikkVedtak" : { - "required" : [ "behandlingUuid", "lovVersjon", "saksrolle", "søker", "søknadsdato", "utbetalingsreferanse", "utlandsTilsnitt", "vedtaksresultat", "vedtakstidspunkt", "ytelseType" ], - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "fagsakId" : { - "type" : "integer", - "format" : "int64" - }, - "ytelseType" : { - "type" : "string", - "enum" : [ "FORELDREPENGER", "SVANGERSKAPSPENGER", "ENGANGSSTØNAD" ] - }, - "lovVersjon" : { - "type" : "string", - "enum" : [ "FORELDREPENGER_2019_01_01", "FORELDREPENGER_FRI_2021_10_01", "FORELDREPENGER_MINSTERETT_2022_08_02", "FORELDREPENGER_UTJEVNE80_2024_07_01", "FORELDREPENGER_MINSTERETT_2024_08_02", "ENGANGSSTØNAD_2019_01_01", "ENGANGSSTØNAD_MEDLEM_2024_10_01", "SVANGERSKAPSPENGER_2019_01_01" ] - }, - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "forrigeBehandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "revurderingÅrsak" : { - "type" : "string", - "enum" : [ "MANUELL", "UTTAKMANUELL", "KLAGE", "ETTERKONTROLL", "SØKNAD", "INNTEKTSMELDING", "FOLKEREGISTER", "PLEIEPENGER", "NYSAK", "ANNENFORELDER", "REGULERING", "PRAKSIS_UTSETTELSE" ] - }, - "søknadsdato" : { - "type" : "string", - "format" : "date" - }, - "skjæringstidspunkt" : { - "type" : "string", - "format" : "date" - }, - "vedtakstidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "vedtaksresultat" : { - "type" : "string", - "enum" : [ "INNVILGET", "AVSLAG", "OPPHØR" ] - }, - "vilkårIkkeOppfylt" : { - "type" : "string", - "enum" : [ "MEDLEMSKAP", "SØKNADSFRIST", "OPPLYSNINGSPLIKT", "SVANGERSKAPSPENGER", "ENGANGSSTØNAD", "FORELDREPENGER_GENERELL", "FORELDREPENGER_OPPTJENING", "FORELDREPENGER_BEREGNING", "FORELDREPENGER_UTTAK" ] - }, - "søker" : { - "type" : "string" - }, - "saksrolle" : { - "type" : "string", - "enum" : [ "MOR", "FAR", "MEDMOR", "UKJENT" ] - }, - "utlandsTilsnitt" : { - "type" : "string", - "enum" : [ "NASJONAL", "EØS_BOSATT_NORGE", "BOSATT_UTLAND" ] - }, - "annenForelder" : { - "$ref" : "#/components/schemas/AnnenForelder" - }, - "familieHendelse" : { - "$ref" : "#/components/schemas/FamilieHendelse" - }, - "beregning" : { - "$ref" : "#/components/schemas/Beregning" - }, - "utbetalingsreferanse" : { - "type" : "string" - }, - "behandlingId" : { - "type" : "integer", - "format" : "int64" - }, - "engangsstønadInnvilget" : { - "type" : "integer", - "format" : "int64" - }, - "foreldrepengerRettigheter" : { - "$ref" : "#/components/schemas/ForeldrepengerRettigheter" - }, - "uttaksperioder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/StønadsstatistikkUttakPeriode" - } - }, - "utbetalingssperioder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/StønadsstatistikkUtbetalingPeriode" - } - } - } - }, - "Stønadsutvidelse" : { - "required" : [ "type" ], - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "FLERBARNSDAGER", "PREMATURDAGER" ] - }, - "dager" : { - "type" : "number" - } - } - }, - "MigreringTaskInput" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - } - } - }, - "FpSakInntektsmeldingDto" : { - "type" : "object", - "properties" : { - "erAktiv" : { - "type" : "boolean" - }, - "stillingsprosent" : { - "type" : "number" - }, - "inntektPrMnd" : { - "type" : "number" - }, - "refusjonPrMnd" : { - "type" : "number" - }, - "arbeidsgiverNavn" : { - "type" : "string" - }, - "arbeidsgiverIdent" : { - "type" : "string" - }, - "journalpostId" : { - "type" : "string" - }, - "mottattTidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "startDatoPermisjon" : { - "type" : "string", - "format" : "date" - }, - "bortfalteNaturalytelser" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Naturalytelse" - } - }, - "refusjonsperioder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Refusjon" - } - } - } - }, - "Naturalytelse" : { - "type" : "object", - "properties" : { - "fomDato" : { - "type" : "string", - "format" : "date" - }, - "tomDato" : { - "type" : "string", - "format" : "date" - }, - "beløpPerMnd" : { - "type" : "number" - }, - "type" : { - "type" : "string", - "enum" : [ "ELEKTRISK_KOMMUNIKASJON", "AKSJER_GRUNNFONDSBEVIS_TIL_UNDERKURS", "LOSJI", "KOST_DØGN", "BESØKSREISER_HJEMMET_ANNET", "KOSTBESPARELSE_I_HJEMMET", "RENTEFORDEL_LÅN", "BIL", "KOST_DAGER", "BOLIG", "SKATTEPLIKTIG_DEL_FORSIKRINGER", "FRI_TRANSPORT", "OPSJONER", "TILSKUDD_BARNEHAGEPLASS", "ANNET", "BEDRIFTSBARNEHAGEPLASS", "YRKEBIL_TJENESTLIGBEHOV_KILOMETER", "YRKEBIL_TJENESTLIGBEHOV_LISTEPRIS", "INNBETALING_TIL_UTENLANDSK_PENSJONSORDNING" ] - } - } - }, - "Aksjonspunkt" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "VENT_MANUELT_SATT", "VENT_FØDSEL", "VENT_KOMPLETT_SØKNAD", "VENT_REVURDERING", "VENT_TIDLIG_SØKNAD", "VENT_KØET_BEHANDLING", "VENT_SØKNAD", "VENT_INNTEKT_RAPPORTERINGSFRIST", "VENT_SISTE_AAP_ELLER_DP_MELDEKORT", "VENT_ETTERLYST_INNTEKTSMELDING", "VENT_ANKE_OVERSENDT_TIL_TRYGDERETTEN", "VENT_SYKEMELDING", "VENT_KABAL_KLAGE", "VENT_PÅ_KABAL_ANKE" ] - }, - "venteårsak" : { - "type" : "string", - "enum" : [ "ANKE_VENTER_PÅ_MERKNADER_FRA_BRUKER", "AVVENT_DOKUMTANSJON", "AVVENT_FØDSEL", "AVVENT_RESPONS_REVURDERING", "BRUKERTILBAKEMELDING", "UTLAND_TRYGD", "FOR_TIDLIG_SOKNAD", "UTVIDET_FRIST", "INNTEKT_RAPPORTERINGSFRIST", "MANGLENDE_SYKEMELDING", "MANGLENDE_INNTEKTSMELDING", "OPPTJENING_OPPLYSNINGER", "SISTE_AAP_ELLER_DP_MELDEKORT", "SENDT_INFORMASJONSBREV", "ÅPEN_BEHANDLING" ] - }, - "tidsfrist" : { - "type" : "string", - "format" : "date-time" - } - } - }, - "Aktivitet" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS" ] - }, - "arbeidsgiver" : { - "type" : "string" - }, - "arbeidsforholdId" : { - "type" : "string" - }, - "arbeidsgiverNavn" : { - "type" : "string" - } - } - }, - "ArbeidsforholdUttak" : { - "type" : "object", - "properties" : { - "aktivitet" : { - "$ref" : "#/components/schemas/Aktivitet" - }, - "behovFom" : { - "type" : "string", - "format" : "date" - }, - "risikoFaktorer" : { - "type" : "string" - }, - "tiltak" : { - "type" : "string" - }, - "svpPerioder" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SvpPeriode" - } - }, - "oppholdsperioder" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OppholdPeriode" - } - }, - "ikkeOppfyltÅrsak" : { - "type" : "string", - "enum" : [ "ARBEIDSGIVER_KAN_TILRETTELEGGE", "ARBEIDSGIVER_KAN_TILRETTELEGGE_FREM_TIL_3_UKER_FØR_TERMIN", "ANNET" ] - } - } - }, - "EsSak" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/Sak" - }, { - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "aktørId" : { - "type" : "string" - }, - "familieHendelse" : { - "$ref" : "#/components/schemas/FamilieHendelse" - }, - "avsluttet" : { - "type" : "boolean" - }, - "aksjonspunkt" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Aksjonspunkt" - } - }, - "søknader" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Søknad" - } - }, - "vedtak" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Vedtak" - } - } - } - } ] - }, - "FpSak" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/Sak" - }, { - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "aktørId" : { - "type" : "string" - }, - "familieHendelse" : { - "$ref" : "#/components/schemas/FamilieHendelse" - }, - "avsluttet" : { - "type" : "boolean" - }, - "vedtak" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Vedtak" - } - }, - "oppgittAnnenPart" : { - "type" : "string" - }, - "aksjonspunkt" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Aksjonspunkt" - } - }, - "søknader" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Søknad" - } - }, - "brukerRolle" : { - "type" : "string", - "enum" : [ "MOR", "FAR", "MEDMOR", "UKJENT" ] - }, - "fødteBarn" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "type" : "string" - } - }, - "rettigheter" : { - "$ref" : "#/components/schemas/Rettigheter" - }, - "ønskerJustertUttakVedFødsel" : { - "type" : "boolean" - } - } - } ] - }, - "OppholdPeriode" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "årsak" : { - "type" : "string", - "enum" : [ "FERIE", "SYKEPENGER" ] - }, - "kilde" : { - "type" : "string", - "enum" : [ "SØKNAD", "SAKSBEHANDLER", "INNTEKTSMELDING" ] - } - } - }, - "Resultat" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "INNVILGET", "INNVILGET_GRADERING", "AVSLÅTT" ] - }, - "årsak" : { - "type" : "string", - "enum" : [ "ANNET", "AVSLAG_HULL_I_UTTAKSPLAN", "AVSLAG_UTSETTELSE_TILBAKE_I_TID", "INNVILGET_UTTAK_AVSLÅTT_GRADERING_TILBAKE_I_TID", "AVSLAG_FRATREKK_PLEIEPENGER" ] - }, - "aktiviteter" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/UttaksperiodeAktivitet" - } - }, - "trekkerMinsterett" : { - "type" : "boolean" - } - } - }, - "Rettigheter" : { - "type" : "object", - "properties" : { - "aleneomsorg" : { - "type" : "boolean" - }, - "morUføretrygd" : { - "type" : "boolean" - }, - "annenForelderTilsvarendeRettEØS" : { - "type" : "boolean" - } - } - }, - "Sak" : { - "required" : [ "type" ], - "type" : "object", - "properties" : { - "type" : { - "type" : "string" - } - }, - "discriminator" : { - "propertyName" : "type" - } - }, - "SvpPeriode" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "tilretteleggingType" : { - "type" : "string", - "enum" : [ "HEL", "DELVIS", "INGEN" ] - }, - "arbeidstidprosent" : { - "type" : "number" - }, - "utbetalingsgrad" : { - "type" : "number" - }, - "resultatÅrsak" : { - "type" : "string", - "enum" : [ "INNVILGET", "AVSLAG_SØKNADSFRIST", "AVSLAG_ANNET", "AVSLAG_INNGANGSVILKÅR", "OPPHØR_OVERGANG_FORELDREPENGER", "OPPHØR_FØDSEL", "OPPHØR_TIDSPERIODE_FØR_TERMIN", "OPPHØR_OPPHOLD_I_YTELSEN", "OPPHØR_ANNET" ] - } - } - }, - "SvpSak" : { - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/Sak" - }, { - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "aktørId" : { - "type" : "string" - }, - "familieHendelse" : { - "$ref" : "#/components/schemas/FamilieHendelse" - }, - "avsluttet" : { - "type" : "boolean" - }, - "aksjonspunkt" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Aksjonspunkt" - } - }, - "søknader" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Søknad" - } - }, - "vedtak" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Vedtak" - } - } - } - } ] - }, - "Tilrettelegging" : { - "type" : "object", - "properties" : { - "aktivitet" : { - "$ref" : "#/components/schemas/Aktivitet" - }, - "behovFom" : { - "type" : "string", - "format" : "date" - }, - "risikoFaktorer" : { - "type" : "string" - }, - "tiltak" : { - "type" : "string" - }, - "perioder" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Periode" - } - }, - "oppholdsperioder" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OppholdPeriode" - } - } - } - }, - "UttakAktivitet" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "ORDINÆRT_ARBEID", "SELVSTENDIG_NÆRINGSDRIVENDE", "FRILANS", "ANNET" ] - }, - "arbeidsgiver" : { - "type" : "string" - }, - "arbeidsforholdId" : { - "type" : "string" - } - } - }, - "Uttaksperiode" : { - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date" - }, - "tom" : { - "type" : "string", - "format" : "date" - }, - "utsettelseÅrsak" : { - "type" : "string", - "enum" : [ "HV_ØVELSE", "ARBEID", "LOVBESTEMT_FERIE", "SØKER_SYKDOM", "SØKER_INNLAGT", "BARN_INNLAGT", "NAV_TILTAK", "FRI" ] - }, - "oppholdÅrsak" : { - "type" : "string", - "enum" : [ "MØDREKVOTE_ANNEN_FORELDER", "FEDREKVOTE_ANNEN_FORELDER", "FELLESPERIODE_ANNEN_FORELDER", "FORELDREPENGER_ANNEN_FORELDER" ] - }, - "overføringÅrsak" : { - "type" : "string", - "enum" : [ "INSTITUSJONSOPPHOLD_ANNEN_FORELDER", "SYKDOM_ANNEN_FORELDER", "IKKE_RETT_ANNEN_FORELDER", "ALENEOMSORG" ] - }, - "samtidigUttak" : { - "type" : "number" - }, - "flerbarnsdager" : { - "type" : "boolean" - }, - "morsAktivitet" : { - "type" : "string", - "enum" : [ "ARBEID", "UTDANNING", "KVALPROG", "INTROPROG", "TRENGER_HJELP", "INNLAGT", "ARBEID_OG_UTDANNING", "UFØRE", "IKKE_OPPGITT" ] - }, - "resultat" : { - "$ref" : "#/components/schemas/Resultat" - } - } - }, - "UttaksperiodeAktivitet" : { - "type" : "object", - "properties" : { - "aktivitet" : { - "$ref" : "#/components/schemas/UttakAktivitet" - }, - "konto" : { - "type" : "string", - "enum" : [ "FORELDREPENGER", "MØDREKVOTE", "FEDREKVOTE", "FELLESPERIODE", "FORELDREPENGER_FØR_FØDSEL" ] - }, - "trekkdager" : { - "type" : "number" - }, - "arbeidstidsprosent" : { - "type" : "number" - } - } - }, - "Vedtak" : { - "type" : "object", - "properties" : { - "behandlingstema" : { - "$ref" : "#/components/schemas/InfotrygdKode" - }, - "identdato" : { - "type" : "string", - "format" : "date" - }, - "opphørFom" : { - "type" : "string", - "format" : "date" - }, - "opprinneligIdentdato" : { - "type" : "string", - "format" : "date" - }, - "periode" : { - "$ref" : "#/components/schemas/Periode" - }, - "registrert" : { - "type" : "string", - "format" : "date" - }, - "saksbehandlerId" : { - "type" : "string" - }, - "arbeidskategori" : { - "$ref" : "#/components/schemas/InfotrygdKode" - }, - "arbeidsforhold" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Arbeidsforhold" - } - }, - "dekningsgrad" : { - "type" : "integer", - "format" : "int32" - }, - "fødselsdatoBarn" : { - "type" : "string", - "format" : "date" - }, - "gradering" : { - "type" : "integer", - "format" : "int32" - }, - "utbetalinger" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Utbetaling" - } - } - } - }, - "EnkelRespons" : { - "type" : "object", - "properties" : { - "status" : { - "type" : "string" - } - } - }, - "AdressebeskyttelseHendelseDto" : { - "required" : [ "aktørId", "endringstype", "id" ], - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/HendelseDto" - }, { - "type" : "object", - "properties" : { - "aktørId" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AktørIdDto" - } - } - } - } ] - }, - "DødHendelseDto" : { - "required" : [ "aktørId", "endringstype", "id" ], - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/HendelseDto" - }, { - "type" : "object", - "properties" : { - "aktørId" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AktørIdDto" - } - }, - "dødsdato" : { - "type" : "string", - "format" : "date" - } - } - } ] - }, - "DødfødselHendelseDto" : { - "required" : [ "aktørId", "endringstype", "id" ], - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/HendelseDto" - }, { - "type" : "object", - "properties" : { - "aktørId" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AktørIdDto" - } - }, - "dødfødselsdato" : { - "type" : "string", - "format" : "date" - } - } - } ] - }, - "FødselHendelseDto" : { - "required" : [ "aktørIdForeldre", "endringstype", "id" ], - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/HendelseDto" - }, { - "type" : "object", - "properties" : { - "aktørIdForeldre" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AktørIdDto" - } - }, - "fødselsdato" : { - "type" : "string", - "format" : "date" - } - } - } ] - }, - "HendelseDto" : { - "required" : [ "endringstype", "id" ], - "type" : "object", - "properties" : { - "id" : { - "maxLength" : 100, - "minLength" : 1, - "pattern" : "^[a-zA-ZæøåÆØÅ_\\-0-9]*", - "type" : "string" - }, - "endringstype" : { - "type" : "string", - "enum" : [ "OPPRETTET", "KORRIGERT", "ANNULLERT", "OPPHOERT" ] - }, - "avsenderSystem" : { - "type" : "string" - }, - "hendelsetype" : { - "type" : "string" - }, - "alleAktørId" : { - "type" : "array", - "items" : { - "type" : "string" - } - } - } - }, - "HendelseWrapperDto" : { - "required" : [ "hendelse" ], - "type" : "object", - "properties" : { - "hendelse" : { - "$ref" : "#/components/schemas/HendelseDto" - }, - "alleAktørId" : { - "type" : "array", - "items" : { - "type" : "string" - } - } - } - }, - "UtflyttingHendelseDto" : { - "required" : [ "aktørId", "endringstype", "id" ], - "type" : "object", - "allOf" : [ { - "$ref" : "#/components/schemas/HendelseDto" - }, { - "type" : "object", - "properties" : { - "aktørId" : { - "maxItems" : 2147483647, - "minItems" : 1, - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/AktørIdDto" - } - }, - "utflyttingsdato" : { - "type" : "string", - "format" : "date" - } - } - } ] - }, - "Arbeidsforhold" : { - "type" : "object", - "properties" : { - "arbeidsgiverOrgnr" : { - "type" : "string" - }, - "inntekt" : { - "type" : "integer", - "format" : "int32" - }, - "inntektsperiode" : { - "$ref" : "#/components/schemas/InfotrygdKode" - }, - "refusjon" : { - "type" : "boolean" - }, - "refusjonTom" : { - "type" : "string", - "format" : "date" - }, - "identdato" : { - "type" : "string", - "format" : "date" - }, - "opprinneligIdentdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "InfotrygdKode" : { - "type" : "object", - "properties" : { - "kode" : { - "type" : "string" - }, - "termnavn" : { - "type" : "string" - } - } - }, - "InfotrygdVedtakDto" : { - "type" : "object", - "properties" : { - "saker" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/SakDto" - } - }, - "vedtakKjeder" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/VedtakKjede" - } - } - } - }, - "SakDto" : { - "type" : "object", - "properties" : { - "resultat" : { - "type" : "string" - }, - "registrert" : { - "type" : "string", - "format" : "date" - }, - "sakId" : { - "type" : "string" - }, - "type" : { - "type" : "string" - }, - "vedtatt" : { - "type" : "string", - "format" : "date" - }, - "valg" : { - "type" : "string" - }, - "undervalg" : { - "type" : "string" - }, - "nivaa" : { - "type" : "string" - } - } - }, - "Utbetaling" : { - "type" : "object", - "properties" : { - "periode" : { - "$ref" : "#/components/schemas/Periode" - }, - "utbetalingsgrad" : { - "type" : "integer", - "format" : "int32" - }, - "arbeidsgiverOrgnr" : { - "type" : "string" - }, - "erRefusjon" : { - "type" : "boolean" - }, - "dagsats" : { - "type" : "integer", - "format" : "int32" - }, - "identdato" : { - "type" : "string", - "format" : "date" - }, - "opprinneligIdentdato" : { - "type" : "string", - "format" : "date" - } - } - }, - "VedtakKjede" : { - "type" : "object", - "properties" : { - "opprinneligIdentdato" : { - "type" : "string", - "format" : "date" - }, - "behandlingstema" : { - "$ref" : "#/components/schemas/InfotrygdKode" - }, - "vedtak" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/Vedtak" - } - } - } - }, - "LosAksjonspunktDto" : { - "type" : "object", - "properties" : { - "definisjon" : { - "type" : "string" - }, - "status" : { - "type" : "string", - "enum" : [ "AVBRUTT", "OPPRETTET", "UTFØRT" ] - }, - "fristTid" : { - "type" : "string", - "format" : "date-time" - } - } - }, - "LosBehandlingDto" : { - "required" : [ "aktørId", "behandlingUuid", "behandlingsstatus", "behandlingstype", "kildesystem", "opprettetTidspunkt", "saksnummer", "ytelse" ], - "type" : "object", - "properties" : { - "behandlingUuid" : { - "type" : "string", - "format" : "uuid" - }, - "kildesystem" : { - "type" : "string", - "enum" : [ "FPSAK", "FPTILBAKE" ] - }, - "saksnummer" : { - "type" : "string" - }, - "ytelse" : { - "type" : "string", - "enum" : [ "ENGANGSTØNAD", "FORELDREPENGER", "SVANGERSKAPSPENGER" ] - }, - "aktørId" : { - "type" : "string" - }, - "behandlingstype" : { - "type" : "string", - "enum" : [ "FØRSTEGANGS", "REVURDERING", "TILBAKEBETALING", "TILBAKEBETALING_REVURDERING", "KLAGE", "ANKE", "INNSYN" ] - }, - "behandlingsstatus" : { - "type" : "string", - "enum" : [ "OPPRETTET", "UTREDES", "FATTER_VEDTAK", "IVERKSETTER_VEDTAK", "AVSLUTTET" ] - }, - "opprettetTidspunkt" : { - "type" : "string", - "format" : "date-time" - }, - "behandlendeEnhetId" : { - "type" : "string" - }, - "behandlingsfrist" : { - "type" : "string", - "format" : "date" - }, - "ansvarligSaksbehandlerIdent" : { - "type" : "string" - }, - "aksjonspunkt" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/LosAksjonspunktDto" - } - }, - "behandlingsårsaker" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "SØKNAD", "INNTEKTSMELDING", "FOLKEREGISTER", "PLEIEPENGER", "ETTERKONTROLL", "MANUELL", "BERØRT", "UTSATT_START", "OPPHØR_NY_SAK", "REGULERING", "KLAGE_OMGJØRING", "KLAGE_TILBAKEBETALING", "ANNET" ] - } - }, - "faresignaler" : { - "type" : "boolean" - }, - "refusjonskrav" : { - "type" : "boolean" - }, - "saksegenskaper" : { - "type" : "array", - "items" : { - "type" : "string" - } - }, - "foreldrepengerDto" : { - "$ref" : "#/components/schemas/LosForeldrepengerDto" - }, - "behandlingsegenskaper" : { - "type" : "array", - "items" : { - "type" : "string" - } - }, - "tilbakeDto" : { - "$ref" : "#/components/schemas/LosTilbakeDto" - } - } - }, - "LosForeldrepengerDto" : { - "type" : "object", - "properties" : { - "førsteUttakDato" : { - "type" : "string", - "format" : "date" - } - } - }, - "LosTilbakeDto" : { - "type" : "object", - "properties" : { - "feilutbetaltBeløp" : { - "type" : "number" - }, - "førsteFeilutbetalingDato" : { - "type" : "string", - "format" : "date" - } - } - }, - "LosFagsakEgenskaperDto" : { - "type" : "object", - "properties" : { - "saksegenskaper" : { - "type" : "array", - "items" : { - "type" : "string" - } - }, - "fagsakMarkering" : { - "type" : "string" - } - } - }, - "NøkkeltallBehandlingVentefristUtløper" : { - "type" : "object", - "properties" : { - "behandlendeEnhet" : { - "type" : "string" - }, - "fagsakYtelseType" : { - "type" : "string", - "enum" : [ "ES", "FP", "SVP", "-" ] - }, - "behandlingFrist" : { - "type" : "string", - "format" : "date" - }, - "antall" : { - "type" : "integer", - "format" : "int64" - } - } - }, - "NøkkeltallBehandlingFørsteUttak" : { - "type" : "object", - "properties" : { - "behandlendeEnhet" : { - "type" : "string" - }, - "behandlingType" : { - "type" : "string", - "enum" : [ "BT-002", "BT-003", "BT-004", "BT-008", "BT-006", "BT-007", "BT-009", "-" ] - }, - "behandlingVenteStatus" : { - "type" : "string", - "enum" : [ "PÅ_VENT", "IKKE_PÅ_VENT" ] - }, - "førsteUttakMåned" : { - "type" : "string", - "format" : "date" - }, - "antall" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "InitLinksDto" : { - "type" : "object", - "properties" : { - "innloggetBruker" : { - "$ref" : "#/components/schemas/InnloggetNavAnsattDto" - }, - "behandlendeEnheter" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/OrganisasjonsEnhet" - } - }, - "links" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ResourceLink" - } - }, - "sakLinks" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ResourceLink" - } - } - } - }, - "InnloggetNavAnsattDto" : { - "type" : "object", - "properties" : { - "brukernavn" : { - "type" : "string" - }, - "navn" : { - "type" : "string" - }, - "kanSaksbehandle" : { - "type" : "boolean" - }, - "kanVeilede" : { - "type" : "boolean" - }, - "kanOverstyre" : { - "type" : "boolean" - }, - "kanOppgavestyre" : { - "type" : "boolean" - }, - "kanBehandleKode6" : { - "type" : "boolean" - }, - "funksjonellTid" : { - "type" : "string", - "format" : "date-time" - } - } - }, - "OrganisasjonsEnhet" : { - "type" : "object", - "properties" : { - "enhetId" : { - "type" : "string" - }, - "enhetNavn" : { - "type" : "string" - } - } - }, - "GenererVedtaksXmlDto" : { - "required" : [ "fom", "maksAntall", "tom" ], - "type" : "object", - "properties" : { - "fom" : { - "type" : "string", - "format" : "date-time" - }, - "tom" : { - "type" : "string", - "format" : "date-time" - }, - "maksAntall" : { - "maximum" : 5000, - "minimum" : 0, - "type" : "integer", - "format" : "int64" - } - } - }, - "FeedDto" : { - "type" : "object", - "properties" : { - "tittel" : { - "type" : "string" - }, - "inneholderFlereElementer" : { - "type" : "boolean" - }, - "elementer" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/FeedElement" - } - } - } - }, - "FeedElement" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string" - }, - "sekvensId" : { - "type" : "integer", - "format" : "int64" - }, - "innhold" : { - "type" : "object" - }, - "metadata" : { - "type" : "object" - } - } - }, - "SekvensIdParam" : { - "type" : "object" - }, - "MaxAntallParam" : { - "type" : "object" - }, - "HendelseTypeParam" : { - "type" : "object" - }, - "AktørParam" : { - "type" : "object" - }, - "SakOgPersonerDto" : { - "type" : "object", - "properties" : { - "saksnummer" : { - "type" : "string" - }, - "saksident" : { - "type" : "string" - }, - "identer" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "type" : "string" - } - } - } - }, - "ProsessTaskDataDto" : { - "required" : [ "gruppe", "id", "sekvens", "status", "taskType" ], - "type" : "object", - "properties" : { - "id" : { - "type" : "integer", - "format" : "int64" - }, - "taskType" : { - "maxLength" : 200, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}æøåÆØÅ_.\\-]*$", - "type" : "string" - }, - "nesteKjøringEtter" : { - "type" : "string", - "format" : "date-time" - }, - "gruppe" : { - "maxLength" : 200, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string" - }, - "sekvens" : { - "maxLength" : 200, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string" - }, - "status" : { - "maxLength" : 20, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string" - }, - "sistKjørt" : { - "type" : "string", - "format" : "date-time" - }, - "sisteFeilKode" : { - "maxLength" : 200, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string" - }, - "taskParametre" : { - "type" : "object", - "additionalProperties" : { - "type" : "string" - } - } - } - }, - "ProsessTaskOpprettInputDto" : { - "required" : [ "taskParametre", "taskType" ], - "type" : "object", - "properties" : { - "taskType" : { - "maxLength" : 100, - "minLength" : 1, - "pattern" : "^[\\p{Alnum}æøåÆØÅ_.\\-]*$", - "type" : "string" - }, - "taskParametre" : { - "type" : "object", - "additionalProperties" : { - "type" : "string" - } - } - } - }, - "FeiletProsessTaskDataDto" : { - "required" : [ "gruppe", "id", "sekvens", "status", "taskType" ], - "type" : "object", - "properties" : { - "id" : { - "type" : "integer", - "format" : "int64" - }, - "taskType" : { - "maxLength" : 200, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}æøåÆØÅ_.\\-]*$", - "type" : "string" - }, - "nesteKjøringEtter" : { - "type" : "string", - "format" : "date-time" - }, - "gruppe" : { - "maxLength" : 200, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string" - }, - "sekvens" : { - "maxLength" : 200, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string" - }, - "status" : { - "maxLength" : 20, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string" - }, - "sistKjørt" : { - "type" : "string", - "format" : "date-time" - }, - "sisteFeilKode" : { - "maxLength" : 200, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string" - }, - "taskParametre" : { - "type" : "object", - "additionalProperties" : { - "type" : "string" - } - }, - "sisteKjøringServerProsess" : { - "maxLength" : 100, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string" - }, - "sisteFeilTekst" : { - "maxLength" : 100000, - "minLength" : 0, - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string" - }, - "feiledeForsøk" : { - "type" : "integer", - "format" : "int32" - } - } - }, - "ProsessTaskRestartResultatDto" : { - "required" : [ "nesteKjoeretidspunkt", "prosessTaskId", "prosessTaskStatus" ], - "type" : "object", - "properties" : { - "prosessTaskId" : { - "type" : "integer", - "format" : "int64" - }, - "prosessTaskStatus" : { - "pattern" : "^[\\p{Alnum}_.\\-]*$", - "type" : "string", - "description" : "Nåværende status (KLAR)" - }, - "nesteKjoeretidspunkt" : { - "type" : "string", - "description" : "Kjøretidspunkt for restart av prosessen", - "format" : "date-time" - } - }, - "description" : "Resultatet av asynkron-restart av en eksisterende prosesstask" - }, - "ProsessTaskRetryAllResultatDto" : { - "type" : "object", - "properties" : { - "prosessTaskIds" : { - "type" : "array", - "description" : "Prosesstasks som restartes", - "items" : { - "type" : "integer", - "description" : "Prosesstasks som restartes", - "format" : "int64" - } - } - }, - "description" : "Resultatet av asynkron-restart av feilede prosesstasks" - }, - "SokeFilterDto" : { - "required" : [ "tekst" ], - "type" : "object", - "properties" : { - "tekst" : { - "maxLength" : 200, - "minLength" : 5, - "pattern" : "^[\\p{Alnum}_.=\\-]*$", - "type" : "string" - }, - "sisteKjoeretidspunktFraOgMed" : { - "type" : "string", - "format" : "date" - }, - "sisteKjoeretidspunktTilOgMed" : { - "type" : "string", - "format" : "date" - } - } - } - } - } -} diff --git a/yarn.lock b/yarn.lock index e590ed59b44..9e0abe6f98d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1459,6 +1459,37 @@ __metadata: languageName: node linkType: hard +"@hey-api/json-schema-ref-parser@npm:1.0.6": + version: 1.0.6 + resolution: "@hey-api/json-schema-ref-parser@npm:1.0.6" + dependencies: + "@jsdevtools/ono": ^7.1.3 + "@types/json-schema": ^7.0.15 + js-yaml: ^4.1.0 + lodash: ^4.17.21 + checksum: 6ac69f6cba5f8cfae7a7633c4236c3d18550e3b8b2506e38d8599b7ab60bd2baf8998939e9aa94b72b22f054e867582b858b021ea50c461af087c41777ee4029 + languageName: node + linkType: hard + +"@hey-api/openapi-ts@npm:0.79.1": + version: 0.79.1 + resolution: "@hey-api/openapi-ts@npm:0.79.1" + dependencies: + "@hey-api/json-schema-ref-parser": 1.0.6 + ansi-colors: 4.1.3 + c12: 2.0.1 + color-support: 1.1.3 + commander: 13.0.0 + handlebars: 4.7.8 + open: 10.1.2 + peerDependencies: + typescript: ^5.5.3 + bin: + openapi-ts: bin/index.cjs + checksum: 8e8a78bf4e3807219e98ca5b3435b09b1e78ef6ce287f58579cbedf9cc7a5e376e594890074b8eb65cdbd918dfd37383d362e61f9ac5dbcf670746591e103f45 + languageName: node + linkType: hard + "@humanfs/core@npm:^0.19.1": version: 0.19.1 resolution: "@humanfs/core@npm:0.19.1" @@ -1694,6 +1725,13 @@ __metadata: languageName: node linkType: hard +"@jsdevtools/ono@npm:^7.1.3": + version: 7.1.3 + resolution: "@jsdevtools/ono@npm:7.1.3" + checksum: 2297fcd472ba810bffe8519d2249171132844c7174f3a16634f9260761c8c78bc0428a4190b5b6d72d45673c13918ab9844d706c3ed4ef8f62ab11a2627a08ad + languageName: node + linkType: hard + "@keyv/serialize@npm:^1.0.3": version: 1.0.3 resolution: "@keyv/serialize@npm:1.0.3" @@ -7275,7 +7313,7 @@ __metadata: languageName: node linkType: hard -"ansi-colors@npm:^4.1.1": +"ansi-colors@npm:4.1.3, ansi-colors@npm:^4.1.1": version: 4.1.3 resolution: "ansi-colors@npm:4.1.3" checksum: a9c2ec842038a1fabc7db9ece7d3177e2fe1c5dc6f0c51ecfbf5f39911427b89c00b5dc6b8bd95f82a26e9b16aaae2e83d45f060e98070ce4d1333038edceb0e @@ -7778,6 +7816,15 @@ __metadata: languageName: node linkType: hard +"bundle-name@npm:^4.1.0": + version: 4.1.0 + resolution: "bundle-name@npm:4.1.0" + dependencies: + run-applescript: ^7.0.0 + checksum: 1d966c8d2dbf4d9d394e53b724ac756c2414c45c01340b37743621f59cc565a435024b394ddcb62b9b335d1c9a31f4640eb648c3fec7f97ee74dc0694c9beb6c + languageName: node + linkType: hard + "byte-size@npm:8.1.1": version: 8.1.1 resolution: "byte-size@npm:8.1.1" @@ -7785,6 +7832,31 @@ __metadata: languageName: node linkType: hard +"c12@npm:2.0.1": + version: 2.0.1 + resolution: "c12@npm:2.0.1" + dependencies: + chokidar: ^4.0.1 + confbox: ^0.1.7 + defu: ^6.1.4 + dotenv: ^16.4.5 + giget: ^1.2.3 + jiti: ^2.3.0 + mlly: ^1.7.1 + ohash: ^1.1.4 + pathe: ^1.1.2 + perfect-debounce: ^1.0.0 + pkg-types: ^1.2.0 + rc9: ^2.1.2 + peerDependencies: + magicast: ^0.3.5 + peerDependenciesMeta: + magicast: + optional: true + checksum: fee1d576b426efdc5cfc836939241a794aaaa29556653c7dafbad68de025b9181dd46f7a0498665fbf8e6ee37a12fb3ab63e780c0524c9a6320da6cb2ddd8246 + languageName: node + linkType: hard + "c8@npm:^7.14.0": version: 7.14.0 resolution: "c8@npm:7.14.0" @@ -8002,6 +8074,15 @@ __metadata: languageName: node linkType: hard +"chokidar@npm:^4.0.1": + version: 4.0.3 + resolution: "chokidar@npm:4.0.3" + dependencies: + readdirp: ^4.0.1 + checksum: a8765e452bbafd04f3f2fad79f04222dd65f43161488bb6014a41099e6ca18d166af613d59a90771908c1c823efa3f46ba36b86ac50b701c20c1b9908c5fe36e + languageName: node + linkType: hard + "chownr@npm:^2.0.0": version: 2.0.0 resolution: "chownr@npm:2.0.0" @@ -8237,6 +8318,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:13.0.0": + version: 13.0.0 + resolution: "commander@npm:13.0.0" + checksum: 3981c8c197c93ceeb949f6e2250785ea319209c502b7c53d6dc36148347739c72b15de2e4bcad80bedc3f8e1e5544a89ca4e7d673b2f3238ac51b44292ad08d6 + languageName: node + linkType: hard + "commander@npm:^13.0.0": version: 13.1.0 resolution: "commander@npm:13.1.0" @@ -8308,7 +8396,7 @@ __metadata: languageName: node linkType: hard -"confbox@npm:^0.1.8": +"confbox@npm:^0.1.7, confbox@npm:^0.1.8": version: 0.1.8 resolution: "confbox@npm:0.1.8" checksum: 5c7718ab22cf9e35a31c21ef124156076ae8c9dc65e6463d54961caf5a1d529284485a0fdf83fd23b27329f3b75b0c8c07d2e36c699f5151a2efe903343f976a @@ -8798,6 +8886,23 @@ __metadata: languageName: node linkType: hard +"default-browser-id@npm:^5.0.0": + version: 5.0.0 + resolution: "default-browser-id@npm:5.0.0" + checksum: 185bfaecec2c75fa423544af722a3469b20704c8d1942794a86e4364fe7d9e8e9f63241a5b769d61c8151993bc65833a5b959026fa1ccea343b3db0a33aa6deb + languageName: node + linkType: hard + +"default-browser@npm:^5.2.1": + version: 5.2.1 + resolution: "default-browser@npm:5.2.1" + dependencies: + bundle-name: ^4.1.0 + default-browser-id: ^5.0.0 + checksum: afab7eff7b7f5f7a94d9114d1ec67273d3fbc539edf8c0f80019879d53aa71e867303c6f6d7cffeb10a6f3cfb59d4f963dba3f9c96830b4540cc7339a1bf9840 + languageName: node + linkType: hard + "defaults@npm:^1.0.3": version: 1.0.4 resolution: "defaults@npm:1.0.4" @@ -8825,6 +8930,13 @@ __metadata: languageName: node linkType: hard +"define-lazy-prop@npm:^3.0.0": + version: 3.0.0 + resolution: "define-lazy-prop@npm:3.0.0" + checksum: 54884f94caac0791bf6395a3ec530ce901cf71c47b0196b8754f3fd17edb6c0e80149c1214429d851873bb0d689dbe08dcedbb2306dc45c8534a5934723851b6 + languageName: node + linkType: hard + "define-properties@npm:^1.1.3, define-properties@npm:^1.2.1": version: 1.2.1 resolution: "define-properties@npm:1.2.1" @@ -8864,6 +8976,13 @@ __metadata: languageName: node linkType: hard +"destr@npm:^2.0.3": + version: 2.0.5 + resolution: "destr@npm:2.0.5" + checksum: e6d5b9e922f528527cd98035249b4d34077828debd2be448a33e268ac1f803bd9a53e7cf0f5184ef68a67573b7f0a6033a89913f61eadaf0e180de49b148606e + languageName: node + linkType: hard + "detect-indent@npm:^5.0.0": version: 5.0.0 resolution: "detect-indent@npm:5.0.0" @@ -10231,6 +10350,7 @@ __metadata: resolution: "fp-frontend@workspace:." dependencies: "@eslint/js": 9.32.0 + "@hey-api/openapi-ts": 0.79.1 "@navikt/aksel-stylelint": 7.25.1 "@sentry/cli": 2.50.2 "@storybook/addon-links": 9.0.18 @@ -10503,7 +10623,7 @@ __metadata: languageName: node linkType: hard -"giget@npm:^1.0.0": +"giget@npm:^1.0.0, giget@npm:^1.2.3": version: 1.2.5 resolution: "giget@npm:1.2.5" dependencies: @@ -10757,7 +10877,7 @@ __metadata: languageName: node linkType: hard -"handlebars@npm:^4.7.7": +"handlebars@npm:4.7.8, handlebars@npm:^4.7.7": version: 4.7.8 resolution: "handlebars@npm:4.7.8" dependencies: @@ -11326,6 +11446,15 @@ __metadata: languageName: node linkType: hard +"is-docker@npm:^3.0.0": + version: 3.0.0 + resolution: "is-docker@npm:3.0.0" + bin: + is-docker: cli.js + checksum: b698118f04feb7eaf3338922bd79cba064ea54a1c3db6ec8c0c8d8ee7613e7e5854d802d3ef646812a8a3ace81182a085dfa0a71cc68b06f3fa794b9783b3c90 + languageName: node + linkType: hard + "is-extglob@npm:^2.1.1": version: 2.1.1 resolution: "is-extglob@npm:2.1.1" @@ -11386,6 +11515,17 @@ __metadata: languageName: node linkType: hard +"is-inside-container@npm:^1.0.0": + version: 1.0.0 + resolution: "is-inside-container@npm:1.0.0" + dependencies: + is-docker: ^3.0.0 + bin: + is-inside-container: cli.js + checksum: c50b75a2ab66ab3e8b92b3bc534e1ea72ca25766832c0623ac22d134116a98bcf012197d1caabe1d1c4bd5f84363d4aa5c36bb4b585fbcaf57be172cd10a1a03 + languageName: node + linkType: hard + "is-interactive@npm:^1.0.0": version: 1.0.0 resolution: "is-interactive@npm:1.0.0" @@ -11607,6 +11747,15 @@ __metadata: languageName: node linkType: hard +"is-wsl@npm:^3.1.0": + version: 3.1.0 + resolution: "is-wsl@npm:3.1.0" + dependencies: + is-inside-container: ^1.0.0 + checksum: f9734c81f2f9cf9877c5db8356bfe1ff61680f1f4c1011e91278a9c0564b395ae796addb4bf33956871041476ec82c3e5260ed57b22ac91794d4ae70a1d2f0a9 + languageName: node + linkType: hard + "isarray@npm:^2.0.5": version: 2.0.5 resolution: "isarray@npm:2.0.5" @@ -11740,6 +11889,15 @@ __metadata: languageName: node linkType: hard +"jiti@npm:^2.3.0": + version: 2.5.1 + resolution: "jiti@npm:2.5.1" + bin: + jiti: lib/jiti-cli.mjs + checksum: db901281e01013c27d46d6c5cde5fa817082f32232c92099043df11e135d00ccd1b4356a9ba356a3293e91855bd7437b6df5ae0ae6ad2c384d9bd59df926633c + languageName: node + linkType: hard + "js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": version: 4.0.0 resolution: "js-tokens@npm:4.0.0" @@ -12878,7 +13036,7 @@ __metadata: languageName: node linkType: hard -"mlly@npm:^1.7.4": +"mlly@npm:^1.7.1, mlly@npm:^1.7.4": version: 1.7.4 resolution: "mlly@npm:1.7.4" dependencies: @@ -13517,6 +13675,13 @@ __metadata: languageName: node linkType: hard +"ohash@npm:^1.1.4": + version: 1.1.6 + resolution: "ohash@npm:1.1.6" + checksum: 1400de55726d8a653618da1b5bf85b8e05c3ff5035071e0a4b483993d0826c98667a54da931042a59058a7fa9c8708b3de3f140eb9148a06cb81d9777b285b1b + languageName: node + linkType: hard + "once@npm:^1.3.0, once@npm:^1.4.0": version: 1.4.0 resolution: "once@npm:1.4.0" @@ -13544,6 +13709,18 @@ __metadata: languageName: node linkType: hard +"open@npm:10.1.2": + version: 10.1.2 + resolution: "open@npm:10.1.2" + dependencies: + default-browser: ^5.2.1 + define-lazy-prop: ^3.0.0 + is-inside-container: ^1.0.0 + is-wsl: ^3.1.0 + checksum: cb40d9786e8c679a1c647c62ad3642bbf1a8cc986c3ec970e99ed13d279c93328ea46bf756db64ea465d2d707815d4e792e7ba906830c3439cc8577cdefb8610 + languageName: node + linkType: hard + "open@npm:^8.0.4, open@npm:^8.4.0": version: 8.4.2 resolution: "open@npm:8.4.2" @@ -14006,6 +14183,13 @@ __metadata: languageName: node linkType: hard +"pathe@npm:^1.1.2": + version: 1.1.2 + resolution: "pathe@npm:1.1.2" + checksum: ec5f778d9790e7b9ffc3e4c1df39a5bb1ce94657a4e3ad830c1276491ca9d79f189f47609884671db173400256b005f4955f7952f52a2aeb5834ad5fb4faf134 + languageName: node + linkType: hard + "pathe@npm:^2.0.1, pathe@npm:^2.0.3": version: 2.0.3 resolution: "pathe@npm:2.0.3" @@ -14020,6 +14204,13 @@ __metadata: languageName: node linkType: hard +"perfect-debounce@npm:^1.0.0": + version: 1.0.0 + resolution: "perfect-debounce@npm:1.0.0" + checksum: 220343acf52976947958fef3599849471605316e924fe19c633ae2772576298e9d38f02cefa8db46f06607505ce7b232cbb35c9bfd477bd0329bd0a2ce37c594 + languageName: node + linkType: hard + "picocolors@npm:1.1.1, picocolors@npm:^1.0.0, picocolors@npm:^1.1.1": version: 1.1.1 resolution: "picocolors@npm:1.1.1" @@ -14110,7 +14301,7 @@ __metadata: languageName: node linkType: hard -"pkg-types@npm:^1.3.0, pkg-types@npm:^1.3.1": +"pkg-types@npm:^1.2.0, pkg-types@npm:^1.3.0, pkg-types@npm:^1.3.1": version: 1.3.1 resolution: "pkg-types@npm:1.3.1" dependencies: @@ -14386,6 +14577,16 @@ __metadata: languageName: node linkType: hard +"rc9@npm:^2.1.2": + version: 2.1.2 + resolution: "rc9@npm:2.1.2" + dependencies: + defu: ^6.1.4 + destr: ^2.0.3 + checksum: aaa8f962a9a6a89981e2da75dad71117fe0f856bb55fecf793cd42ee0badc1cb92e6bb7cd25a9473e2d3c968ac29e507384ce52c4e76bbd63ac5649d3d7c2ab3 + languageName: node + linkType: hard + "react-day-picker@npm:9.7.0": version: 9.7.0 resolution: "react-day-picker@npm:9.7.0" @@ -14714,6 +14915,13 @@ __metadata: languageName: node linkType: hard +"readdirp@npm:^4.0.1": + version: 4.1.2 + resolution: "readdirp@npm:4.1.2" + checksum: 3242ee125422cb7c0e12d51452e993f507e6ed3d8c490bc8bf3366c5cdd09167562224e429b13e9cb2b98d4b8b2b11dc100d3c73883aa92d657ade5a21ded004 + languageName: node + linkType: hard + "recast@npm:^0.23.3, recast@npm:^0.23.5": version: 0.23.11 resolution: "recast@npm:0.23.11" @@ -15056,6 +15264,13 @@ __metadata: languageName: node linkType: hard +"run-applescript@npm:^7.0.0": + version: 7.0.0 + resolution: "run-applescript@npm:7.0.0" + checksum: b02462454d8b182ad4117e5d4626e9e6782eb2072925c9fac582170b0627ae3c1ea92ee9b2df7daf84b5e9ffe14eb1cf5fb70bc44b15c8a0bfcdb47987e2410c + languageName: node + linkType: hard + "run-async@npm:^2.4.0": version: 2.4.1 resolution: "run-async@npm:2.4.1" From 7d27866118b6eb17ec7c57bd716479f509fda2bd Mon Sep 17 00:00:00 2001 From: johannbm Date: Tue, 29 Jul 2025 10:44:16 +0200 Subject: [PATCH 03/12] oppdater script --- generate-api-types.sh | 4 +++- openapi-ts.config.ts | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/generate-api-types.sh b/generate-api-types.sh index 374ccf8e01c..49bc6e148d8 100755 --- a/generate-api-types.sh +++ b/generate-api-types.sh @@ -3,7 +3,9 @@ # Step 1: Run the command if ! yarn run openapi-ts; then echo "❌ Typegenerering feilet. Sjekk error filen som ble generert." - echo "👉 Husk at du må ha autotest kjørende. Dobbeltsjekk at foreldrepengesoknad-api kjører på samme port som gitt i openapi-ts.config.ts" + echo "👉 Husk at du må ha en swagger.json lokalt." + echo "1. Kjør opp autotest. Gå til Swagger lokalt på localhost:9200" + echo "2. Åpne network og kopier openapi.json for relevant tjeneste" exit 1 fi diff --git a/openapi-ts.config.ts b/openapi-ts.config.ts index 61e69dcb515..ff6abde8e89 100644 --- a/openapi-ts.config.ts +++ b/openapi-ts.config.ts @@ -1,7 +1,7 @@ import { defineConfig } from '@hey-api/openapi-ts'; export default defineConfig({ - input: './swagger.json', - output: 'temp-types', - plugins: ['@hey-api/client-fetch'], + input: './swagger.json', + output: 'temp-types', + plugins: ['@hey-api/client-fetch'], }); From 5a860e7890a957b7270645b71628274c23a7c927 Mon Sep 17 00:00:00 2001 From: johannbm Date: Tue, 29 Jul 2025 14:08:35 +0200 Subject: [PATCH 04/12] Prettier --- .../DelOppPeriode/DelOppPeriodeModal.tsx | 2 +- .../OppgaverSomErApneEllerPaVentPanel.tsx | 2 +- .../OppgaveReservasjonEndringDatoModal.tsx | 2 +- .../src/fagsakSok/FagsakS\303\270kIndex.tsx" | 17 +++++++++-------- .../splitt/SplittPeriodeModal.tsx | 2 +- .../vedtak/src/components/felles/Dokumenter.tsx | 4 +++- .../src/components/EndreUtlandModal.tsx | 2 +- 7 files changed, 17 insertions(+), 14 deletions(-) diff --git a/packages/fakta/uttaksdokumentasjon/src/components/DelOppPeriode/DelOppPeriodeModal.tsx b/packages/fakta/uttaksdokumentasjon/src/components/DelOppPeriode/DelOppPeriodeModal.tsx index bb9a57a2d5b..fd6e28a5bec 100644 --- a/packages/fakta/uttaksdokumentasjon/src/components/DelOppPeriode/DelOppPeriodeModal.tsx +++ b/packages/fakta/uttaksdokumentasjon/src/components/DelOppPeriode/DelOppPeriodeModal.tsx @@ -3,7 +3,7 @@ import { FormattedMessage, type IntlShape, useIntl } from 'react-intl'; import { ScissorsIcon } from '@navikt/aksel-icons'; import { BodyShort, Box, Button, Heading, HStack, Label, Modal, VStack } from '@navikt/ds-react'; -import { RhfDatepicker,RhfForm } from '@navikt/ft-form-hooks'; +import { RhfDatepicker, RhfForm } from '@navikt/ft-form-hooks'; import { hasValidDate, required } from '@navikt/ft-form-validators'; import { PeriodLabel } from '@navikt/ft-ui-komponenter'; import { ISO_DATE_FORMAT } from '@navikt/ft-utils'; diff --git a/packages/los/avdelingsleder/src/nokkeltall/apneOgPaVentBehandlinger/OppgaverSomErApneEllerPaVentPanel.tsx b/packages/los/avdelingsleder/src/nokkeltall/apneOgPaVentBehandlinger/OppgaverSomErApneEllerPaVentPanel.tsx index b04dddd5548..b1da3bb3599 100644 --- a/packages/los/avdelingsleder/src/nokkeltall/apneOgPaVentBehandlinger/OppgaverSomErApneEllerPaVentPanel.tsx +++ b/packages/los/avdelingsleder/src/nokkeltall/apneOgPaVentBehandlinger/OppgaverSomErApneEllerPaVentPanel.tsx @@ -2,7 +2,7 @@ import { useForm } from 'react-hook-form'; import { FormattedMessage } from 'react-intl'; import { HStack, Label, VStack } from '@navikt/ds-react'; -import { RhfCheckbox,RhfForm } from '@navikt/ft-form-hooks'; +import { RhfCheckbox, RhfForm } from '@navikt/ft-form-hooks'; import { useQuery } from '@tanstack/react-query'; import { BehandlingType } from '@navikt/fp-kodeverk'; diff --git a/packages/los/felles/src/endreReservasjon/OppgaveReservasjonEndringDatoModal.tsx b/packages/los/felles/src/endreReservasjon/OppgaveReservasjonEndringDatoModal.tsx index fe48fac1b18..f740c320aa9 100644 --- a/packages/los/felles/src/endreReservasjon/OppgaveReservasjonEndringDatoModal.tsx +++ b/packages/los/felles/src/endreReservasjon/OppgaveReservasjonEndringDatoModal.tsx @@ -2,7 +2,7 @@ import { useForm } from 'react-hook-form'; import { FormattedMessage, useIntl } from 'react-intl'; import { Button, Heading, Modal as NavModal } from '@navikt/ds-react'; -import { RhfDatepicker,RhfForm } from '@navikt/ft-form-hooks'; +import { RhfDatepicker, RhfForm } from '@navikt/ft-form-hooks'; import { dateAfterOrEqualToToday, dateBeforeOrEqual, hasValidDate } from '@navikt/ft-form-validators'; import { ISO_DATE_FORMAT } from '@navikt/ft-utils'; import dayjs from 'dayjs'; diff --git "a/packages/los/saksbehandler/src/fagsakSok/FagsakS\303\270kIndex.tsx" "b/packages/los/saksbehandler/src/fagsakSok/FagsakS\303\270kIndex.tsx" index d035a926d79..678a4242c0e 100644 --- "a/packages/los/saksbehandler/src/fagsakSok/FagsakS\303\270kIndex.tsx" +++ "b/packages/los/saksbehandler/src/fagsakSok/FagsakS\303\270kIndex.tsx" @@ -93,7 +93,8 @@ export const FagsakSøkIndex = ({ åpneFagsak, kanSaksbehandle }: Props) => { const goToFagsakEllerApneModal = (oppgave: Oppgave, reservasjonStatus?: ReservasjonStatus) => { if ( reservasjonStatus && - (!reservasjonStatus.erReservert || (reservasjonStatus.erReservert && reservasjonStatus.erReservertAvInnloggetBruker)) + (!reservasjonStatus.erReservert || + (reservasjonStatus.erReservert && reservasjonStatus.erReservertAvInnloggetBruker)) ) { åpneFagsak(oppgave.saksnummer, oppgave.behandlingId); } else if (reservasjonStatus?.erReservert && !reservasjonStatus.erReservertAvInnloggetBruker) { @@ -107,13 +108,13 @@ export const FagsakSøkIndex = ({ åpneFagsak, kanSaksbehandle }: Props) => { setReservertOppgave(oppgave); setReservertAvAnnenSaksbehandler(true); } else if (!skalReservere) { - if (skalSjekkeOmReservert) { - hentReservasjonsstatus(oppgave.id).then(status => { - goToFagsakEllerApneModal(oppgave, status); - }); - } else { - åpneFagsak(oppgave.saksnummer, oppgave.behandlingId); - } + if (skalSjekkeOmReservert) { + hentReservasjonsstatus(oppgave.id).then(status => { + goToFagsakEllerApneModal(oppgave, status); + }); + } else { + åpneFagsak(oppgave.saksnummer, oppgave.behandlingId); + } } else { reserverOppgave(oppgave.id).then(data => { goToFagsakEllerApneModal(oppgave, data); diff --git a/packages/prosess/uttak/src/components/periodeDetaljer/splitt/SplittPeriodeModal.tsx b/packages/prosess/uttak/src/components/periodeDetaljer/splitt/SplittPeriodeModal.tsx index 7bb48874a07..87f4b4b8212 100644 --- a/packages/prosess/uttak/src/components/periodeDetaljer/splitt/SplittPeriodeModal.tsx +++ b/packages/prosess/uttak/src/components/periodeDetaljer/splitt/SplittPeriodeModal.tsx @@ -2,7 +2,7 @@ import { useForm } from 'react-hook-form'; import { FormattedMessage, type IntlShape, useIntl } from 'react-intl'; import { BodyShort, Button, Detail, Heading, HStack, Modal, VStack } from '@navikt/ds-react'; -import { RhfDatepicker,RhfForm } from '@navikt/ft-form-hooks'; +import { RhfDatepicker, RhfForm } from '@navikt/ft-form-hooks'; import { hasValidDate, required } from '@navikt/ft-form-validators'; import { PeriodLabel } from '@navikt/ft-ui-komponenter'; import { calcDaysAndWeeks } from '@navikt/ft-utils'; diff --git a/packages/prosess/vedtak/src/components/felles/Dokumenter.tsx b/packages/prosess/vedtak/src/components/felles/Dokumenter.tsx index e8c93c00004..378fe8c3fa6 100644 --- a/packages/prosess/vedtak/src/components/felles/Dokumenter.tsx +++ b/packages/prosess/vedtak/src/components/felles/Dokumenter.tsx @@ -37,7 +37,9 @@ export const Dokumenter = ({ dokumenter }: Props) => { {!erDokumenterSkjult && ( - {dokumenter?.map(dokument => )} + {dokumenter?.map(dokument => ( + + ))} )} diff --git a/packages/sak/meny-endre-utland/src/components/EndreUtlandModal.tsx b/packages/sak/meny-endre-utland/src/components/EndreUtlandModal.tsx index fda01428758..dd4e58e01ce 100644 --- a/packages/sak/meny-endre-utland/src/components/EndreUtlandModal.tsx +++ b/packages/sak/meny-endre-utland/src/components/EndreUtlandModal.tsx @@ -2,7 +2,7 @@ import { useForm } from 'react-hook-form'; import { FormattedMessage, useIntl } from 'react-intl'; import { Button, Checkbox, Heading, Modal } from '@navikt/ds-react'; -import { RhfCheckboxGroup,RhfForm } from '@navikt/ft-form-hooks'; +import { RhfCheckboxGroup, RhfForm } from '@navikt/ft-form-hooks'; import type { KodeverkMedNavn, Saksmarkering } from '@navikt/fp-types'; From 74baad07b36f68edbb7f7cf70b2d6cc5c50715f4 Mon Sep 17 00:00:00 2001 From: johannbm Date: Wed, 30 Jul 2025 09:33:34 +0200 Subject: [PATCH 05/12] lint and prettier --- .../src/AdopsjonFaktaIndex.stories.tsx | 32 +++++++++++++++-- .../src/BesteberegningFaktaIndex.stories.tsx | 12 ++++++- ...sorgOgForeldreansvarFaktaIndex.stories.tsx | 31 +++++++++++++++- .../omsorg/src/OmsorgFaktaIndex.stories.tsx | 19 +++++++++- .../src/OpptjeningFaktaIndex.stories.tsx | 31 ++++++++++++++-- .../saken/src/SakenFaktaIndex.stories.tsx | 35 +++++++++++++++++-- .../src/TilretteleggingFaktaIndex.stories.tsx | 26 ++++++++++++++ .../uttak/src/UttakFaktaIndex.stories.tsx | 30 +++++++++++++++- .../UttakDokumentasjonFaktaIndex.stories.tsx | 29 ++++++++++++++- .../verge/src/VergeFaktaIndex.stories.tsx | 12 ++++++- .../vedtak/src/VedtakProsessIndex.stories.tsx | 31 ++++++++++++---- 11 files changed, 269 insertions(+), 19 deletions(-) diff --git a/packages/fakta/adopsjon/src/AdopsjonFaktaIndex.stories.tsx b/packages/fakta/adopsjon/src/AdopsjonFaktaIndex.stories.tsx index dbd2e575a37..9f458e3931c 100644 --- a/packages/fakta/adopsjon/src/AdopsjonFaktaIndex.stories.tsx +++ b/packages/fakta/adopsjon/src/AdopsjonFaktaIndex.stories.tsx @@ -2,9 +2,16 @@ import { type ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus, FarSøkerType, SoknadType } from '@navikt/fp-kodeverk'; +import { + AksjonspunktKode, + AksjonspunktStatus, + AksjonspunktType, + FarSøkerType, + SoknadType, + VilkarType, +} from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; -import type { FamilieHendelseSamling, Soknad } from '@navikt/fp-types'; +import type { Aksjonspunkt, FamilieHendelseSamling, Soknad } from '@navikt/fp-types'; import { AdopsjonFaktaIndex } from './AdopsjonFaktaIndex'; @@ -48,10 +55,28 @@ export default meta; type Story = StoryObj; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + export const AksjonspunktForAdopsjonsvilkåret: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.ADOPSJONSDOKUMENTAJON, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -68,6 +93,7 @@ export const AksjonspunktForOmSøkerErMannSomAdoptererAlene: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.OM_SOKER_ER_MANN_SOM_ADOPTERER_ALENE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -84,6 +110,7 @@ export const AksjonspunktForOmAdopsjonGjelderEktefellesBarn: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.OM_ADOPSJON_GJELDER_EKTEFELLES_BARN, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -100,6 +127,7 @@ export const IkkeVisBarnetsAnkomstDatoForEngangsstønad: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.OM_ADOPSJON_GJELDER_EKTEFELLES_BARN, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, diff --git a/packages/fakta/besteberegning/src/BesteberegningFaktaIndex.stories.tsx b/packages/fakta/besteberegning/src/BesteberegningFaktaIndex.stories.tsx index 526c9cbf3e1..753913f105a 100644 --- a/packages/fakta/besteberegning/src/BesteberegningFaktaIndex.stories.tsx +++ b/packages/fakta/besteberegning/src/BesteberegningFaktaIndex.stories.tsx @@ -2,7 +2,7 @@ import type { ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus } from '@navikt/fp-kodeverk'; +import { AksjonspunktKode, AksjonspunktStatus, AksjonspunktType, VilkarType } from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; import type { Aksjonspunkt, ArbeidsgiverOpplysningerPerId } from '@navikt/fp-types'; @@ -30,6 +30,16 @@ const lagAksjonspunkt = (apKode: AksjonspunktKode, status: AksjonspunktStatus, b status, kanLoses: true, begrunnelse: begrunnelse ?? null, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, }); const meta = { diff --git a/packages/fakta/omsorg-og-foreldreansvar/src/OmsorgOgForeldreansvarFaktaIndex.stories.tsx b/packages/fakta/omsorg-og-foreldreansvar/src/OmsorgOgForeldreansvarFaktaIndex.stories.tsx index f43e21a4af0..3aa6aace1d2 100644 --- a/packages/fakta/omsorg-og-foreldreansvar/src/OmsorgOgForeldreansvarFaktaIndex.stories.tsx +++ b/packages/fakta/omsorg-og-foreldreansvar/src/OmsorgOgForeldreansvarFaktaIndex.stories.tsx @@ -7,13 +7,21 @@ import { AdresseType, AksjonspunktKode, AksjonspunktStatus, + AksjonspunktType, FarSøkerType, NavBrukerKjonn, SivilstandType, SoknadType, + VilkarType, } from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withPanelData } from '@navikt/fp-storybook-utils'; -import type { FamilieHendelseSamling, InntektArbeidYtelse, Personoversikt, Soknad } from '@navikt/fp-types'; +import type { + Aksjonspunkt, + FamilieHendelseSamling, + InntektArbeidYtelse, + Personoversikt, + Soknad, +} from '@navikt/fp-types'; import { OmsorgOgForeldreansvarFaktaIndex } from './OmsorgOgForeldreansvarFaktaIndex'; @@ -102,10 +110,28 @@ export default meta; type Story = StoryObj; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + export const ÅpentAksjonspunktForOmsorgovertakelse: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -132,6 +158,7 @@ export const UtførtAksjonspunktForOmsorgovertakelse: Story = { }, aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, status: AksjonspunktStatus.UTFORT, begrunnelse: 'dette er en begrunnelse', @@ -149,6 +176,7 @@ export const ÅpentAksjonspunktForAvklareVilkårForForeldreansvar: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_VILKAR_FOR_FORELDREANSVAR, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -166,6 +194,7 @@ export const UtførtAksjonspunktForAvklareVilkårForForeldreansvar: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_VILKAR_FOR_FORELDREANSVAR, status: AksjonspunktStatus.UTFORT, begrunnelse: 'dette er en begrunnelse', diff --git a/packages/fakta/omsorg/src/OmsorgFaktaIndex.stories.tsx b/packages/fakta/omsorg/src/OmsorgFaktaIndex.stories.tsx index 964e91c9974..a22484d0961 100644 --- a/packages/fakta/omsorg/src/OmsorgFaktaIndex.stories.tsx +++ b/packages/fakta/omsorg/src/OmsorgFaktaIndex.stories.tsx @@ -3,7 +3,14 @@ import type { ComponentProps } from 'react'; import { TIDENES_ENDE } from '@navikt/ft-utils'; import type { Meta, StoryObj } from '@storybook/react'; -import { AdresseType, AksjonspunktKode, AksjonspunktStatus, SivilstandType } from '@navikt/fp-kodeverk'; +import { + AdresseType, + AksjonspunktKode, + AksjonspunktStatus, + AksjonspunktType, + SivilstandType, + VilkarType, +} from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; import { KjønnkodeEnum, type PersonopplysningerBasis, type Ytelsefordeling } from '@navikt/fp-types'; @@ -85,6 +92,16 @@ export const ÅpentAksjonspunktForKontrollAvOmBrukerHarOmsorg: Story = { status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, kanLoses: true, + vilkarType: VilkarType.FODSELSVILKARET_MOR, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, }, ], alleMerknaderFraBeslutter: { diff --git a/packages/fakta/opptjening/src/OpptjeningFaktaIndex.stories.tsx b/packages/fakta/opptjening/src/OpptjeningFaktaIndex.stories.tsx index fabab9397f7..87578c98274 100644 --- a/packages/fakta/opptjening/src/OpptjeningFaktaIndex.stories.tsx +++ b/packages/fakta/opptjening/src/OpptjeningFaktaIndex.stories.tsx @@ -2,9 +2,15 @@ import type { ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus, OpptjeningAktivitetType } from '@navikt/fp-kodeverk'; +import { + AksjonspunktKode, + AksjonspunktStatus, + AksjonspunktType, + OpptjeningAktivitetType, + VilkarType, +} from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; -import type { ArbeidsgiverOpplysningerPerId, Opptjening } from '@navikt/fp-types'; +import type { Aksjonspunkt, ArbeidsgiverOpplysningerPerId, Opptjening } from '@navikt/fp-types'; import { OpptjeningFaktaIndex } from './OpptjeningFaktaIndex'; @@ -37,10 +43,28 @@ export default meta; type Story = StoryObj; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + export const MedAksjonspunkt: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.VURDER_PERIODER_MED_OPPTJENING, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -182,6 +206,7 @@ export const MedToLikePerioderForSammeAktivitetstype: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.VURDER_PERIODER_MED_OPPTJENING, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -243,6 +268,8 @@ export const MedAlleOpptjeningsaktiviteterFiltrertBort: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, + definisjon: AksjonspunktKode.VURDER_PERIODER_MED_OPPTJENING, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, diff --git a/packages/fakta/saken/src/SakenFaktaIndex.stories.tsx b/packages/fakta/saken/src/SakenFaktaIndex.stories.tsx index 9a7b0d216fb..9cd0259bd7a 100644 --- a/packages/fakta/saken/src/SakenFaktaIndex.stories.tsx +++ b/packages/fakta/saken/src/SakenFaktaIndex.stories.tsx @@ -2,9 +2,16 @@ import type { ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus, FagsakYtelseType, NavBrukerKjonn } from '@navikt/fp-kodeverk'; +import { + AksjonspunktKode, + AksjonspunktStatus, + AksjonspunktType, + FagsakYtelseType, + NavBrukerKjonn, + VilkarType, +} from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; -import type { Fagsak, Soknad } from '@navikt/fp-types'; +import type { Aksjonspunkt, Fagsak, Soknad } from '@navikt/fp-types'; import { SakenFaktaIndex } from './SakenFaktaIndex'; @@ -20,6 +27,23 @@ const defaultSøknad = { }, } as Soknad; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + const meta = { title: 'fakta/fakta-saken', component: SakenFaktaIndex, @@ -76,6 +100,7 @@ export const ApentAksjonspunktForInnhentingAvDokumentasjon: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AUTOMATISK_MARKERING_AV_UTENLANDSSAK, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -89,6 +114,7 @@ export const ApentAksjonspunktForInnhentingAvDokumentasjonVedSvp: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AUTOMATISK_MARKERING_AV_UTENLANDSSAK, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -105,6 +131,7 @@ export const AksjonspunktErIkkeGodkjentAvBeslutter: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AUTOMATISK_MARKERING_AV_UTENLANDSSAK, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -123,6 +150,7 @@ export const DekningsgradErEndret: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.OVERSTYR_DEKNINGSGRAD, status: AksjonspunktStatus.UTFORT, kanLoses: true, @@ -148,6 +176,7 @@ export const HarFåttDekningsgradAksjonspunkt: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_DEKNINGSGRAD, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -187,6 +216,7 @@ export const HarFåttDekningsgradAksjonspunktMedUkjentAndrePart: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_DEKNINGSGRAD, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -226,6 +256,7 @@ export const DekningsgradAksjonspunktErSendtTIlbakeFraBeslutter: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_DEKNINGSGRAD, status: AksjonspunktStatus.OPPRETTET, kanLoses: true, diff --git a/packages/fakta/tilrettelegging/src/TilretteleggingFaktaIndex.stories.tsx b/packages/fakta/tilrettelegging/src/TilretteleggingFaktaIndex.stories.tsx index 2fc98b22b32..031849f3e3f 100644 --- a/packages/fakta/tilrettelegging/src/TilretteleggingFaktaIndex.stories.tsx +++ b/packages/fakta/tilrettelegging/src/TilretteleggingFaktaIndex.stories.tsx @@ -5,12 +5,15 @@ import type { Meta, StoryObj } from '@storybook/react'; import { AksjonspunktKode, AksjonspunktStatus, + AksjonspunktType, PermisjonsbeskrivelseType, TilretteleggingType, UttakArbeidType, + VilkarType, } from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; import { + type Aksjonspunkt, type ArbeidOgInntektsmelding, type ArbeidsforholdFodselOgTilrettelegging, type ArbeidsgiverOpplysningerPerId, @@ -263,10 +266,28 @@ export default meta; type Story = StoryObj; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + export const TilretteleggingMedVelferdspermisjon: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FODSELTILRETTELEGGING, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -282,6 +303,7 @@ export const TilretteleggingMed100ProsentVelferdspermisjon: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FODSELTILRETTELEGGING, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -297,6 +319,7 @@ export const SokerVarIkkeAnsattDaBehovetForTilretteleggingOppstod: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FODSELTILRETTELEGGING, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -312,6 +335,7 @@ export const HarOpphold: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FODSELTILRETTELEGGING, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -369,6 +393,7 @@ export const ErReadonly: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FODSELTILRETTELEGGING, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -427,6 +452,7 @@ export const ErRevurdering: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FODSELTILRETTELEGGING, status: AksjonspunktStatus.OPPRETTET, begrunnelse: 'Dette er en begrunnelse', diff --git a/packages/fakta/uttak/src/UttakFaktaIndex.stories.tsx b/packages/fakta/uttak/src/UttakFaktaIndex.stories.tsx index 846bf2409fb..d884ed52164 100644 --- a/packages/fakta/uttak/src/UttakFaktaIndex.stories.tsx +++ b/packages/fakta/uttak/src/UttakFaktaIndex.stories.tsx @@ -5,14 +5,16 @@ import type { Meta, StoryObj } from '@storybook/react'; import { AksjonspunktKode, AksjonspunktStatus, + AksjonspunktType, FordelingPeriodeKilde, RelasjonsRolleType, UtsettelseÅrsak, UttakArbeidType, UttakPeriodeType, + VilkarType, } from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; -import type { ArbeidsgiverOpplysningerPerId, Fagsak } from '@navikt/fp-types'; +import type { Aksjonspunkt, ArbeidsgiverOpplysningerPerId, Fagsak } from '@navikt/fp-types'; import { OverføringÅrsak } from './kodeverk/overføringÅrsak'; import { UttakFaktaIndex } from './UttakFaktaIndex'; @@ -26,6 +28,23 @@ const arbeidsgiverOpplysningerPerId: ArbeidsgiverOpplysningerPerId = { }, }; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + const meta = { title: 'fakta/fakta-uttak', component: UttakFaktaIndex, @@ -97,6 +116,7 @@ export const VisUttaksperiodeMedAksjonspunkt: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FAKTA_UTTAK_MANUELT_SATT_STARTDATO_ULIK_SØKNAD_STARTDATO_KODE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -154,6 +174,7 @@ export const VisUtsettelseperiodeMedAksjonspunkt: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FAKTA_UTTAK_MANUELT_SATT_STARTDATO_ULIK_SØKNAD_STARTDATO_KODE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -180,6 +201,7 @@ export const VisOverføringsperiodeMedAksjonspunkt: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FAKTA_UTTAK_MANUELT_SATT_STARTDATO_ULIK_SØKNAD_STARTDATO_KODE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -207,6 +229,7 @@ export const VisAksjonspunktDerIngenPerioderFinnes: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FAKTA_UTTAK_INGEN_PERIODER_KODE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -226,6 +249,7 @@ export const VisAksjonspunktDerArbeidsfoholdErUkjentVedGradering: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FAKTA_UTTAK_GRADERING_UKJENT_AKTIVITET_KODE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -258,6 +282,7 @@ export const VisAksjonspunktDerEnIkkeHarBeregningsgrunnlagVedGradering: Story = args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FAKTA_UTTAK_GRADERING_AKTIVITET_UTEN_BEREGNINGSGRUNNLAG_KODE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -290,6 +315,7 @@ export const VisPanelDerAksjonspunktErLøstOgBehandlingAvsluttet: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FAKTA_UTTAK_GRADERING_AKTIVITET_UTEN_BEREGNINGSGRUNNLAG_KODE, status: AksjonspunktStatus.UTFORT, begrunnelse: 'Dette er en begrunnelse', @@ -325,6 +351,7 @@ export const VisBegrunnelseFraTidligereUtgaveAvPanel: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FAKTA_UTTAK_GRADERING_AKTIVITET_UTEN_BEREGNINGSGRUNNLAG_KODE, status: AksjonspunktStatus.UTFORT, begrunnelse: 'Dette er en begrunnelse', @@ -361,6 +388,7 @@ export const VisUttaksperiodeMedAksjonspunktForFar: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.FAKTA_UTTAK_MANUELT_SATT_STARTDATO_ULIK_SØKNAD_STARTDATO_KODE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, diff --git a/packages/fakta/uttaksdokumentasjon/src/UttakDokumentasjonFaktaIndex.stories.tsx b/packages/fakta/uttaksdokumentasjon/src/UttakDokumentasjonFaktaIndex.stories.tsx index 0286d1059a0..6dc3e728386 100644 --- a/packages/fakta/uttaksdokumentasjon/src/UttakDokumentasjonFaktaIndex.stories.tsx +++ b/packages/fakta/uttaksdokumentasjon/src/UttakDokumentasjonFaktaIndex.stories.tsx @@ -2,9 +2,16 @@ import type { ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus, AktivitetskravPermisjonType } from '@navikt/fp-kodeverk'; +import { + AksjonspunktKode, + AksjonspunktStatus, + AksjonspunktType, + AktivitetskravPermisjonType, + VilkarType, +} from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; import { + type Aksjonspunkt, type AktivitetskravGrunnlagArbeid, type DokumentasjonVurderingBehov, UttakÅrsak, @@ -33,6 +40,23 @@ const aktivitetskravGrunnlagListe = [ }, ] as AktivitetskravGrunnlagArbeid[]; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + const opprettetDokumentasjonVurderingBehovListe = [ { fom: '2022-11-01', @@ -98,6 +122,7 @@ export const AksjonspunktMedUavklartePerioder: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.VURDER_UTTAK_DOKUMENTASJON, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -157,6 +182,7 @@ export const AksjonspunktSomErBekreftetOgBehandlingAvsluttet: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.VURDER_UTTAK_DOKUMENTASJON, status: AksjonspunktStatus.UTFORT, begrunnelse: 'Dette er en begrunnelse', @@ -173,6 +199,7 @@ export const AksjonspunktErBekreftetMenBehandlingErÅpen: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.VURDER_UTTAK_DOKUMENTASJON, status: AksjonspunktStatus.UTFORT, begrunnelse: null, diff --git a/packages/fakta/verge/src/VergeFaktaIndex.stories.tsx b/packages/fakta/verge/src/VergeFaktaIndex.stories.tsx index bfafe26e565..0baa22362fe 100644 --- a/packages/fakta/verge/src/VergeFaktaIndex.stories.tsx +++ b/packages/fakta/verge/src/VergeFaktaIndex.stories.tsx @@ -2,7 +2,7 @@ import type { ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus, VergeType } from '@navikt/fp-kodeverk'; +import { AksjonspunktKode, AksjonspunktStatus, AksjonspunktType, VergeType, VilkarType } from '@navikt/fp-kodeverk'; import { alleKodeverk, alleKodeverkTilbakekreving, @@ -20,6 +20,16 @@ const aksjonspunkterForPanel: Aksjonspunkt[] = [ status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, }, ]; diff --git a/packages/prosess/vedtak/src/VedtakProsessIndex.stories.tsx b/packages/prosess/vedtak/src/VedtakProsessIndex.stories.tsx index 0d23edfe195..8d4efd8953f 100644 --- a/packages/prosess/vedtak/src/VedtakProsessIndex.stories.tsx +++ b/packages/prosess/vedtak/src/VedtakProsessIndex.stories.tsx @@ -6,6 +6,7 @@ import { action } from 'storybook/actions'; import { AksjonspunktKode, AksjonspunktStatus, + AksjonspunktType, Avslagsarsak, BehandlingArsakType, BehandlingResultatType, @@ -36,13 +37,23 @@ import redigertInnhold from '../.storybook/brevmal/redigertInnhold.html?raw'; import { VedtakEditeringProvider } from './VedtakEditeringContext'; import { VedtakProsessIndex } from './VedtakProsessIndex'; -const defaultAksjonspunkter = [ - { - definisjon: AksjonspunktKode.FORESLA_VEDTAK, - status: AksjonspunktStatus.OPPRETTET, - kanLoses: true, - }, -] as Aksjonspunkt[]; +const defaultAksjonspunkt = { + definisjon: AksjonspunktKode.FORESLA_VEDTAK, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; +const defaultAksjonspunkter = [defaultAksjonspunkt]; const defaultBehandling = { uuid: '1', @@ -267,6 +278,7 @@ export const TeksterForAksjonspunkterSomSaksbehandlerMåTaStillingTil: Story = { aksjonspunkt: [ ...defaultAksjonspunkter, { + ...defaultAksjonspunkt, definisjon: AksjonspunktKode.VURDERE_ANNEN_YTELSE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -274,18 +286,21 @@ export const TeksterForAksjonspunkterSomSaksbehandlerMåTaStillingTil: Story = { toTrinnsBehandling: true, }, { + ...defaultAksjonspunkt, definisjon: AksjonspunktKode.VURDERE_DOKUMENT, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, kanLoses: false, }, { + ...defaultAksjonspunkt, definisjon: AksjonspunktKode.VURDERE_INNTEKTSMELDING_KLAGE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, kanLoses: false, }, { + ...defaultAksjonspunkt, definisjon: AksjonspunktKode.KONTROLLER_REVURDERINGSBEHANDLING_VARSEL_VED_UGUNST, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -321,6 +336,7 @@ export const OppgaverForAksjonspunkterSomSaksbehandlerMåTaStillingTil: Story = aksjonspunkt: [ ...defaultAksjonspunkter, { + ...defaultAksjonspunkt, definisjon: AksjonspunktKode.VURDERE_ANNEN_YTELSE, status: AksjonspunktStatus.OPPRETTET, begrunnelse: 'Dette er en begrunnelse', @@ -328,6 +344,7 @@ export const OppgaverForAksjonspunkterSomSaksbehandlerMåTaStillingTil: Story = toTrinnsBehandling: true, }, { + ...defaultAksjonspunkt, definisjon: AksjonspunktKode.VURDERE_DOKUMENT, status: AksjonspunktStatus.OPPRETTET, begrunnelse: 'Dette er en begrunnelse', From 2670981a6606ec3f8edc9d97cf7e64cbc8018167 Mon Sep 17 00:00:00 2001 From: johannbm Date: Mon, 11 Aug 2025 11:20:58 +0200 Subject: [PATCH 06/12] wip --- .tool-versions | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.tool-versions b/.tool-versions index c0c2dab1fe0..b22f1ab43a8 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1,2 @@ -nodejs 22.17.0 +nodejs 22.17.1 +yarn 1.22.22 From 17734b2d6662490734226206c15b6ee077039e5c Mon Sep 17 00:00:00 2001 From: johannbm Date: Fri, 15 Aug 2025 12:00:04 +0200 Subject: [PATCH 07/12] Revert "wip" This reverts commit 2670981a6606ec3f8edc9d97cf7e64cbc8018167. --- .tool-versions | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.tool-versions b/.tool-versions index b22f1ab43a8..c0c2dab1fe0 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1 @@ -nodejs 22.17.1 -yarn 1.22.22 +nodejs 22.17.0 From d95e5805733a15742e11bb53732d6f8a4e8ab333 Mon Sep 17 00:00:00 2001 From: johannbm Date: Fri, 15 Aug 2025 12:19:08 +0200 Subject: [PATCH 08/12] oppdater generte dtos --- packages/types/src/apiDtoGenerert.ts | 3162 ++++++++++++++++++-------- 1 file changed, 2232 insertions(+), 930 deletions(-) diff --git a/packages/types/src/apiDtoGenerert.ts b/packages/types/src/apiDtoGenerert.ts index d750befff09..a319fbf9bc7 100644 --- a/packages/types/src/apiDtoGenerert.ts +++ b/packages/types/src/apiDtoGenerert.ts @@ -649,237 +649,277 @@ export type ProsessTaskGruppeIdDto = { gruppe?: string; }; -export type BekreftedeAksjonspunkterDto = { - behandlingUuid: string; - behandlingVersjon: number; - bekreftedeAksjonspunktDtoer?: Array; -}; - -export type BekreftetAksjonspunktDto = { - begrunnelse?: string; -}; - -export type OverstyringAksjonspunktDto = { +export type AksjonspunktGodkjenningDto = { + godkjent?: boolean; begrunnelse?: string; + aksjonspunktKode?: string; + arsaker: Array< + 'FEIL_FAKTA' | 'FEIL_LOV' | 'SKJØNN' | 'UTREDNING' | 'SAKSFLYT' | 'BEGRUNNELSE' | '-' | 'ANNET' | 'FEIL_REGEL' + >; }; -export type OverstyrteAksjonspunkterDto = { - behandlingUuid: string; - behandlingVersjon: number; - overstyrteAksjonspunktDtoer?: Array; +export type AktivitetskravGrunnlagArbeid = { + orgNummer?: string; + stillingsprosent?: number; + permisjon?: Permisjon; }; -export type AnkeVurderingResultatDto = { - ankeVurdering?: - | 'ANKE_STADFESTE_YTELSESVEDTAK' - | 'ANKE_HJEMSENDE_UTEN_OPPHEV' - | 'ANKE_OPPHEVE_OG_HJEMSENDE' - | 'ANKE_OMGJOER' - | 'ANKE_AVVIS' - | '-'; - begrunnelse?: string; - fritekstTilBrev?: string; - ankeOmgjoerArsak?: 'NYE_OPPLYSNINGER' | 'ULIK_REGELVERKSTOLKNING' | 'ULIK_VURDERING' | 'PROSESSUELL_FEIL' | '-'; - ankeVurderingOmgjoer?: 'ANKE_TIL_GUNST' | 'ANKE_DELVIS_OMGJOERING_TIL_GUNST' | 'ANKE_TIL_UGUNST' | '-'; - erAnkerIkkePart?: boolean; - erFristIkkeOverholdt?: boolean; - erIkkeKonkret?: boolean; - erIkkeSignert?: boolean; - erSubsidiartRealitetsbehandles?: boolean; - erMerknaderMottatt?: boolean; - merknadKommentar?: string; - påAnketKlageBehandlingUuid?: string; - trygderettVurdering?: - | 'ANKE_STADFESTE_YTELSESVEDTAK' - | 'ANKE_HJEMSENDE_UTEN_OPPHEV' - | 'ANKE_OPPHEVE_OG_HJEMSENDE' - | 'ANKE_OMGJOER' - | 'ANKE_AVVIS' +export type AndreYtelserDto = { + ytelseType?: + | 'ETTERLØNN_SLUTTPAKKE' + | 'FORENKLET_OPPGJØRSORDNING' + | 'FRILANSER' + | 'FRILANSER_OPPDRAGSTAKER' + | 'LØNN_UNDER_UTDANNING' + | 'MARITIMT_ARBEIDSFORHOLD' + | 'MILITÆR_ELLER_SIVILTJENESTE' + | 'ORDINÆRT_ARBEIDSFORHOLD' + | 'PENSJON_OG_ANDRE_TYPER_YTELSER_UTEN_ANSETTELSESFORHOLD' + | 'NÆRING' + | 'UTENLANDSK_ARBEIDSFORHOLD' + | 'VENTELØNN_VARTPENGER' + | 'VANLIG' | '-'; - trygderettOmgjoerArsak?: 'NYE_OPPLYSNINGER' | 'ULIK_REGELVERKSTOLKNING' | 'ULIK_VURDERING' | 'PROSESSUELL_FEIL' | '-'; - trygderettVurderingOmgjoer?: 'ANKE_TIL_GUNST' | 'ANKE_DELVIS_OMGJOERING_TIL_GUNST' | 'ANKE_TIL_UGUNST' | '-'; - sendtTilTrygderettenDato?: string; -}; - -export type AnkebehandlingDto = { - ankeVurderingResultat?: AnkeVurderingResultatDto; - underBehandlingKabal?: boolean; - underBehandlingKabalTrygderett?: boolean; - behandletAvKabal?: boolean; -}; - -export type Beløp = { - verdi?: number; - indexKey?: string; + periodeFom?: string; + periodeTom?: string; }; -export type DatoIntervallEntitet = { - fomDato?: string; - tomDato?: string; +export type AnnenForelderDto = { + foedselsnummer?: string; + kanIkkeOppgiAnnenForelder?: boolean; + kanIkkeOppgiBegrunnelse?: KanIkkeOppgiBegrunnelse; + sokerHarAleneomsorg?: boolean; + denAndreForelderenHarRettPaForeldrepenger?: boolean; + morMottarUføretrygd?: boolean; + annenForelderRettEØS?: boolean; }; -export type InntektsmeldingDto = { +export type ArbeidsforholdDto = { arbeidsgiverReferanse?: string; - arbeidsgiver?: string; - arbeidsgiverOrgnr?: string; - arbeidsgiverStartdato?: string; - innsendingstidspunkt?: string; - utsettelsePerioder?: Array; - graderingPerioder?: Array; - getRefusjonBeløpPerMnd?: Beløp; + arbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; }; -export type NaturalYtelse = { - periode?: DatoIntervallEntitet; - beloepPerMnd?: Beløp; - type?: - | 'ELEKTRISK_KOMMUNIKASJON' - | 'AKSJER_UNDERKURS' - | 'LOSJI' - | 'KOST_DOEGN' - | 'BESOEKSREISER_HJEM' - | 'KOSTBESPARELSE_HJEM' - | 'RENTEFORDEL_LAAN' - | 'BIL' - | 'KOST_DAGER' - | 'BOLIG' - | 'FORSIKRINGER' - | 'FRI_TRANSPORT' - | 'OPSJONER' - | 'TILSKUDD_BARNEHAGE' - | 'ANNET' - | 'BEDRIFTSBARNEHAGE' - | 'YRKESBIL_KILOMETER' - | 'YRKESBIL_LISTEPRIS' - | 'UTENLANDSK_PENSJONSORDNING' - | '-'; +export type Arbeidsgiver = { + identifikator?: string; + erVirksomhet?: boolean; + aktørId?: string; + orgnr?: string; indexKey?: string; }; -export type Refusjon = { - refusjonsbeløpMnd?: number; - fomDato?: string; -}; - -export type ArbeidOgInntektsmeldingDto = { - inntektsmeldinger?: Array; - arbeidsforhold?: Array; - inntekter?: Array; - skjæringstidspunkt?: string; +export type AvklarAleneomsorgVurderingDto = { + aleneomsorg: boolean; + annenforelderHarRett?: boolean; + annenForelderHarRettEØS?: boolean; + annenforelderMottarUføretrygd?: boolean; + begrunnelse?: string; }; -export type ArbeidsforholdDto = { - arbeidsgiverReferanse?: string; - arbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; +export type AvklarAnnenforelderHarRettDto = { + annenforelderHarRett: boolean; + annenForelderHarRettEØS?: boolean; + annenforelderMottarUføretrygd?: boolean; + begrunnelse?: string; }; -export type InntektDto = { - arbeidsgiverIdent?: string; - inntekter?: Array; +export type AvklarDekningsgradDto = { + dekningsgrad?: number; + begrunnelse?: string; }; -export type InntektspostDto = { - beløp?: number; - fom?: string; - tom?: string; - type?: '-' | 'LØNN' | 'YTELSE' | 'VANLIG' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'NÆRING_FISKE_FANGST_FAMBARNEHAGE'; +export type BekreftSokersOpplysningspliktManuDto = { + begrunnelse?: string; + erVilkarOk?: boolean; + inntektsmeldingerSomIkkeKommer?: Array; }; -export type PermisjonOgMangelDto = { - permisjonFom?: string; - permisjonTom?: string; - type?: - | '-' - | 'PERMISJON' - | 'UTDANNINGSPERMISJON' - | 'UTDANNINGSPERMISJON_IKKE_LOVFESTET' - | 'UTDANNINGSPERMISJON_LOVFESTET' - | 'VELFERDSPERMISJON' - | 'ANNEN_PERMISJON_IKKE_LOVFESTET' - | 'ANNEN_PERMISJON_LOVFESTET' - | 'PERMISJON_MED_FORELDREPENGER' - | 'PERMITTERING' - | 'PERMISJON_VED_MILITÆRTJENESTE'; - årsak?: - | 'PERMISJON' - | 'MANGLENDE_INNTEKTSMELDING' - | 'INNTEKTSMELDING_UTEN_ARBEIDSFORHOLD' - | 'ENDRING_I_ARBEIDSFORHOLDS_ID' - | 'PERMISJON_UTEN_SLUTTDATO'; - permisjonStatus?: '-' | 'BRUK_PERMISJON' | 'IKKE_BRUK_PERMISJON' | 'UGYLDIGE_PERIODER'; +export type BekreftSvangerskapspengerDto = { + termindato?: string; + fødselsdato?: string; + bekreftetSvpArbeidsforholdList?: Array; + begrunnelse?: string; }; -export type ManueltArbeidsforholdDto = { - behandlingUuid: string; +export type BekreftSvangerskapspengervilkårDto = { begrunnelse?: string; - arbeidsgiverIdent: string; - internArbeidsforholdRef?: string; - arbeidsgiverNavn?: string; - fom: string; - tom?: string; - stillingsprosent: number; - vurdering: - | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_INNTEKTSMELDING' - | 'FORTSETT_UTEN_INNTEKTSMELDING' - | 'MELDING_TIL_ARBEIDSGIVER_NAV_NO' - | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_ARBEIDSFORHOLD' - | 'IKKE_OPPRETT_BASERT_PÅ_INNTEKTSMELDING' - | 'OPPRETT_BASERT_PÅ_INNTEKTSMELDING' - | 'MANUELT_OPPRETTET_AV_SAKSBEHANDLER' - | 'FJERN_FRA_BEHANDLINGEN' - | 'SLÅTT_SAMMEN_MED_ANNET' - | 'BRUK_MED_OVERSTYRT_PERIODE' - | 'INNTEKT_IKKE_MED_I_BG' - | 'BRUK' - | 'NYTT_ARBEIDSFORHOLD' - | '-'; - behandlingVersjon: number; + avslagskode?: string; }; -export type ManglendeOpplysningerVurderingDto = { +export type BekreftedeAksjonspunkterDto = { behandlingUuid: string; - vurdering?: - | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_INNTEKTSMELDING' - | 'FORTSETT_UTEN_INNTEKTSMELDING' - | 'MELDING_TIL_ARBEIDSGIVER_NAV_NO' - | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_ARBEIDSFORHOLD' - | 'IKKE_OPPRETT_BASERT_PÅ_INNTEKTSMELDING' - | 'OPPRETT_BASERT_PÅ_INNTEKTSMELDING' - | 'MANUELT_OPPRETTET_AV_SAKSBEHANDLER' - | 'FJERN_FRA_BEHANDLINGEN' - | 'SLÅTT_SAMMEN_MED_ANNET' - | 'BRUK_MED_OVERSTYRT_PERIODE' - | 'INNTEKT_IKKE_MED_I_BG' - | 'BRUK' - | 'NYTT_ARBEIDSFORHOLD' - | '-'; - begrunnelse?: string; - arbeidsgiverIdent: string; - internArbeidsforholdRef?: string; behandlingVersjon: number; + bekreftedeAksjonspunktDtoer?: Array; }; -export type BehandlingIdVersjonDto = { - behandlingUuid: string; - behandlingVersjon: number; +export type BekreftetAksjonspunktDto = ( + | ({ + '@type': 'FatterVedtakAksjonspunktDto'; + } & FatterVedtakAksjonspunktDto) + | ({ + '@type': 'AvklarDekningsgradDto'; + } & AvklarDekningsgradDto) + | ({ + '@type': 'VurderInnsynDto'; + } & VurderInnsynDto) + | ({ + '@type': 'KlageFormkravAksjonspunktDto'; + } & KlageFormkravAksjonspunktDto) + | ({ + '@type': 'KlageVurderingResultatAksjonspunktDto'; + } & KlageVurderingResultatAksjonspunktDto) + | ({ + '@type': 'VurderForutgåendeMedlemskapDto'; + } & VurderForutgåendeMedlemskapDto) + | ({ + '@type': 'VurderMedlemskapDto'; + } & VurderMedlemskapDto) + | ({ + '@type': 'KontrollerRevurderingsBehandlingDto'; + } & KontrollerRevurderingsBehandlingDto) + | ({ + '@type': 'VarselRevurderingManuellDto'; + } & VarselRevurderingManuellDto) + | ({ + '@type': 'VurderFaresignalerDto'; + } & VurderFaresignalerDto) + | ({ + '@type': 'BekreftSvangerskapspengerDto'; + } & BekreftSvangerskapspengerDto) + | ({ + '@type': 'BekreftSvangerskapspengervilkårDto'; + } & BekreftSvangerskapspengervilkårDto) + | ({ + '@type': 'BekreftSokersOpplysningspliktManuDto'; + } & BekreftSokersOpplysningspliktManuDto) + | ({ + '@type': 'SoknadsfristAksjonspunktDto'; + } & SoknadsfristAksjonspunktDto) + | ({ + '@type': 'VurderSøknadsfristDto'; + } & VurderSøknadsfristDto) + | ({ + '@type': 'KontrollerStorEtterbetalingSøkerDto'; + } & KontrollerStorEtterbetalingSøkerDto) + | ({ + '@type': 'VurderFeilutbetalingDto'; + } & VurderFeilutbetalingDto) + | ({ + '@type': 'VurderUttakDokumentasjonDto'; + } & VurderUttakDokumentasjonDto) + | ({ + '@type': 'AvklarAleneomsorgVurderingDto'; + } & AvklarAleneomsorgVurderingDto) + | ({ + '@type': 'AvklarAnnenforelderHarRettDto'; + } & AvklarAnnenforelderHarRettDto) + | ({ + '@type': 'FastsetteUttakKontrollerAnnenpartEØSDto'; + } & FastsetteUttakKontrollerAnnenpartEøsDto) + | ({ + '@type': 'FastsetteUttakKontrollerOpplysningerOmDødDto'; + } & FastsetteUttakKontrollerOpplysningerOmDødDto) + | ({ + '@type': 'FastsetteUttakKontrollerOpplysningerOmSøknadsfristDto'; + } & FastsetteUttakKontrollerOpplysningerOmSøknadsfristDto) + | ({ + '@type': 'FastsetteUttakKontrollerRealitetsBehandlingEllerKlageDto'; + } & FastsetteUttakKontrollerRealitetsBehandlingEllerKlageDto) + | ({ + '@type': 'FastsetteUttakPerioderDto'; + } & FastsetteUttakPerioderDto) + | ({ + '@type': 'FastsetteUttakStortingsrepresentantDto'; + } & FastsetteUttakStortingsrepresentantDto) + | ({ + '@type': 'GraderingAktivitetUtenBGDto'; + } & GraderingAktivitetUtenBgDto) + | ({ + '@type': 'GraderingUkjentAktivitetDto'; + } & GraderingUkjentAktivitetDto) + | ({ + '@type': 'IngenPerioderDto'; + } & IngenPerioderDto) + | ({ + '@type': 'ManueltSattStartdatoDto'; + } & ManueltSattStartdatoDto) + | ({ + '@type': 'ForeslaVedtakManueltAksjonspuntDto'; + } & ForeslaVedtakManueltAksjonspuntDto) + | ({ + '@type': 'ForeslåVedtakAksjonspunktDto'; + } & ForeslåVedtakAksjonspunktDto) + | ({ + '@type': 'VurdereAnnenYteleseFørVedtakDto'; + } & VurdereAnnenYteleseFørVedtakDto) + | ({ + '@type': 'VurdereDokumentFørVedtakDto'; + } & VurdereDokumentFørVedtakDto) + | ({ + '@type': 'VurdereInntektsmeldingFørVedtakDto'; + } & VurdereInntektsmeldingFørVedtakDto) + | ({ + '@type': 'ManuellRegistreringEngangsstonadDto'; + } & ManuellRegistreringEngangsstonadDto) + | ({ + '@type': 'ManuellRegistreringEndringsøknadDto'; + } & ManuellRegistreringEndringsøknadDto) + | ({ + '@type': 'ManuellRegistreringForeldrepengerDto'; + } & ManuellRegistreringForeldrepengerDto) + | ({ + '@type': 'ManuellRegistreringSvangerskapspengerDto'; + } & ManuellRegistreringSvangerskapspengerDto) +) & { + begrunnelse?: string; + '@type': string; }; -export type GraderingPeriodeDto = { - fom?: string; - tom?: string; - arbeidsprosent?: number; +export type DokumentasjonVurderingBehovDto = { + fom: string; + tom: string; + type: 'UTSETTELSE' | 'OVERFØRING' | 'UTTAK'; + årsak: + | 'INNLEGGELSE_SØKER' + | 'INNLEGGELSE_BARN' + | 'HV_ØVELSE' + | 'NAV_TILTAK' + | 'SYKDOM_SØKER' + | 'INNLEGGELSE_ANNEN_FORELDER' + | 'SYKDOM_ANNEN_FORELDER' + | 'BARE_SØKER_RETT' + | 'ALENEOMSORG' + | 'AKTIVITETSKRAV_ARBEID' + | 'AKTIVITETSKRAV_UTDANNING' + | 'AKTIVITETSKRAV_KVALPROG' + | 'AKTIVITETSKRAV_INTROPROG' + | 'AKTIVITETSKRAV_TRENGER_HJELP' + | 'AKTIVITETSKRAV_INNLAGT' + | 'AKTIVITETSKRAV_ARBEID_OG_UTDANNING' + | 'AKTIVITETSKRAV_IKKE_OPPGITT' + | 'TIDLIG_OPPSTART_FAR'; + vurdering?: 'GODKJENT' | 'GODKJENT_AUTOMATISK' | 'IKKE_GODKJENT' | 'IKKE_DOKUMENTERT'; + morsStillingsprosent?: number; + aktivitetskravGrunnlag?: Array; }; -export type InntektsmeldingerDto = { - inntektsmeldinger?: Array; +export type EgenVirksomhetDto = { + harArbeidetIEgenVirksomhet?: boolean; + virksomheter?: Array; }; -export type UtsettelsePeriodeDto = { - fom?: string; - tom?: string; - utsettelseArsak?: - | 'ARBEID' - | 'LOVBESTEMT_FERIE' +export type FaktaUttakPeriodeDto = { + fom: string; + tom: string; + uttakPeriodeType?: + | 'FELLESPERIODE' + | 'MØDREKVOTE' + | 'FEDREKVOTE' + | 'FORELDREPENGER' + | 'FORELDREPENGER_FØR_FØDSEL' + | '-'; + utsettelseÅrsak?: + | 'ARBEID' + | 'LOVBESTEMT_FERIE' | 'SYKDOM' | 'INSTITUSJONSOPPHOLD_SØKER' | 'INSTITUSJONSOPPHOLD_BARNET' @@ -887,200 +927,1455 @@ export type UtsettelsePeriodeDto = { | 'NAV_TILTAK' | 'FRI' | '-'; + overføringÅrsak?: + | 'INSTITUSJONSOPPHOLD_ANNEN_FORELDER' + | 'SYKDOM_ANNEN_FORELDER' + | 'IKKE_RETT_ANNEN_FORELDER' + | 'ALENEOMSORG' + | '-'; + oppholdÅrsak?: + | '-' + | 'UTTAK_MØDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FEDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FELLESP_ANNEN_FORELDER' + | 'UTTAK_FORELDREPENGER_ANNEN_FORELDER'; + arbeidstidsprosent?: number; + arbeidsforhold?: ArbeidsforholdDto; + samtidigUttaksprosent?: number; + flerbarnsdager?: boolean; + morsAktivitet?: + | '-' + | 'ARBEID' + | 'UTDANNING' + | 'KVALPROG' + | 'INTROPROG' + | 'TRENGER_HJELP' + | 'INNLAGT' + | 'ARBEID_OG_UTDANNING' + | 'UFØRE' + | 'IKKE_OPPGITT'; + periodeKilde?: 'SØKNAD' | 'TIDLIGERE_VEDTAK' | 'ANDRE_NAV_VEDTAK' | 'SAKSBEHANDLER'; + begrunnelse?: string; }; -export type ArbeidsgiverOpplysningerDto = { - referanse?: string; - identifikator?: string; - navn?: string; - fødselsdato?: string; - erPrivatPerson?: boolean; +export type FastsetteUttakKontrollerAnnenpartEøsDto = { + perioder: Array; + begrunnelse?: string; }; -export type ArbeidsgiverOversiktDto = { - arbeidsgivere?: { - [key: string]: ArbeidsgiverOpplysningerDto; - }; +export type FastsetteUttakKontrollerOpplysningerOmDødDto = { + perioder: Array; + begrunnelse?: string; }; -export type IayYtelseDto = { - relatertTilgrensendeYtelserForSoker?: Array; - relatertTilgrensendeYtelserForAnnenForelder?: Array; - innvilgetRelatertTilgrensendeYtelserForAnnenForelder?: Array; +export type FastsetteUttakKontrollerOpplysningerOmSøknadsfristDto = { + perioder: Array; + begrunnelse?: string; }; -export type RelaterteYtelserDto = { - relatertYtelseNavn?: string; - tilgrensendeYtelserListe?: Array; +export type FastsetteUttakKontrollerRealitetsBehandlingEllerKlageDto = { + perioder: Array; + begrunnelse?: string; }; -export type TilgrensendeYtelserDto = { - periodeFraDato?: string; - periodeTilDato?: string; - statusNavn?: string; - saksNummer?: string; +export type FastsetteUttakPerioderDto = { + perioder: Array; + begrunnelse?: string; }; -export type ATogFliSammeOrganisasjonDto = { - andelsnr: number; - arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; - inntektskategori: - | 'ARBEIDSTAKER' - | 'FRILANSER' - | 'SELVSTENDIG_NÆRINGSDRIVENDE' - | 'DAGPENGER' - | 'ARBEIDSAVKLARINGSPENGER' - | 'SJØMANN' - | 'DAGMAMMA' - | 'JORDBRUKER' - | 'FISKER' - | 'ARBEIDSTAKER_UTEN_FERIEPENGER' - | '-'; - aktivitetStatus: - | 'MIDL_INAKTIV' - | 'AAP' - | 'AT' - | 'DP' - | 'SP_AV_DP' - | 'PSB_AV_DP' - | 'FL' - | 'MS' - | 'SN' - | 'AT_FL' - | 'AT_SN' - | 'FL_SN' - | 'AT_FL_SN' - | 'BA' - | 'KUN_YTELSE' - | 'TY' - | 'VENTELØNN_VARTPENGER' - | '-'; - kilde: - | 'SAKSBEHANDLER_KOFAKBER' - | 'PROSESS_BESTEBEREGNING' - | 'SAKSBEHANDLER_FORDELING' - | 'PROSESS_PERIODISERING' - | 'PROSESS_OMFORDELING' - | 'PROSESS_START' - | 'PROSESS_PERIODISERING_TILKOMMET_INNTEKT'; - lagtTilAvSaksbehandler?: boolean; - fastsattAvSaksbehandler?: boolean; - andelIArbeid: Array; - inntektPrMnd?: number; +export type FastsetteUttakStortingsrepresentantDto = { + perioder: Array; + begrunnelse?: string; }; -export type AktivitetTomDatoMappingDto = { - tom: string; - aktiviteter: Array; +export type FatterVedtakAksjonspunktDto = { + aksjonspunktGodkjenningDtos?: Array; + begrunnelse?: string; }; -export type AndelForFaktaOmBeregningDto = { - belopReadOnly?: number; - fastsattBelop?: number; - inntektskategori?: - | 'ARBEIDSTAKER' - | 'FRILANSER' - | 'SELVSTENDIG_NÆRINGSDRIVENDE' - | 'DAGPENGER' - | 'ARBEIDSAVKLARINGSPENGER' - | 'SJØMANN' - | 'DAGMAMMA' - | 'JORDBRUKER' - | 'FISKER' - | 'ARBEIDSTAKER_UTEN_FERIEPENGER' - | '-'; - aktivitetStatus?: - | 'MIDL_INAKTIV' - | 'AAP' - | 'AT' - | 'DP' - | 'SP_AV_DP' - | 'PSB_AV_DP' - | 'FL' - | 'MS' - | 'SN' - | 'AT_FL' - | 'AT_SN' - | 'FL_SN' - | 'AT_FL_SN' - | 'BA' - | 'KUN_YTELSE' - | 'TY' - | 'VENTELØNN_VARTPENGER' - | '-'; - refusjonskrav?: number; - arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; - andelsnr?: number; - skalKunneEndreAktivitet?: boolean; - lagtTilAvSaksbehandler?: boolean; +export type ForeslaVedtakManueltAksjonspuntDto = { + skalBrukeOverstyrendeFritekstBrev?: boolean; + begrunnelse?: string; }; -export type AndelMedBeløpDto = { - andelsnr: number; - arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; - inntektskategori: - | 'ARBEIDSTAKER' - | 'FRILANSER' - | 'SELVSTENDIG_NÆRINGSDRIVENDE' - | 'DAGPENGER' - | 'ARBEIDSAVKLARINGSPENGER' - | 'SJØMANN' - | 'DAGMAMMA' - | 'JORDBRUKER' - | 'FISKER' - | 'ARBEIDSTAKER_UTEN_FERIEPENGER' - | '-'; - aktivitetStatus: - | 'MIDL_INAKTIV' - | 'AAP' - | 'AT' - | 'DP' - | 'SP_AV_DP' - | 'PSB_AV_DP' - | 'FL' - | 'MS' - | 'SN' - | 'AT_FL' - | 'AT_SN' - | 'FL_SN' - | 'AT_FL_SN' - | 'BA' - | 'KUN_YTELSE' - | 'TY' - | 'VENTELØNN_VARTPENGER' +export type ForeslåVedtakAksjonspunktDto = { + skalBrukeOverstyrendeFritekstBrev?: boolean; + begrunnelse?: string; +}; + +export type FrilansDto = { + harSokerPeriodeMedFrilans?: boolean; + perioder?: Array; + erNyoppstartetFrilanser?: boolean; + harInntektFraFosterhjem?: boolean; + harHattOppdragForFamilie?: boolean; + oppdragPerioder?: Array; +}; + +export type Frilansperiode = { + periodeFom: string; + periodeTom: string; +}; + +export type GraderingAktivitetUtenBgDto = { + perioder: Array; + begrunnelse?: string; +}; + +export type GraderingDto = { + periodeFom: string; + periodeTom: string; + arbeidsgiverIdentifikator?: string; + periodeForGradering: + | 'FELLESPERIODE' + | 'MØDREKVOTE' + | 'FEDREKVOTE' + | 'FORELDREPENGER' + | 'FORELDREPENGER_FØR_FØDSEL' | '-'; - kilde: - | 'SAKSBEHANDLER_KOFAKBER' - | 'PROSESS_BESTEBEREGNING' - | 'SAKSBEHANDLER_FORDELING' - | 'PROSESS_PERIODISERING' - | 'PROSESS_OMFORDELING' - | 'PROSESS_START' - | 'PROSESS_PERIODISERING_TILKOMMET_INNTEKT'; - lagtTilAvSaksbehandler?: boolean; - fastsattAvSaksbehandler?: boolean; - andelIArbeid: Array; - fastsattBelopPrMnd?: number; + prosentandelArbeid?: number; + skalGraderes?: boolean; + erArbeidstaker?: boolean; + erFrilanser?: boolean; + erSelvstNæringsdrivende?: boolean; + harSamtidigUttak?: boolean; + samtidigUttaksprosent?: number; + flerbarnsdager?: boolean; }; -export type Arbeidsgiver = { - identifikator?: string; +export type GraderingUkjentAktivitetDto = { + perioder: Array; + begrunnelse?: string; +}; + +export type IngenPerioderDto = { + perioder: Array; + begrunnelse?: string; +}; + +export type InntektsmeldingSomIkkeKommerDto = { + organisasjonsnummer?: string; aktørId?: string; - orgnr?: string; + brukerHarSagtAtIkkeKommer?: boolean; +}; + +export type InternArbeidsforholdRef = { + referanse?: string; + uuidreferanse?: string; indexKey?: string; - erVirksomhet?: boolean; }; -export type ArbeidstakerUtenInntektsmeldingAndelDto = { - andelsnr: number; - arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; - inntektskategori: - | 'ARBEIDSTAKER' - | 'FRILANSER' - | 'SELVSTENDIG_NÆRINGSDRIVENDE' - | 'DAGPENGER' - | 'ARBEIDSAVKLARINGSPENGER' - | 'SJØMANN' +export type KanIkkeOppgiBegrunnelse = { + arsak: string; + begrunnelse?: string; + utenlandskFoedselsnummer?: string; + land?: string; +}; + +export type KlageFormkravAksjonspunktDto = { + erKlagerPart?: boolean; + erFristOverholdt?: boolean; + erKonkret?: boolean; + erSignert?: boolean; + erTilbakekreving?: boolean; + fritekstTilBrev?: string; + begrunnelse?: string; + tilbakekrevingInfo?: KlageTilbakekrevingDto; + vedtakBehandlingUuid?: string; +}; + +export type KlageTilbakekrevingDto = { + tilbakekrevingUuid: string; + tilbakekrevingVedtakDato?: string; + tilbakekrevingBehandlingType?: string; +}; + +export type KlageVurderingResultatAksjonspunktDto = { + klageVurdering: + | 'OPPHEVE_YTELSESVEDTAK' + | 'STADFESTE_YTELSESVEDTAK' + | 'MEDHOLD_I_KLAGE' + | 'AVVIS_KLAGE' + | 'HJEMSENDE_UTEN_Å_OPPHEVE' + | '-'; + fritekstTilBrev?: string; + klageMedholdArsak?: 'NYE_OPPLYSNINGER' | 'ULIK_REGELVERKSTOLKNING' | 'ULIK_VURDERING' | 'PROSESSUELL_FEIL' | '-'; + klageVurderingOmgjoer?: 'GUNST_MEDHOLD_I_KLAGE' | 'DELVIS_MEDHOLD_I_KLAGE' | 'UGUNST_MEDHOLD_I_KLAGE' | '-'; + klageHjemmel?: + | '14-02' + | '14-04' + | '14-05' + | '14-06' + | '14-07' + | '14-09' + | '14-10' + | '14-11' + | '14-12' + | '14-13' + | '14-14' + | '14-15' + | '14-16' + | '14-17' + | '8-2' + | '21-3' + | '22-13' + | '22-15' + | '883-5' + | '883-6' + | '-'; + begrunnelse?: string; +}; + +export type KontrollerRevurderingsBehandlingDto = { + begrunnelse?: string; +}; + +export type KontrollerStorEtterbetalingSøkerDto = { + begrunnelse?: string; +}; + +export type ManuellRegistreringEndringsøknadDto = { + tema: 'ADPSJN' | 'OMSRGO' | 'FODSL' | 'TERM' | '-'; + soknadstype: 'ES' | 'FP' | 'SVP' | '-'; + soker: 'MOR' | 'FAR' | 'MEDMOR' | 'ANDRE' | '-'; + rettigheter?: 'ANNEN_FORELDER_DOED' | 'OVERTA_FORELDREANSVARET_ALENE' | 'MANN_ADOPTERER_ALENE'; + oppholdINorge?: boolean; + harTidligereOppholdUtenlands?: boolean; + harFremtidigeOppholdUtenlands?: boolean; + tidligereOppholdUtenlands?: Array; + fremtidigeOppholdUtenlands?: Array; + erBarnetFodt?: boolean; + termindato?: string; + terminbekreftelseDato?: string; + antallBarnFraTerminbekreftelse?: number; + antallBarn?: number; + foedselsDato?: string; + annenForelder?: AnnenForelderDto; + tilleggsopplysninger?: string; + språkkode?: 'NB' | 'NN' | 'EN' | '-'; + kommentarEndring?: string; + registrerVerge?: boolean; + mottattDato?: string; + ufullstendigSoeknad?: boolean; + omsorg?: OmsorgDto; + tidsromPermisjon?: TidsromPermisjonDto; + annenForelderInformert?: boolean; + begrunnelse?: string; +}; + +export type ManuellRegistreringEngangsstonadDto = { + tema: 'ADPSJN' | 'OMSRGO' | 'FODSL' | 'TERM' | '-'; + soknadstype: 'ES' | 'FP' | 'SVP' | '-'; + soker: 'MOR' | 'FAR' | 'MEDMOR' | 'ANDRE' | '-'; + rettigheter?: 'ANNEN_FORELDER_DOED' | 'OVERTA_FORELDREANSVARET_ALENE' | 'MANN_ADOPTERER_ALENE'; + oppholdINorge?: boolean; + harTidligereOppholdUtenlands?: boolean; + harFremtidigeOppholdUtenlands?: boolean; + tidligereOppholdUtenlands?: Array; + fremtidigeOppholdUtenlands?: Array; + erBarnetFodt?: boolean; + termindato?: string; + terminbekreftelseDato?: string; + antallBarnFraTerminbekreftelse?: number; + antallBarn?: number; + foedselsDato?: string; + annenForelder?: AnnenForelderDto; + tilleggsopplysninger?: string; + språkkode?: 'NB' | 'NN' | 'EN' | '-'; + kommentarEndring?: string; + registrerVerge?: boolean; + mottattDato?: string; + ufullstendigSoeknad?: boolean; + omsorg?: OmsorgDto; + begrunnelse?: string; +}; + +export type ManuellRegistreringForeldrepengerDto = { + tema: 'ADPSJN' | 'OMSRGO' | 'FODSL' | 'TERM' | '-'; + soknadstype: 'ES' | 'FP' | 'SVP' | '-'; + soker: 'MOR' | 'FAR' | 'MEDMOR' | 'ANDRE' | '-'; + rettigheter?: 'ANNEN_FORELDER_DOED' | 'OVERTA_FORELDREANSVARET_ALENE' | 'MANN_ADOPTERER_ALENE'; + oppholdINorge?: boolean; + harTidligereOppholdUtenlands?: boolean; + harFremtidigeOppholdUtenlands?: boolean; + tidligereOppholdUtenlands?: Array; + fremtidigeOppholdUtenlands?: Array; + erBarnetFodt?: boolean; + termindato?: string; + terminbekreftelseDato?: string; + antallBarnFraTerminbekreftelse?: number; + antallBarn?: number; + foedselsDato?: string; + annenForelder?: AnnenForelderDto; + tilleggsopplysninger?: string; + språkkode?: 'NB' | 'NN' | 'EN' | '-'; + kommentarEndring?: string; + registrerVerge?: boolean; + mottattDato?: string; + ufullstendigSoeknad?: boolean; + omsorg?: OmsorgDto; + arbeidsforhold?: Array; + andreYtelser?: Array; + egenVirksomhet?: EgenVirksomhetDto; + frilans?: FrilansDto; + dekningsgrad?: '100_PROSENT' | '80_PROSENT'; + tidsromPermisjon?: TidsromPermisjonDto; + annenForelderInformert?: boolean; + begrunnelse?: string; +}; + +export type ManuellRegistreringSvangerskapspengerDto = { + tema: 'ADPSJN' | 'OMSRGO' | 'FODSL' | 'TERM' | '-'; + soknadstype: 'ES' | 'FP' | 'SVP' | '-'; + soker: 'MOR' | 'FAR' | 'MEDMOR' | 'ANDRE' | '-'; + rettigheter?: 'ANNEN_FORELDER_DOED' | 'OVERTA_FORELDREANSVARET_ALENE' | 'MANN_ADOPTERER_ALENE'; + oppholdINorge?: boolean; + harTidligereOppholdUtenlands?: boolean; + harFremtidigeOppholdUtenlands?: boolean; + tidligereOppholdUtenlands?: Array; + fremtidigeOppholdUtenlands?: Array; + erBarnetFodt?: boolean; + termindato?: string; + terminbekreftelseDato?: string; + antallBarnFraTerminbekreftelse?: number; + antallBarn?: number; + foedselsDato?: string; + annenForelder?: AnnenForelderDto; + tilleggsopplysninger?: string; + språkkode?: 'NB' | 'NN' | 'EN' | '-'; + kommentarEndring?: string; + registrerVerge?: boolean; + mottattDato?: string; + ufullstendigSoeknad?: boolean; + omsorg?: OmsorgDto; + arbeidsforhold?: Array; + andreYtelser?: Array; + egenVirksomhet?: EgenVirksomhetDto; + frilans?: FrilansDto; + tilretteleggingArbeidsforhold?: Array; + begrunnelse?: string; +}; + +export type ManueltSattStartdatoDto = { + perioder: Array; + begrunnelse?: string; +}; + +export type NaringsvirksomhetTypeDto = { + ANNEN?: boolean; + FISKE?: boolean; + DAGMAMMA?: boolean; + JORDBRUK_SKOGBRUK?: boolean; + typeFiske?: string; +}; + +export type OmsorgDto = { + antallBarn?: number; + foedselsDato?: Array; + omsorgsovertakelsesdato?: string; + ankomstdato?: string; + erEktefellesBarn?: boolean; +}; + +export type Oppdragperiode = { + oppdragsgiver?: string; + fomDato?: string; + tomDato?: string; +}; + +export type OppholdDto = { + årsak: + | '-' + | 'UTTAK_MØDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FEDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FELLESP_ANNEN_FORELDER' + | 'UTTAK_FORELDREPENGER_ANNEN_FORELDER'; + periodeFom: string; + periodeTom: string; +}; + +export type OverføringsperiodeDto = { + periodeFom: string; + periodeTom: string; + overforingArsak: + | 'INSTITUSJONSOPPHOLD_ANNEN_FORELDER' + | 'SYKDOM_ANNEN_FORELDER' + | 'IKKE_RETT_ANNEN_FORELDER' + | 'ALENEOMSORG' + | '-'; +}; + +export type Permisjon = { + prosent?: number; + type?: '-' | 'UTDANNING' | 'FORELDREPENGER' | 'PERMITTERING' | 'ANNEN_PERMISJON'; +}; + +export type PermisjonPeriodeDto = { + periodeFom: string; + periodeTom: string; + periodeType?: 'FELLESPERIODE' | 'MØDREKVOTE' | 'FEDREKVOTE' | 'FORELDREPENGER' | 'FORELDREPENGER_FØR_FØDSEL' | '-'; + morsAktivitet?: + | '-' + | 'ARBEID' + | 'UTDANNING' + | 'KVALPROG' + | 'INTROPROG' + | 'TRENGER_HJELP' + | 'INNLAGT' + | 'ARBEID_OG_UTDANNING' + | 'UFØRE' + | 'IKKE_OPPGITT'; + harSamtidigUttak?: boolean; + samtidigUttaksprosent?: number; + flerbarnsdager?: boolean; +}; + +export type SoknadsfristAksjonspunktDto = { + begrunnelse?: string; + erVilkarOk: boolean; +}; + +export type SvpArbeidsforholdDto = { + tilretteleggingId?: number; + tilretteleggingBehovFom?: string; + tilretteleggingDatoer?: Array; + uttakArbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; + arbeidsgiverReferanse?: string; + opplysningerOmRisiko?: string; + opplysningerOmTilrettelegging?: string; + kopiertFraTidligereBehandling?: boolean; + mottattTidspunkt?: string; + internArbeidsforholdReferanse?: string; + eksternArbeidsforholdReferanse?: string; + skalBrukes?: boolean; + kanTilrettelegges?: boolean; + stillingsprosentStartTilrettelegging?: number; + velferdspermisjoner?: Array; + avklarteOppholdPerioder?: Array; + begrunnelse?: string; +}; + +export type SvpAvklartOppholdPeriodeDto = { + fom: string; + tom: string; + oppholdÅrsak: 'SYKEPENGER' | 'FERIE'; + oppholdKilde?: 'SØKNAD' | 'INNTEKTSMELDING' | 'REGISTRERT_AV_SAKSBEHANDLER'; + forVisning?: boolean; +}; + +export type SvpTilretteleggingArbeidsforholdDto = ( + | SvpTilretteleggingFrilanserDto + | SvpTilretteleggingPrivatArbeidsgiverDto + | SvpTilretteleggingSelvstendigNæringsdrivendeDto + | SvpTilretteleggingVirksomhetDto +) & { + behovsdato?: string; + tilrettelegginger?: Array; +}; + +export type SvpTilretteleggingDatoDto = { + fom?: string; + type?: 'HEL_TILRETTELEGGING' | 'DELVIS_TILRETTELEGGING' | 'INGEN_TILRETTELEGGING'; + stillingsprosent?: number; + overstyrtUtbetalingsgrad?: number; + kilde?: 'ENDRET_AV_SAKSBEHANDLER' | 'REGISTRERT_AV_SAKSBEHANDLER' | 'TIDLIGERE_VEDTAK' | 'SØKNAD'; + mottattDato?: string; +}; + +export type SvpTilretteleggingDto = { + termindato?: string; + fødselsdato?: string; + arbeidsforholdListe?: Array; + saksbehandlet?: boolean; +}; + +export type SvpTilretteleggingFrilanserDto = { + behovsdato?: string; + tilrettelegginger?: Array; +}; + +export type SvpTilretteleggingPrivatArbeidsgiverDto = { + behovsdato?: string; + tilrettelegginger?: Array; + arbeidsgiverIdentifikator?: string; +}; + +export type SvpTilretteleggingSelvstendigNæringsdrivendeDto = { + behovsdato?: string; + tilrettelegginger?: Array; +}; + +export type SvpTilretteleggingVirksomhetDto = { + behovsdato?: string; + tilrettelegginger?: Array; + organisasjonsnummer?: string; +}; + +export type TidsromPermisjonDto = { + overforingsperioder?: Array; + permisjonsPerioder?: Array; + graderingPeriode?: Array; + utsettelsePeriode?: Array; + oppholdPerioder?: Array; +}; + +export type Trekkdager = { + [key: string]: unknown; +}; + +export type UtenlandsoppholdDto = { + land: string; + periodeFom: string; + periodeTom: string; +}; + +export type UtsettelseDto = { + periodeFom: string; + periodeTom: string; + periodeForUtsettelse?: + | 'FELLESPERIODE' + | 'MØDREKVOTE' + | 'FEDREKVOTE' + | 'FORELDREPENGER' + | 'FORELDREPENGER_FØR_FØDSEL' + | '-'; + arsakForUtsettelse?: + | 'ARBEID' + | 'LOVBESTEMT_FERIE' + | 'SYKDOM' + | 'INSTITUSJONSOPPHOLD_SØKER' + | 'INSTITUSJONSOPPHOLD_BARNET' + | 'HV_OVELSE' + | 'NAV_TILTAK' + | 'FRI' + | '-'; + morsAktivitet?: + | '-' + | 'ARBEID' + | 'UTDANNING' + | 'KVALPROG' + | 'INTROPROG' + | 'TRENGER_HJELP' + | 'INNLAGT' + | 'ARBEID_OG_UTDANNING' + | 'UFØRE' + | 'IKKE_OPPGITT'; +}; + +export type UttakResultatPeriodeAktivitetLagreDto = { + stønadskontoType?: + | 'FELLESPERIODE' + | 'MØDREKVOTE' + | 'FEDREKVOTE' + | 'FORELDREPENGER' + | 'FORELDREPENGER_FØR_FØDSEL' + | '-'; + trekkdagerDesimaler: Trekkdager; + arbeidsgiver?: Arbeidsgiver; + arbeidsgiverReferanse?: string; + arbeidsforholdId?: InternArbeidsforholdRef; + utbetalingsgrad?: number; + uttakArbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; +}; + +export type UttakResultatPeriodeLagreDto = { + fom: string; + tom: string; + aktiviteter: Array; + begrunnelse?: string; + periodeResultatType: 'INNVILGET' | 'AVSLÅTT' | 'MANUELL_BEHANDLING'; + periodeResultatÅrsak: + | '-' + | '2002' + | '2003' + | '2004' + | '2005' + | '2006' + | '2007' + | '2010' + | '2011' + | '2012' + | '2013' + | '2014' + | '2015' + | '2016' + | '2017' + | '2018' + | '2019' + | '2020' + | '2021' + | '2022' + | '2023' + | '2024' + | '2025' + | '2026' + | '2027' + | '2028' + | '2030' + | '2031' + | '2032' + | '2033' + | '2034' + | '2035' + | '2036' + | '2037' + | '2038' + | '2039' + | '4002' + | '4003' + | '4005' + | '4007' + | '4008' + | '4012' + | '4013' + | '4020' + | '4022' + | '4023' + | '4025' + | '4030' + | '4031' + | '4032' + | '4033' + | '4034' + | '4035' + | '4037' + | '4038' + | '4039' + | '4040' + | '4041' + | '4050' + | '4051' + | '4052' + | '4053' + | '4054' + | '4055' + | '4056' + | '4057' + | '4058' + | '4059' + | '4060' + | '4061' + | '4062' + | '4063' + | '4064' + | '4065' + | '4066' + | '4067' + | '4068' + | '4069' + | '4070' + | '4071' + | '4072' + | '4073' + | '4074' + | '4075' + | '4076' + | '4077' + | '4081' + | '4082' + | '4084' + | '4085' + | '4086' + | '4087' + | '4088' + | '4089' + | '4092' + | '4093' + | '4095' + | '4096' + | '4097' + | '4098' + | '4099' + | '4100' + | '4102' + | '4103' + | '4104' + | '4105' + | '4106' + | '4107' + | '4110' + | '4111' + | '4112' + | '4115' + | '4116' + | '4117'; + utsettelseType: + | 'ARBEID' + | 'FERIE' + | 'SYKDOM_SKADE' + | 'SØKER_INNLAGT' + | 'BARN_INNLAGT' + | 'HV_OVELSE' + | 'NAV_TILTAK' + | 'FRI' + | '-'; + oppholdÅrsak: + | '-' + | 'UTTAK_MØDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FEDREKVOTE_ANNEN_FORELDER' + | 'UTTAK_FELLESP_ANNEN_FORELDER' + | 'UTTAK_FORELDREPENGER_ANNEN_FORELDER'; + flerbarnsdager?: boolean; + samtidigUttak?: boolean; + samtidigUttaksprosent?: number; + graderingInnvilget?: boolean; + graderingAvslagÅrsak: '-' | '4504' | '4501' | '4502' | '4503' | '4523'; + mottattDato?: string; +}; + +export type VarselRevurderingManuellDto = { + sendVarsel?: boolean; + fritekst?: string; + frist?: string; + ventearsak?: + | '-' + | 'AVV_DOK' + | 'AVV_FODSEL' + | 'FOR_TIDLIG_SOKNAD' + | 'SCANN' + | 'UTV_FRIST' + | 'VENT_PÅ_BRUKERTILBAKEMELDING' + | 'VENT_UTLAND_TRYGD' + | 'VENT_INNTEKT_RAPPORTERINGSFRIST' + | 'VENT_MANGLENDE_SYKEMELDING' + | 'VENT_OPDT_INNTEKTSMELDING' + | 'VENT_OPPTJENING_OPPLYSNINGER' + | 'VENT_PÅ_SISTE_AAP_MELDEKORT' + | 'VENT_SØKNAD_SENDT_INFORMASJONSBREV' + | 'VENT_ÅPEN_BEHANDLING' + | 'VENT_KABAL' + | 'ANKE_OVERSENDT_TIL_TRYGDERETTEN' + | 'ANKE_VENTER_PAA_MERKNADER_FRA_BRUKER' + | 'AVV_RESPONS_REVURDERING' + | 'VENT_TIDLIGERE_BEHANDLING' + | 'AAP_DP_SISTE_10_MND_SVP' + | 'AAP_DP_ENESTE_AKTIVITET_SVP' + | 'DELVIS_TILRETTELEGGING_OG_REFUSJON_SVP' + | 'FLERE_ARBEIDSFORHOLD_SAMME_ORG_SVP' + | 'FL_SN_IKKE_STOTTET_FOR_SVP' + | 'GRADERING_FLERE_ARBEIDSFORHOLD' + | 'OPPD_ÅPEN_BEH' + | 'REFUSJON_3_MÅNEDER' + | 'VENTELØNN_ELLER_MILITÆR_MED_FLERE_AKTIVITETER' + | 'VENT_BEREGNING_TILBAKE_I_TID' + | 'VENT_DEKGRAD_REGEL' + | 'VENT_DØDFØDSEL_80P_DEKNINGSGRAD' + | 'VENT_FEIL_ENDRINGSSØKNAD' + | 'VENT_GRADERING_UTEN_BEREGNINGSGRUNNLAG' + | 'VENT_INFOTRYGD' + | 'VENT_MANGLENDE_ARBEIDSFORHOLD' + | 'VENT_MILITÆR_OG_BG_UNDER_3G' + | 'ULIKE_STARTDATOER_SVP' + | 'VENT_LOVENDRING_8_41' + | 'VENT_PÅ_KORRIGERT_BESTEBEREGNING' + | 'VENT_PÅ_NY_INNTEKTSMELDING_MED_GYLDIG_ARB_ID' + | 'VENT_REGISTERINNHENTING' + | 'VENT_ØKONOMI'; + begrunnelse?: string; +}; + +export type VelferdspermisjonDto = { + permisjonFom?: string; + permisjonTom?: string; + permisjonsprosent?: number; + type?: + | '-' + | 'PERMISJON' + | 'UTDANNINGSPERMISJON' + | 'UTDANNINGSPERMISJON_IKKE_LOVFESTET' + | 'UTDANNINGSPERMISJON_LOVFESTET' + | 'VELFERDSPERMISJON' + | 'ANNEN_PERMISJON_IKKE_LOVFESTET' + | 'ANNEN_PERMISJON_LOVFESTET' + | 'PERMISJON_MED_FORELDREPENGER' + | 'PERMITTERING' + | 'PERMISJON_VED_MILITÆRTJENESTE'; + erGyldig?: boolean; +}; + +export type VirksomhetDto = { + navn: string; + virksomhetRegistrertINorge?: boolean; + organisasjonsnummer?: string; + landJobberFra?: string; + typeVirksomhet: NaringsvirksomhetTypeDto; + varigEndretEllerStartetSisteFireAr?: boolean; + harVarigEndring?: boolean; + erNyoppstartet?: boolean; + varigEndringGjeldendeFom?: string; + inntekt?: number; + beskrivelseAvEndring?: string; + harRegnskapsforer?: boolean; + navnRegnskapsforer?: string; + tlfRegnskapsforer?: string; + familieEllerVennerTilknyttetNaringen?: boolean; + erNyIArbeidslivet?: boolean; + oppstartsdato?: string; + fom?: string; + tom?: string; +}; + +export type VurderFaresignalerDto = { + faresignalVurdering: + | 'INNVIRKNING' + | 'INNVILGET_REDUSERT' + | 'INNVILGET_UENDRET' + | 'AVSLAG_FARESIGNAL' + | 'AVSLAG_ANNET' + | 'INGEN_INNVIRKNING' + | '-'; + begrunnelse?: string; +}; + +export type VurderFeilutbetalingDto = { + videreBehandling: '-' | 'TILBAKEKR_OPPRETT' | 'TILBAKEKR_IGNORER' | 'TILBAKEKR_INNTREKK' | 'TILBAKEKR_OPPDATER'; + varseltekst?: string; + begrunnelse?: string; +}; + +export type VurderForutgåendeMedlemskapDto = { + avslagskode?: + | '1001' + | '1002' + | '1003' + | '1004' + | '1005' + | '1006' + | '1007' + | '1008' + | '1009' + | '1010' + | '1011' + | '1012' + | '1013' + | '1014' + | '1015' + | '1016' + | '1017' + | '1018' + | '1019' + | '1020' + | '1021' + | '1023' + | '1024' + | '1025' + | '1026' + | '1027' + | '1028' + | '1029' + | '1031' + | '1032' + | '1033' + | '1034' + | '1035' + | '1041' + | '1051' + | '1052' + | '1060' + | '1061' + | '1062' + | '1063' + | '1064' + | '1065' + | '1066' + | '1099' + | '-'; + medlemFom?: string; + begrunnelse?: string; +}; + +export type VurderInnsynDokumentDto = { + fikkInnsyn?: boolean; + journalpostId?: string; + dokumentId?: string; +}; + +export type VurderInnsynDto = { + begrunnelse?: string; + innsynResultatType: 'INNV' | 'DELV' | 'AVVIST' | '-'; + mottattDato: string; + innsynDokumenter: Array; + sattPaVent?: boolean; + fristDato?: string; +}; + +export type VurderMedlemskapDto = { + avslagskode?: + | '1001' + | '1002' + | '1003' + | '1004' + | '1005' + | '1006' + | '1007' + | '1008' + | '1009' + | '1010' + | '1011' + | '1012' + | '1013' + | '1014' + | '1015' + | '1016' + | '1017' + | '1018' + | '1019' + | '1020' + | '1021' + | '1023' + | '1024' + | '1025' + | '1026' + | '1027' + | '1028' + | '1029' + | '1031' + | '1032' + | '1033' + | '1034' + | '1035' + | '1041' + | '1051' + | '1052' + | '1060' + | '1061' + | '1062' + | '1063' + | '1064' + | '1065' + | '1066' + | '1099' + | '-'; + opphørFom?: string; + begrunnelse?: string; +}; + +export type VurderSøknadsfristDto = { + ansesMottattDato?: string; + harGyldigGrunn?: boolean; + begrunnelse?: string; +}; + +export type VurderUttakDokumentasjonDto = { + vurderingBehov?: Array; + begrunnelse?: string; +}; + +export type VurdereAnnenYteleseFørVedtakDto = { + begrunnelse?: string; +}; + +export type VurdereDokumentFørVedtakDto = { + begrunnelse?: string; +}; + +export type VurdereInntektsmeldingFørVedtakDto = { + begrunnelse?: string; +}; + +export type AvklarDekningsgradOverstyringDto = { + dekningsgrad?: number; + begrunnelse?: string; +}; + +export type OverstyrOmsorgOgRettDto = { + rettighetstype: + | 'ALENEOMSORG' + | 'BEGGE_RETT' + | 'BEGGE_RETT_EØS' + | 'BARE_MOR_RETT' + | 'BARE_FAR_RETT' + | 'BARE_FAR_RETT_MOR_UFØR'; + begrunnelse?: string; +}; + +export type OverstyringAdopsjonsvilkåretDto = { + begrunnelse?: string; + avslagskode?: string; + erVilkarOk?: boolean; +}; + +export type OverstyringAksjonspunktDto = ( + | AvklarDekningsgradOverstyringDto + | OverstyrOmsorgOgRettDto + | OverstyringUttakDto + | OverstyringFaktaUttakDto + | OverstyringForutgåendeMedlemskapsvilkårDto + | OverstyringFødselsvilkåretDto + | OverstyringFødselvilkåretFarMedmorDto + | OverstyringMedlemskapsvilkåretDto + | OverstyringOpptjeningsvilkåretDto + | OverstyringSokersOpplysingspliktDto + | OverstyringSøknadsfristvilkåretDto + | OverstyringAdopsjonsvilkåretDto + | OverstyringAvklarStartdatoForPeriodenDto +) & { + begrunnelse?: string; +}; + +export type OverstyringAvklarStartdatoForPeriodenDto = { + begrunnelse?: string; + startdatoFraSoknad?: string; + opprinneligDato?: string; +}; + +export type OverstyringFaktaUttakDto = { + perioder: Array; + begrunnelse?: string; +}; + +export type OverstyringForutgåendeMedlemskapsvilkårDto = { + begrunnelse?: string; + avslagskode?: string; + erVilkarOk?: boolean; + medlemFom?: string; +}; + +export type OverstyringFødselsvilkåretDto = { + begrunnelse?: string; + avslagskode?: string; + erVilkarOk?: boolean; +}; + +export type OverstyringFødselvilkåretFarMedmorDto = { + begrunnelse?: string; + avslagskode?: string; + erVilkarOk?: boolean; +}; + +export type OverstyringMedlemskapsvilkåretDto = { + begrunnelse?: string; + avslagskode?: string; + erVilkarOk?: boolean; + opphørFom?: string; +}; + +export type OverstyringOpptjeningsvilkåretDto = { + begrunnelse?: string; + avslagskode?: string; + erVilkarOk?: boolean; +}; + +export type OverstyringSokersOpplysingspliktDto = { + begrunnelse?: string; + erVilkarOk?: boolean; +}; + +export type OverstyringSøknadsfristvilkåretDto = { + begrunnelse?: string; + erVilkarOk?: boolean; +}; + +export type OverstyringUttakDto = { + begrunnelse?: string; + perioder: Array; +}; + +export type OverstyrteAksjonspunkterDto = { + behandlingUuid: string; + behandlingVersjon: number; + overstyrteAksjonspunktDtoer?: Array; +}; + +export type AnkeVurderingResultatDto = { + ankeVurdering?: + | 'ANKE_STADFESTE_YTELSESVEDTAK' + | 'ANKE_HJEMSENDE_UTEN_OPPHEV' + | 'ANKE_OPPHEVE_OG_HJEMSENDE' + | 'ANKE_OMGJOER' + | 'ANKE_AVVIS' + | '-'; + begrunnelse?: string; + fritekstTilBrev?: string; + ankeOmgjoerArsak?: 'NYE_OPPLYSNINGER' | 'ULIK_REGELVERKSTOLKNING' | 'ULIK_VURDERING' | 'PROSESSUELL_FEIL' | '-'; + ankeVurderingOmgjoer?: 'ANKE_TIL_GUNST' | 'ANKE_DELVIS_OMGJOERING_TIL_GUNST' | 'ANKE_TIL_UGUNST' | '-'; + erAnkerIkkePart?: boolean; + erFristIkkeOverholdt?: boolean; + erIkkeKonkret?: boolean; + erIkkeSignert?: boolean; + erSubsidiartRealitetsbehandles?: boolean; + erMerknaderMottatt?: boolean; + merknadKommentar?: string; + påAnketKlageBehandlingUuid?: string; + trygderettVurdering?: + | 'ANKE_STADFESTE_YTELSESVEDTAK' + | 'ANKE_HJEMSENDE_UTEN_OPPHEV' + | 'ANKE_OPPHEVE_OG_HJEMSENDE' + | 'ANKE_OMGJOER' + | 'ANKE_AVVIS' + | '-'; + trygderettOmgjoerArsak?: 'NYE_OPPLYSNINGER' | 'ULIK_REGELVERKSTOLKNING' | 'ULIK_VURDERING' | 'PROSESSUELL_FEIL' | '-'; + trygderettVurderingOmgjoer?: 'ANKE_TIL_GUNST' | 'ANKE_DELVIS_OMGJOERING_TIL_GUNST' | 'ANKE_TIL_UGUNST' | '-'; + sendtTilTrygderettenDato?: string; +}; + +export type AnkebehandlingDto = { + ankeVurderingResultat?: AnkeVurderingResultatDto; + underBehandlingKabal?: boolean; + underBehandlingKabalTrygderett?: boolean; + behandletAvKabal?: boolean; +}; + +export type Beløp = { + verdi?: number; + indexKey?: string; +}; + +export type DatoIntervallEntitet = { + fomDato?: string; + tomDato?: string; +}; + +export type InntektsmeldingDto = { + arbeidsgiverReferanse?: string; + arbeidsgiver?: string; + arbeidsgiverOrgnr?: string; + arbeidsgiverStartdato?: string; + innsendingstidspunkt?: string; + utsettelsePerioder?: Array; + graderingPerioder?: Array; + getRefusjonBeløpPerMnd?: Beløp; +}; + +export type NaturalYtelse = { + periode?: DatoIntervallEntitet; + beloepPerMnd?: Beløp; + type?: + | 'ELEKTRISK_KOMMUNIKASJON' + | 'AKSJER_UNDERKURS' + | 'LOSJI' + | 'KOST_DOEGN' + | 'BESOEKSREISER_HJEM' + | 'KOSTBESPARELSE_HJEM' + | 'RENTEFORDEL_LAAN' + | 'BIL' + | 'KOST_DAGER' + | 'BOLIG' + | 'FORSIKRINGER' + | 'FRI_TRANSPORT' + | 'OPSJONER' + | 'TILSKUDD_BARNEHAGE' + | 'ANNET' + | 'BEDRIFTSBARNEHAGE' + | 'YRKESBIL_KILOMETER' + | 'YRKESBIL_LISTEPRIS' + | 'UTENLANDSK_PENSJONSORDNING' + | '-'; + indexKey?: string; +}; + +export type Refusjon = { + refusjonsbeløpMnd?: number; + fomDato?: string; +}; + +export type ArbeidOgInntektsmeldingDto = { + inntektsmeldinger?: Array; + arbeidsforhold?: Array; + inntekter?: Array; + skjæringstidspunkt?: string; +}; + +export type InntektDto = { + arbeidsgiverIdent?: string; + inntekter?: Array; +}; + +export type InntektspostDto = { + beløp?: number; + fom?: string; + tom?: string; + type?: '-' | 'LØNN' | 'YTELSE' | 'VANLIG' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'NÆRING_FISKE_FANGST_FAMBARNEHAGE'; +}; + +export type PermisjonOgMangelDto = { + permisjonFom?: string; + permisjonTom?: string; + type?: + | '-' + | 'PERMISJON' + | 'UTDANNINGSPERMISJON' + | 'UTDANNINGSPERMISJON_IKKE_LOVFESTET' + | 'UTDANNINGSPERMISJON_LOVFESTET' + | 'VELFERDSPERMISJON' + | 'ANNEN_PERMISJON_IKKE_LOVFESTET' + | 'ANNEN_PERMISJON_LOVFESTET' + | 'PERMISJON_MED_FORELDREPENGER' + | 'PERMITTERING' + | 'PERMISJON_VED_MILITÆRTJENESTE'; + årsak?: + | 'PERMISJON' + | 'MANGLENDE_INNTEKTSMELDING' + | 'INNTEKTSMELDING_UTEN_ARBEIDSFORHOLD' + | 'ENDRING_I_ARBEIDSFORHOLDS_ID' + | 'PERMISJON_UTEN_SLUTTDATO'; + permisjonStatus?: '-' | 'BRUK_PERMISJON' | 'IKKE_BRUK_PERMISJON' | 'UGYLDIGE_PERIODER'; +}; + +export type ManueltArbeidsforholdDto = { + behandlingUuid: string; + begrunnelse?: string; + arbeidsgiverIdent: string; + internArbeidsforholdRef?: string; + arbeidsgiverNavn?: string; + fom: string; + tom?: string; + stillingsprosent: number; + vurdering: + | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_INNTEKTSMELDING' + | 'FORTSETT_UTEN_INNTEKTSMELDING' + | 'MELDING_TIL_ARBEIDSGIVER_NAV_NO' + | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_ARBEIDSFORHOLD' + | 'IKKE_OPPRETT_BASERT_PÅ_INNTEKTSMELDING' + | 'OPPRETT_BASERT_PÅ_INNTEKTSMELDING' + | 'MANUELT_OPPRETTET_AV_SAKSBEHANDLER' + | 'FJERN_FRA_BEHANDLINGEN' + | 'SLÅTT_SAMMEN_MED_ANNET' + | 'BRUK_MED_OVERSTYRT_PERIODE' + | 'INNTEKT_IKKE_MED_I_BG' + | 'BRUK' + | 'NYTT_ARBEIDSFORHOLD' + | '-'; + behandlingVersjon: number; +}; + +export type ManglendeOpplysningerVurderingDto = { + behandlingUuid: string; + vurdering?: + | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_INNTEKTSMELDING' + | 'FORTSETT_UTEN_INNTEKTSMELDING' + | 'MELDING_TIL_ARBEIDSGIVER_NAV_NO' + | 'KONTAKT_ARBEIDSGIVER_VED_MANGLENDE_ARBEIDSFORHOLD' + | 'IKKE_OPPRETT_BASERT_PÅ_INNTEKTSMELDING' + | 'OPPRETT_BASERT_PÅ_INNTEKTSMELDING' + | 'MANUELT_OPPRETTET_AV_SAKSBEHANDLER' + | 'FJERN_FRA_BEHANDLINGEN' + | 'SLÅTT_SAMMEN_MED_ANNET' + | 'BRUK_MED_OVERSTYRT_PERIODE' + | 'INNTEKT_IKKE_MED_I_BG' + | 'BRUK' + | 'NYTT_ARBEIDSFORHOLD' + | '-'; + begrunnelse?: string; + arbeidsgiverIdent: string; + internArbeidsforholdRef?: string; + behandlingVersjon: number; +}; + +export type BehandlingIdVersjonDto = { + behandlingUuid: string; + behandlingVersjon: number; +}; + +export type GraderingPeriodeDto = { + fom?: string; + tom?: string; + arbeidsprosent?: number; +}; + +export type InntektsmeldingerDto = { + inntektsmeldinger?: Array; +}; + +export type UtsettelsePeriodeDto = { + fom?: string; + tom?: string; + utsettelseArsak?: + | 'ARBEID' + | 'LOVBESTEMT_FERIE' + | 'SYKDOM' + | 'INSTITUSJONSOPPHOLD_SØKER' + | 'INSTITUSJONSOPPHOLD_BARNET' + | 'HV_OVELSE' + | 'NAV_TILTAK' + | 'FRI' + | '-'; +}; + +export type ArbeidsgiverOpplysningerDto = { + referanse?: string; + identifikator?: string; + navn?: string; + fødselsdato?: string; + erPrivatPerson?: boolean; +}; + +export type ArbeidsgiverOversiktDto = { + arbeidsgivere?: { + [key: string]: ArbeidsgiverOpplysningerDto; + }; +}; + +export type IayYtelseDto = { + relatertTilgrensendeYtelserForSoker?: Array; + relatertTilgrensendeYtelserForAnnenForelder?: Array; + innvilgetRelatertTilgrensendeYtelserForAnnenForelder?: Array; +}; + +export type RelaterteYtelserDto = { + relatertYtelseNavn?: string; + tilgrensendeYtelserListe?: Array; +}; + +export type TilgrensendeYtelserDto = { + periodeFraDato?: string; + periodeTilDato?: string; + statusNavn?: string; + saksNummer?: string; +}; + +export type ATogFliSammeOrganisasjonDto = { + andelsnr: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + inntektskategori: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + aktivitetStatus: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + kilde: + | 'SAKSBEHANDLER_KOFAKBER' + | 'PROSESS_BESTEBEREGNING' + | 'SAKSBEHANDLER_FORDELING' + | 'PROSESS_PERIODISERING' + | 'PROSESS_OMFORDELING' + | 'PROSESS_START' + | 'PROSESS_PERIODISERING_TILKOMMET_INNTEKT'; + lagtTilAvSaksbehandler?: boolean; + fastsattAvSaksbehandler?: boolean; + andelIArbeid: Array; + inntektPrMnd?: number; +}; + +export type AktivitetTomDatoMappingDto = { + tom: string; + aktiviteter: Array; +}; + +export type AndelForFaktaOmBeregningDto = { + belopReadOnly?: number; + fastsattBelop?: number; + inntektskategori?: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + aktivitetStatus?: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + refusjonskrav?: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + andelsnr?: number; + skalKunneEndreAktivitet?: boolean; + lagtTilAvSaksbehandler?: boolean; +}; + +export type AndelMedBeløpDto = { + andelsnr: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + inntektskategori: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + aktivitetStatus: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + kilde: + | 'SAKSBEHANDLER_KOFAKBER' + | 'PROSESS_BESTEBEREGNING' + | 'SAKSBEHANDLER_FORDELING' + | 'PROSESS_PERIODISERING' + | 'PROSESS_OMFORDELING' + | 'PROSESS_START' + | 'PROSESS_PERIODISERING_TILKOMMET_INNTEKT'; + lagtTilAvSaksbehandler?: boolean; + fastsattAvSaksbehandler?: boolean; + andelIArbeid: Array; + fastsattBelopPrMnd?: number; +}; + +export type ArbeidstakerUtenInntektsmeldingAndelDto = { + andelsnr: number; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + inntektskategori: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' | 'DAGMAMMA' | 'JORDBRUKER' | 'FISKER' @@ -1325,13 +2620,80 @@ export type BeregningsgrunnlagPeriodeDto = { beregningsgrunnlagPrStatusOgAndel?: Array; }; -export type BeregningsgrunnlagPrStatusOgAndelAtDto = BeregningsgrunnlagPrStatusOgAndelDto & { - dtoType: 'BeregningsgrunnlagPrStatusOgAndelATDto'; -} & { +export type BeregningsgrunnlagPrStatusOgAndelAtDto = { + aktivitetStatus?: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + beregningsperiodeFom?: string; + beregningsperiodeTom?: string; + beregnetPrAar?: number; + overstyrtPrAar?: number; + bruttoPrAar?: number; + avkortetPrAar?: number; + redusertPrAar?: number; + erTidsbegrensetArbeidsforhold?: boolean; + erNyIArbeidslivet?: boolean; + lonnsendringIBeregningsperioden?: boolean; + andelsnr?: number; + besteberegningPrAar?: number; + inntektskategori?: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + fastsattAvSaksbehandler?: boolean; + lagtTilAvSaksbehandler?: boolean; + belopPrMndEtterAOrdningen?: number; + belopPrAarEtterAOrdningen?: number; + dagsats?: number; + originalDagsatsFraTilstøtendeYtelse?: number; + fordeltPrAar?: number; + erTilkommetAndel?: boolean; + skalFastsetteGrunnlag?: boolean; bortfaltNaturalytelse?: number; }; -export type BeregningsgrunnlagPrStatusOgAndelDto = { +export type BeregningsgrunnlagPrStatusOgAndelDto = ( + | ({ + dtoType: 'BeregningsgrunnlagPrStatusOgAndelATDto'; + } & BeregningsgrunnlagPrStatusOgAndelAtDto) + | ({ + dtoType: 'BeregningsgrunnlagPrStatusOgAndelDtoFelles'; + } & BeregningsgrunnlagPrStatusOgAndelDtoFelles) + | ({ + dtoType: 'BeregningsgrunnlagPrStatusOgAndelFLDto'; + } & BeregningsgrunnlagPrStatusOgAndelFlDto) + | ({ + dtoType: 'BeregningsgrunnlagPrStatusOgAndelSNDto'; + } & BeregningsgrunnlagPrStatusOgAndelSnDto) + | ({ + dtoType: 'BeregningsgrunnlagPrStatusOgAndelYtelseDto'; + } & BeregningsgrunnlagPrStatusOgAndelYtelseDto) +) & { aktivitetStatus?: | 'MIDL_INAKTIV' | 'AAP' @@ -1388,27 +2750,232 @@ export type BeregningsgrunnlagPrStatusOgAndelDto = { dtoType: string; }; -export type BeregningsgrunnlagPrStatusOgAndelDtoFelles = BeregningsgrunnlagPrStatusOgAndelDto & { - dtoType: 'BeregningsgrunnlagPrStatusOgAndelDtoFelles'; +export type BeregningsgrunnlagPrStatusOgAndelDtoFelles = { + aktivitetStatus?: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + beregningsperiodeFom?: string; + beregningsperiodeTom?: string; + beregnetPrAar?: number; + overstyrtPrAar?: number; + bruttoPrAar?: number; + avkortetPrAar?: number; + redusertPrAar?: number; + erTidsbegrensetArbeidsforhold?: boolean; + erNyIArbeidslivet?: boolean; + lonnsendringIBeregningsperioden?: boolean; + andelsnr?: number; + besteberegningPrAar?: number; + inntektskategori?: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + fastsattAvSaksbehandler?: boolean; + lagtTilAvSaksbehandler?: boolean; + belopPrMndEtterAOrdningen?: number; + belopPrAarEtterAOrdningen?: number; + dagsats?: number; + originalDagsatsFraTilstøtendeYtelse?: number; + fordeltPrAar?: number; + erTilkommetAndel?: boolean; + skalFastsetteGrunnlag?: boolean; }; -export type BeregningsgrunnlagPrStatusOgAndelFlDto = BeregningsgrunnlagPrStatusOgAndelDto & { - dtoType: 'BeregningsgrunnlagPrStatusOgAndelFLDto'; -} & { +export type BeregningsgrunnlagPrStatusOgAndelFlDto = { + aktivitetStatus?: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + beregningsperiodeFom?: string; + beregningsperiodeTom?: string; + beregnetPrAar?: number; + overstyrtPrAar?: number; + bruttoPrAar?: number; + avkortetPrAar?: number; + redusertPrAar?: number; + erTidsbegrensetArbeidsforhold?: boolean; + erNyIArbeidslivet?: boolean; + lonnsendringIBeregningsperioden?: boolean; + andelsnr?: number; + besteberegningPrAar?: number; + inntektskategori?: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + fastsattAvSaksbehandler?: boolean; + lagtTilAvSaksbehandler?: boolean; + belopPrMndEtterAOrdningen?: number; + belopPrAarEtterAOrdningen?: number; + dagsats?: number; + originalDagsatsFraTilstøtendeYtelse?: number; + fordeltPrAar?: number; + erTilkommetAndel?: boolean; + skalFastsetteGrunnlag?: boolean; erNyoppstartet?: boolean; }; -export type BeregningsgrunnlagPrStatusOgAndelSnDto = BeregningsgrunnlagPrStatusOgAndelDto & { - dtoType: 'BeregningsgrunnlagPrStatusOgAndelSNDto'; -} & { +export type BeregningsgrunnlagPrStatusOgAndelSnDto = { + aktivitetStatus?: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + beregningsperiodeFom?: string; + beregningsperiodeTom?: string; + beregnetPrAar?: number; + overstyrtPrAar?: number; + bruttoPrAar?: number; + avkortetPrAar?: number; + redusertPrAar?: number; + erTidsbegrensetArbeidsforhold?: boolean; + erNyIArbeidslivet?: boolean; + lonnsendringIBeregningsperioden?: boolean; + andelsnr?: number; + besteberegningPrAar?: number; + inntektskategori?: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + fastsattAvSaksbehandler?: boolean; + lagtTilAvSaksbehandler?: boolean; + belopPrMndEtterAOrdningen?: number; + belopPrAarEtterAOrdningen?: number; + dagsats?: number; + originalDagsatsFraTilstøtendeYtelse?: number; + fordeltPrAar?: number; + erTilkommetAndel?: boolean; + skalFastsetteGrunnlag?: boolean; pgiSnitt?: number; pgiVerdier?: Array; næringer?: Array; }; -export type BeregningsgrunnlagPrStatusOgAndelYtelseDto = BeregningsgrunnlagPrStatusOgAndelDto & { - dtoType: 'BeregningsgrunnlagPrStatusOgAndelYtelseDto'; -} & { +export type BeregningsgrunnlagPrStatusOgAndelYtelseDto = { + aktivitetStatus?: + | 'MIDL_INAKTIV' + | 'AAP' + | 'AT' + | 'DP' + | 'SP_AV_DP' + | 'PSB_AV_DP' + | 'FL' + | 'MS' + | 'SN' + | 'AT_FL' + | 'AT_SN' + | 'FL_SN' + | 'AT_FL_SN' + | 'BA' + | 'KUN_YTELSE' + | 'TY' + | 'VENTELØNN_VARTPENGER' + | '-'; + beregningsperiodeFom?: string; + beregningsperiodeTom?: string; + beregnetPrAar?: number; + overstyrtPrAar?: number; + bruttoPrAar?: number; + avkortetPrAar?: number; + redusertPrAar?: number; + erTidsbegrensetArbeidsforhold?: boolean; + erNyIArbeidslivet?: boolean; + lonnsendringIBeregningsperioden?: boolean; + andelsnr?: number; + besteberegningPrAar?: number; + inntektskategori?: + | 'ARBEIDSTAKER' + | 'FRILANSER' + | 'SELVSTENDIG_NÆRINGSDRIVENDE' + | 'DAGPENGER' + | 'ARBEIDSAVKLARINGSPENGER' + | 'SJØMANN' + | 'DAGMAMMA' + | 'JORDBRUKER' + | 'FISKER' + | 'ARBEIDSTAKER_UTEN_FERIEPENGER' + | '-'; + arbeidsforhold?: BeregningsgrunnlagArbeidsforholdDto; + fastsattAvSaksbehandler?: boolean; + lagtTilAvSaksbehandler?: boolean; + belopPrMndEtterAOrdningen?: number; + belopPrAarEtterAOrdningen?: number; + dagsats?: number; + originalDagsatsFraTilstøtendeYtelse?: number; + fordeltPrAar?: number; + erTilkommetAndel?: boolean; + skalFastsetteGrunnlag?: boolean; belopFraMeldekortPrMnd?: number; belopFraMeldekortPrAar?: number; oppjustertGrunnlag?: number; @@ -1694,9 +3261,7 @@ export type FordelingDto = { fordelBeregningsgrunnlag?: FordelBeregningsgrunnlagDto; }; -export type ForeldrepengerGrunnlagDto = YtelsespesifiktGrunnlagDto & { - ytelsetype: 'ForeldrepengerGrunnlagDto'; -} & { +export type ForeldrepengerGrunnlagDto = { besteberegninggrunnlag?: BesteberegninggrunnlagDto; }; @@ -1723,9 +3288,7 @@ export type FrisinnAndelDto = { | '-'; }; -export type FrisinnGrunnlagDto = YtelsespesifiktGrunnlagDto & { - ytelsetype: 'FrisinnGrunnlagDto'; -} & { +export type FrisinnGrunnlagDto = { opplysningerFL?: SøknadsopplysningerDto; opplysningerSN?: SøknadsopplysningerDto; perioderSøktFor: Array; @@ -1860,9 +3423,7 @@ export type NyPeriodeDto = { tom?: string; }; -export type OmsorgspengeGrunnlagDto = YtelsespesifiktGrunnlagDto & { - ytelsetype: 'OmsorgspengeGrunnlagDto'; -} & { +export type OmsorgspengeGrunnlagDto = { skalAvviksvurdere?: boolean; }; @@ -1978,8 +3539,8 @@ export type SammenligningsgrunnlagDto = { differanseBeregnet?: number; }; -export type SvangerskapspengerGrunnlagDto = YtelsespesifiktGrunnlagDto & { - ytelsetype: 'SvangerskapspengerGrunnlagDto'; +export type SvangerskapspengerGrunnlagDto = { + [key: string]: unknown; }; export type SøknadsopplysningerDto = { @@ -2026,7 +3587,20 @@ export type VurderRepresentererStortingetDto = { representererStortinget?: boolean; }; -export type YtelsespesifiktGrunnlagDto = { +export type YtelsespesifiktGrunnlagDto = ( + | ({ + ytelsetype: 'OmsorgspengeGrunnlagDto'; + } & OmsorgspengeGrunnlagDto) + | ({ + ytelsetype: 'SvangerskapspengerGrunnlagDto'; + } & SvangerskapspengerGrunnlagDto) + | ({ + ytelsetype: 'ForeldrepengerGrunnlagDto'; + } & ForeldrepengerGrunnlagDto) + | ({ + ytelsetype: 'FrisinnGrunnlagDto'; + } & FrisinnGrunnlagDto) +) & { ytelsetype: string; }; @@ -2168,6 +3742,7 @@ export type Register = { export type Søknad = { status?: 'MOTTATT' | 'BEHANDLET'; mottattTidspunkt?: string; + tilrettelegginger?: Array; }; export type Termin = { @@ -2307,12 +3882,6 @@ export type KlageFormKravAksjonspunktMellomlagringDto = { paKlagdBehandlingUuid?: string; }; -export type KlageTilbakekrevingDto = { - tilbakekrevingUuid: string; - tilbakekrevingVedtakDato?: string; - tilbakekrevingBehandlingType?: string; -}; - export type KlageVurderingResultatAksjonspunktMellomlagringDto = { kode?: string; behandlingUuid: string; @@ -2831,69 +4400,6 @@ export type Utenlandsopphold = { | '-'; }; -export type SvpArbeidsforholdDto = { - tilretteleggingId?: number; - tilretteleggingBehovFom?: string; - tilretteleggingDatoer?: Array; - uttakArbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; - arbeidsgiverReferanse?: string; - opplysningerOmRisiko?: string; - opplysningerOmTilrettelegging?: string; - kopiertFraTidligereBehandling?: boolean; - mottattTidspunkt?: string; - internArbeidsforholdReferanse?: string; - eksternArbeidsforholdReferanse?: string; - skalBrukes?: boolean; - kanTilrettelegges?: boolean; - stillingsprosentStartTilrettelegging?: number; - velferdspermisjoner?: Array; - avklarteOppholdPerioder?: Array; - begrunnelse?: string; -}; - -export type SvpAvklartOppholdPeriodeDto = { - fom: string; - tom: string; - oppholdÅrsak: 'SYKEPENGER' | 'FERIE'; - oppholdKilde?: 'SØKNAD' | 'INNTEKTSMELDING' | 'REGISTRERT_AV_SAKSBEHANDLER'; - forVisning?: boolean; -}; - -export type SvpTilretteleggingDatoDto = { - fom?: string; - type?: 'HEL_TILRETTELEGGING' | 'DELVIS_TILRETTELEGGING' | 'INGEN_TILRETTELEGGING'; - stillingsprosent?: number; - overstyrtUtbetalingsgrad?: number; - kilde?: 'ENDRET_AV_SAKSBEHANDLER' | 'REGISTRERT_AV_SAKSBEHANDLER' | 'TIDLIGERE_VEDTAK' | 'SØKNAD'; - mottattDato?: string; -}; - -export type SvpTilretteleggingDto = { - termindato?: string; - fødselsdato?: string; - arbeidsforholdListe?: Array; - saksbehandlet?: boolean; -}; - -export type VelferdspermisjonDto = { - permisjonFom?: string; - permisjonTom?: string; - permisjonsprosent?: number; - type?: - | '-' - | 'PERMISJON' - | 'UTDANNINGSPERMISJON' - | 'UTDANNINGSPERMISJON_IKKE_LOVFESTET' - | 'UTDANNINGSPERMISJON_LOVFESTET' - | 'VELFERDSPERMISJON' - | 'ANNEN_PERMISJON_IKKE_LOVFESTET' - | 'ANNEN_PERMISJON_LOVFESTET' - | 'PERMISJON_MED_FORELDREPENGER' - | 'PERMITTERING' - | 'PERMISJON_VED_MILITÆRTJENESTE'; - erGyldig?: boolean; -}; - export type DekningsgradInfoDto = { avklartDekningsgrad?: number; søker?: OppgittDekningsgradDto; @@ -2959,487 +4465,242 @@ export type ManglendeVedleggDto = { | 'I000111' | 'I000118' | 'ETTERSENDT_SØKNAD_SVANGERSKAPSPENGER_SELVSTENDIG' - | 'ETTERSENDT_SØKNAD_FORELDREPENGER_ADOPSJON' - | 'ETTERSENDT_SØKNAD_ENGANGSSTØNAD_FØDSEL' - | 'ETTERSENDT_SØKNAD_ENGANGSSTØNAD_ADOPSJON' - | 'ETTERSENDT_SØKNAD_FORELDREPENGER_FØDSEL' - | 'ETTERSENDT_FLEKSIBELT_UTTAK_FORELDREPENGER' - | 'ETTERSENDT_FORELDREPENGER_ENDRING_SØKNAD' - | 'BREV_UTLAND' - | 'ANNET_SKJEMA_UTLAND_IKKE_NAV' - | 'BREV' - | 'I000145' - | 'I000144' - | 'ANNET_SKJEMA_IKKE_NAV' - | 'ANNET' - | '-'; - dokumentTittel?: string; - arbeidsgiverReferanse?: string; - brukerHarSagtAtIkkeKommer?: boolean; -}; - -export type OppgittDekningsgradDto = { - søknadsdato?: string; - dekningsgrad?: number; -}; - -export type OppgittFordelingDto = { - startDatoForPermisjon?: string; - dekningsgrader?: DekningsgradInfoDto; -}; - -export type OppgittTilknytningDto = { - oppholdNorgeNa?: boolean; - oppholdSistePeriode?: boolean; - oppholdNestePeriode?: boolean; - utlandsoppholdFor?: Array; - utlandsoppholdEtter?: Array; -}; - -export type SoknadAdopsjonDto = SoknadDto & { - omsorgsovertakelseDato?: string; - barnetsAnkomstTilNorgeDato?: string; - adopsjonFodelsedatoer?: { - [key: string]: string; - }; - farSokerType?: - | 'ADOPTERER_ALENE' - | 'ANDRE_FORELDER_DØD' - | 'OVERTATT_OMSORG' - | 'OVERTATT_OMSORG_F' - | 'ANDRE_FORELD_DØD_F' - | '-'; -}; - -export type SoknadDto = { - soknadType?: 'ST-001' | 'ST-002'; - mottattDato?: string; - begrunnelseForSenInnsending?: string; - antallBarn?: number; - oppgittTilknytning?: OppgittTilknytningDto; - manglendeVedlegg?: Array; - oppgittFordeling?: OppgittFordelingDto; - søknadsfrist?: SøknadsfristDto; -}; - -export type SoknadFodselDto = SoknadDto & { - utstedtdato?: string; - termindato?: string; - farSokerType?: - | 'ADOPTERER_ALENE' - | 'ANDRE_FORELDER_DØD' - | 'OVERTATT_OMSORG' - | 'OVERTATT_OMSORG_F' - | 'ANDRE_FORELD_DØD_F' - | '-'; - fodselsdatoer?: { - [key: string]: string; - }; -}; - -export type SøknadsfristDto = { - mottattDato?: string; - utledetSøknadsfrist?: string; - søknadsperiodeStart?: string; - søknadsperiodeSlutt?: string; - dagerOversittetFrist?: number; -}; - -export type UtlandsoppholdDto = { - landNavn?: string; - fom?: string; - tom?: string; -}; - -export type SoknadBackendDto = { - soknadType?: 'ST-001' | 'ST-002'; - mottattDato?: string; - oppgittAleneomsorg?: boolean; -}; - -export type DetaljertSimuleringResultatDto = { - periode?: PeriodeDto; - ingenPerioderMedAvvik?: boolean; - sumEtterbetaling?: number; - sumFeilutbetaling?: number; - sumInntrekk?: number; - perioderPerMottaker?: Array; -}; - -export type PeriodeDto = { - fom?: string; - tom?: string; -}; - -export type SimuleringDto = { - simuleringResultat?: DetaljertSimuleringResultatDto; - simuleringResultatUtenInntrekk?: DetaljertSimuleringResultatDto; - slåttAvInntrekk?: boolean; -}; - -export type SimuleringForMottakerDto = { - mottakerType?: 'BRUKER' | 'ARBG_ORG' | 'ARBG_PRIV'; - mottakerNummer?: string; - mottakerIdentifikator?: string; - resultatPerFagområde?: Array; - resultatOgMotregningRader?: Array; - nesteUtbPeriode?: PeriodeDto; -}; - -export type SimuleringResultatPerFagområdeDto = { - fagOmrådeKode?: - | 'REFUTG' - | 'FP' - | 'FPREF' - | 'SP' - | 'SPREF' - | 'SVP' - | 'SVPREF' - | 'PB' - | 'PBREF' - | 'PN' - | 'PNREF' - | 'OM' - | 'OMREF' - | 'OPP' - | 'OPPREF' - | 'OOP' - | 'OOPREF' - | 'UNG'; - rader?: Array; -}; - -export type SimuleringResultatPerMånedDto = { - periode?: PeriodeDto; - beløp?: number; -}; - -export type SimuleringResultatRadDto = { - feltnavn?: - | 'nyttBeløp' - | 'tidligereUtbetalt' - | 'differanse' - | 'resultatEtterMotregning' - | 'inntrekkNesteMåned' - | 'resultat'; - resultaterPerMåned?: Array; -}; - -export type TilbakekrevingValgDto = { - grunnerTilReduksjon?: boolean; - videreBehandling?: '-' | 'TILBAKEKR_OPPRETT' | 'TILBAKEKR_IGNORER' | 'TILBAKEKR_INNTREKK' | 'TILBAKEKR_OPPDATER'; - varseltekst?: string; -}; - -export type VarseltekstDto = { - varseltekst?: string; -}; - -export type AktivitetIdentifikatorDto = { - uttakArbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; + | 'ETTERSENDT_SØKNAD_FORELDREPENGER_ADOPSJON' + | 'ETTERSENDT_SØKNAD_ENGANGSSTØNAD_FØDSEL' + | 'ETTERSENDT_SØKNAD_ENGANGSSTØNAD_ADOPSJON' + | 'ETTERSENDT_SØKNAD_FORELDREPENGER_FØDSEL' + | 'ETTERSENDT_FLEKSIBELT_UTTAK_FORELDREPENGER' + | 'ETTERSENDT_FORELDREPENGER_ENDRING_SØKNAD' + | 'BREV_UTLAND' + | 'ANNET_SKJEMA_UTLAND_IKKE_NAV' + | 'BREV' + | 'I000145' + | 'I000144' + | 'ANNET_SKJEMA_IKKE_NAV' + | 'ANNET' + | '-'; + dokumentTittel?: string; arbeidsgiverReferanse?: string; - arbeidsforholdId?: string; -}; - -export type AktivitetSaldoDto = { - aktivitetIdentifikator?: AktivitetIdentifikatorDto; - saldo?: number; + brukerHarSagtAtIkkeKommer?: boolean; }; -export type KontoUtvidelser = { - prematurdager?: number; - flerbarnsdager?: number; +export type OppgittDekningsgradDto = { + søknadsdato?: string; + dekningsgrad?: number; }; -export type SaldoerDto = { - stonadskontoer?: { - [key: string]: StønadskontoDto; - }; - tapteDagerFpff?: number; +export type OppgittFordelingDto = { + startDatoForPermisjon?: string; + dekningsgrader?: DekningsgradInfoDto; }; -export type StønadskontoDto = { - stonadskontotype?: - | 'MØDREKVOTE' - | 'FEDREKVOTE' - | 'FELLESPERIODE' - | 'FORELDREPENGER' - | 'FORELDREPENGER_FØR_FØDSEL' - | 'FLERBARNSDAGER' - | 'UTEN_AKTIVITETSKRAV' - | 'MINSTERETT_NESTE_STØNADSPERIODE' - | 'MINSTERETT'; - maxDager?: number; - saldo?: number; - aktivitetSaldoDtoList?: Array; - gyldigForbruk?: boolean; - kontoUtvidelser?: KontoUtvidelser; +export type OppgittTilknytningDto = { + oppholdNorgeNa?: boolean; + oppholdSistePeriode?: boolean; + oppholdNestePeriode?: boolean; + utlandsoppholdFor?: Array; + utlandsoppholdEtter?: Array; }; -export type BehandlingMedUttaksperioderDto = { - behandlingUuid: string; - perioder: Array; +export type SoknadDto = { + soknadType?: 'ST-001' | 'ST-002'; + mottattDato?: string; + begrunnelseForSenInnsending?: string; + antallBarn?: number; + oppgittTilknytning?: OppgittTilknytningDto; + manglendeVedlegg?: Array; + oppgittFordeling?: OppgittFordelingDto; + søknadsfrist?: SøknadsfristDto; }; -export type InternArbeidsforholdRef = { - referanse?: string; - indexKey?: string; - uuidreferanse?: string; +export type SøknadsfristDto = { + mottattDato?: string; + utledetSøknadsfrist?: string; + søknadsperiodeStart?: string; + søknadsperiodeSlutt?: string; + dagerOversittetFrist?: number; }; -export type Trekkdager = { - [key: string]: unknown; +export type UtlandsoppholdDto = { + landNavn?: string; + fom?: string; + tom?: string; }; -export type UttakResultatPeriodeAktivitetLagreDto = { - stønadskontoType?: - | 'FELLESPERIODE' - | 'MØDREKVOTE' - | 'FEDREKVOTE' - | 'FORELDREPENGER' - | 'FORELDREPENGER_FØR_FØDSEL' +export type SoknadAdopsjonDto = { + soknadType?: 'ST-001' | 'ST-002'; + mottattDato?: string; + begrunnelseForSenInnsending?: string; + antallBarn?: number; + oppgittTilknytning?: OppgittTilknytningDto; + manglendeVedlegg?: Array; + oppgittFordeling?: OppgittFordelingDto; + søknadsfrist?: SøknadsfristDto; + omsorgsovertakelseDato?: string; + barnetsAnkomstTilNorgeDato?: string; + adopsjonFodelsedatoer?: { + [key: string]: string; + }; + farSokerType?: + | 'ADOPTERER_ALENE' + | 'ANDRE_FORELDER_DØD' + | 'OVERTATT_OMSORG' + | 'OVERTATT_OMSORG_F' + | 'ANDRE_FORELD_DØD_F' | '-'; - trekkdagerDesimaler: Trekkdager; - arbeidsgiver?: Arbeidsgiver; - arbeidsgiverReferanse?: string; - arbeidsforholdId?: InternArbeidsforholdRef; - utbetalingsgrad?: number; - uttakArbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; }; -export type UttakResultatPeriodeLagreDto = { - fom: string; - tom: string; - aktiviteter: Array; - begrunnelse?: string; - periodeResultatType: 'INNVILGET' | 'AVSLÅTT' | 'MANUELL_BEHANDLING'; - periodeResultatÅrsak: - | '-' - | '2002' - | '2003' - | '2004' - | '2005' - | '2006' - | '2007' - | '2010' - | '2011' - | '2012' - | '2013' - | '2014' - | '2015' - | '2016' - | '2017' - | '2018' - | '2019' - | '2020' - | '2021' - | '2022' - | '2023' - | '2024' - | '2025' - | '2026' - | '2027' - | '2028' - | '2030' - | '2031' - | '2032' - | '2033' - | '2034' - | '2035' - | '2036' - | '2037' - | '2038' - | '2039' - | '4002' - | '4003' - | '4005' - | '4007' - | '4008' - | '4012' - | '4013' - | '4020' - | '4022' - | '4023' - | '4025' - | '4030' - | '4031' - | '4032' - | '4033' - | '4034' - | '4035' - | '4037' - | '4038' - | '4039' - | '4040' - | '4041' - | '4050' - | '4051' - | '4052' - | '4053' - | '4054' - | '4055' - | '4056' - | '4057' - | '4058' - | '4059' - | '4060' - | '4061' - | '4062' - | '4063' - | '4064' - | '4065' - | '4066' - | '4067' - | '4068' - | '4069' - | '4070' - | '4071' - | '4072' - | '4073' - | '4074' - | '4075' - | '4076' - | '4077' - | '4081' - | '4082' - | '4084' - | '4085' - | '4086' - | '4087' - | '4088' - | '4089' - | '4092' - | '4093' - | '4095' - | '4096' - | '4097' - | '4098' - | '4099' - | '4100' - | '4102' - | '4103' - | '4104' - | '4105' - | '4106' - | '4107' - | '4110' - | '4111' - | '4112' - | '4115' - | '4116' - | '4117'; - utsettelseType: - | 'ARBEID' - | 'FERIE' - | 'SYKDOM_SKADE' - | 'SØKER_INNLAGT' - | 'BARN_INNLAGT' - | 'HV_OVELSE' - | 'NAV_TILTAK' - | 'FRI' +export type SoknadFodselDto = { + soknadType?: 'ST-001' | 'ST-002'; + mottattDato?: string; + begrunnelseForSenInnsending?: string; + antallBarn?: number; + oppgittTilknytning?: OppgittTilknytningDto; + manglendeVedlegg?: Array; + oppgittFordeling?: OppgittFordelingDto; + søknadsfrist?: SøknadsfristDto; + utstedtdato?: string; + termindato?: string; + farSokerType?: + | 'ADOPTERER_ALENE' + | 'ANDRE_FORELDER_DØD' + | 'OVERTATT_OMSORG' + | 'OVERTATT_OMSORG_F' + | 'ANDRE_FORELD_DØD_F' | '-'; - oppholdÅrsak: - | '-' - | 'UTTAK_MØDREKVOTE_ANNEN_FORELDER' - | 'UTTAK_FEDREKVOTE_ANNEN_FORELDER' - | 'UTTAK_FELLESP_ANNEN_FORELDER' - | 'UTTAK_FORELDREPENGER_ANNEN_FORELDER'; - flerbarnsdager?: boolean; - samtidigUttak?: boolean; - samtidigUttaksprosent?: number; - graderingInnvilget?: boolean; - graderingAvslagÅrsak: '-' | '4504' | '4501' | '4502' | '4503' | '4523'; + fodselsdatoer?: { + [key: string]: string; + }; +}; + +export type SoknadBackendDto = { + soknadType?: 'ST-001' | 'ST-002'; mottattDato?: string; + oppgittAleneomsorg?: boolean; }; -export type AktivitetskravGrunnlagArbeid = { - orgNummer?: string; - stillingsprosent?: number; - permisjon?: Permisjon; +export type DetaljertSimuleringResultatDto = { + periode?: PeriodeDto; + ingenPerioderMedAvvik?: boolean; + sumEtterbetaling?: number; + sumFeilutbetaling?: number; + sumInntrekk?: number; + perioderPerMottaker?: Array; }; -export type DokumentasjonVurderingBehovDto = { - fom: string; - tom: string; - type: 'UTSETTELSE' | 'OVERFØRING' | 'UTTAK'; - årsak: - | 'INNLEGGELSE_SØKER' - | 'INNLEGGELSE_BARN' - | 'HV_ØVELSE' - | 'NAV_TILTAK' - | 'SYKDOM_SØKER' - | 'INNLEGGELSE_ANNEN_FORELDER' - | 'SYKDOM_ANNEN_FORELDER' - | 'BARE_SØKER_RETT' - | 'ALENEOMSORG' - | 'AKTIVITETSKRAV_ARBEID' - | 'AKTIVITETSKRAV_UTDANNING' - | 'AKTIVITETSKRAV_KVALPROG' - | 'AKTIVITETSKRAV_INTROPROG' - | 'AKTIVITETSKRAV_TRENGER_HJELP' - | 'AKTIVITETSKRAV_INNLAGT' - | 'AKTIVITETSKRAV_ARBEID_OG_UTDANNING' - | 'AKTIVITETSKRAV_IKKE_OPPGITT' - | 'TIDLIG_OPPSTART_FAR'; - vurdering?: 'GODKJENT' | 'GODKJENT_AUTOMATISK' | 'IKKE_GODKJENT' | 'IKKE_DOKUMENTERT'; - morsStillingsprosent?: number; - aktivitetskravGrunnlag?: Array; +export type PeriodeDto = { + fom?: string; + tom?: string; }; -export type Permisjon = { - prosent?: number; - type?: '-' | 'UTDANNING' | 'FORELDREPENGER' | 'PERMITTERING' | 'ANNEN_PERMISJON'; +export type SimuleringDto = { + simuleringResultat?: DetaljertSimuleringResultatDto; + simuleringResultatUtenInntrekk?: DetaljertSimuleringResultatDto; + slåttAvInntrekk?: boolean; }; -export type FaktaUttakPeriodeDto = { - fom: string; - tom: string; - uttakPeriodeType?: - | 'FELLESPERIODE' +export type SimuleringForMottakerDto = { + mottakerType?: 'BRUKER' | 'ARBG_ORG' | 'ARBG_PRIV'; + mottakerNummer?: string; + mottakerIdentifikator?: string; + resultatPerFagområde?: Array; + resultatOgMotregningRader?: Array; + nesteUtbPeriode?: PeriodeDto; +}; + +export type SimuleringResultatPerFagområdeDto = { + fagOmrådeKode?: + | 'REFUTG' + | 'FP' + | 'FPREF' + | 'SP' + | 'SPREF' + | 'SVP' + | 'SVPREF' + | 'PB' + | 'PBREF' + | 'PN' + | 'PNREF' + | 'OM' + | 'OMREF' + | 'OPP' + | 'OPPREF' + | 'OOP' + | 'OOPREF' + | 'UNG'; + rader?: Array; +}; + +export type SimuleringResultatPerMånedDto = { + periode?: PeriodeDto; + beløp?: number; +}; + +export type SimuleringResultatRadDto = { + feltnavn?: + | 'nyttBeløp' + | 'tidligereUtbetalt' + | 'differanse' + | 'resultatEtterMotregning' + | 'inntrekkNesteMåned' + | 'resultat'; + resultaterPerMåned?: Array; +}; + +export type TilbakekrevingValgDto = { + grunnerTilReduksjon?: boolean; + videreBehandling?: '-' | 'TILBAKEKR_OPPRETT' | 'TILBAKEKR_IGNORER' | 'TILBAKEKR_INNTREKK' | 'TILBAKEKR_OPPDATER'; + varseltekst?: string; +}; + +export type VarseltekstDto = { + varseltekst?: string; +}; + +export type AktivitetIdentifikatorDto = { + uttakArbeidType?: 'ORDINÆRT_ARBEID' | 'SELVSTENDIG_NÆRINGSDRIVENDE' | 'FRILANS' | 'ANNET'; + arbeidsgiverReferanse?: string; + arbeidsforholdId?: string; +}; + +export type AktivitetSaldoDto = { + aktivitetIdentifikator?: AktivitetIdentifikatorDto; + saldo?: number; +}; + +export type KontoUtvidelser = { + prematurdager?: number; + flerbarnsdager?: number; +}; + +export type SaldoerDto = { + stonadskontoer?: { + [key: string]: StønadskontoDto; + }; + tapteDagerFpff?: number; +}; + +export type StønadskontoDto = { + stonadskontotype?: | 'MØDREKVOTE' | 'FEDREKVOTE' + | 'FELLESPERIODE' | 'FORELDREPENGER' | 'FORELDREPENGER_FØR_FØDSEL' - | '-'; - utsettelseÅrsak?: - | 'ARBEID' - | 'LOVBESTEMT_FERIE' - | 'SYKDOM' - | 'INSTITUSJONSOPPHOLD_SØKER' - | 'INSTITUSJONSOPPHOLD_BARNET' - | 'HV_OVELSE' - | 'NAV_TILTAK' - | 'FRI' - | '-'; - overføringÅrsak?: - | 'INSTITUSJONSOPPHOLD_ANNEN_FORELDER' - | 'SYKDOM_ANNEN_FORELDER' - | 'IKKE_RETT_ANNEN_FORELDER' - | 'ALENEOMSORG' - | '-'; - oppholdÅrsak?: - | '-' - | 'UTTAK_MØDREKVOTE_ANNEN_FORELDER' - | 'UTTAK_FEDREKVOTE_ANNEN_FORELDER' - | 'UTTAK_FELLESP_ANNEN_FORELDER' - | 'UTTAK_FORELDREPENGER_ANNEN_FORELDER'; - arbeidstidsprosent?: number; - arbeidsforhold?: ArbeidsforholdDto; - samtidigUttaksprosent?: number; - flerbarnsdager?: boolean; - morsAktivitet?: - | '-' - | 'ARBEID' - | 'UTDANNING' - | 'KVALPROG' - | 'INTROPROG' - | 'TRENGER_HJELP' - | 'INNLAGT' - | 'ARBEID_OG_UTDANNING' - | 'UFØRE' - | 'IKKE_OPPGITT'; - periodeKilde?: 'SØKNAD' | 'TIDLIGERE_VEDTAK' | 'ANDRE_NAV_VEDTAK' | 'SAKSBEHANDLER'; - begrunnelse?: string; + | 'FLERBARNSDAGER' + | 'UTEN_AKTIVITETSKRAV' + | 'MINSTERETT_NESTE_STØNADSPERIODE' + | 'MINSTERETT'; + maxDager?: number; + saldo?: number; + aktivitetSaldoDtoList?: Array; + gyldigForbruk?: boolean; + kontoUtvidelser?: KontoUtvidelser; +}; + +export type BehandlingMedUttaksperioderDto = { + behandlingUuid: string; + perioder: Array; }; export type SvangerskapspengerUttakResultatArbeidsforholdDto = { @@ -3670,9 +4931,9 @@ export type UttakResultatPeriodeDto = { mottattDato?: string; tidligstMottattDato?: string; erUtbetalingRedusertTilMorsStillingsprosent?: boolean; - gradertAktivitet?: UttakResultatPeriodeAktivitetDto; periodeResultatÅrsakLovhjemmel?: string; graderingsAvslagÅrsakLovhjemmel?: string; + gradertAktivitet?: UttakResultatPeriodeAktivitetDto; }; export type UttakResultatPerioderDto = { @@ -4335,9 +5596,9 @@ export type TotrinnskontrollSkjermlenkeContextDto = { export type UttakPeriodeEndringDto = { fom?: string; tom?: string; - erSlettet?: boolean; erEndret?: boolean; erLagtTil?: boolean; + erSlettet?: boolean; }; export type LagreFagsakNotatDto = { @@ -4349,12 +5610,17 @@ export type SokefeltDto = { searchString: string; }; +export type FamiliehendelseDto = (AvklartDataAdopsjonDto | AvklartDataFodselDto | AvklartDataOmsorgDto) & { + soknadType?: 'ST-001' | 'ST-002'; + skjaringstidspunkt?: string; +}; + export type AvklartBarnDto = { fodselsdato?: string; dodsdato?: string; }; -export type AvklartDataAdopsjonDto = FamiliehendelseDto & { +export type AvklartDataAdopsjonDto = { mannAdoptererAlene?: boolean; ektefellesBarn?: boolean; omsorgsovertakelseDato?: string; @@ -4365,11 +5631,15 @@ export type AvklartDataAdopsjonDto = FamiliehendelseDto & { fødselsdatoer?: { [key: string]: string; }; + soknadType?: 'ST-001' | 'ST-002'; + skjaringstidspunkt?: string; }; -export type AvklartDataFodselDto = FamiliehendelseDto & { +export type AvklartDataFodselDto = { dokumentasjonForligger?: boolean; dokumentasjonForeligger?: boolean; + soknadType?: 'ST-001' | 'ST-002'; + skjaringstidspunkt?: string; avklartBarn?: Array; brukAntallBarnFraTps?: boolean; termindato?: string; @@ -4379,7 +5649,7 @@ export type AvklartDataFodselDto = FamiliehendelseDto & { vedtaksDatoSomSvangerskapsuke?: number; }; -export type AvklartDataOmsorgDto = FamiliehendelseDto & { +export type AvklartDataOmsorgDto = { omsorgsovertakelseDato?: string; vilkarType?: 'FP_VK_5' | 'FP_VK_8' | 'FP_VK_33' | '-'; antallBarnTilBeregning?: number; @@ -4387,9 +5657,6 @@ export type AvklartDataOmsorgDto = FamiliehendelseDto & { fødselsdatoer?: { [key: string]: string; }; -}; - -export type FamiliehendelseDto = { soknadType?: 'ST-001' | 'ST-002'; skjaringstidspunkt?: string; }; @@ -4967,9 +6234,7 @@ export type ArbeidsforholdUttak = { | 'ANNET'; }; -export type EsSak = Sak & { - type: 'EsSak'; -} & { +export type EsSak = { saksnummer?: string; aktørId?: string; familieHendelse?: FamilieHendelse; @@ -4979,9 +6244,7 @@ export type EsSak = Sak & { vedtak?: Array; }; -export type FpSak = Sak & { - type: 'FpSak'; -} & { +export type FpSak = { saksnummer?: string; aktørId?: string; familieHendelse?: FamilieHendelse; @@ -5021,7 +6284,17 @@ export type Rettigheter = { annenForelderTilsvarendeRettEØS?: boolean; }; -export type Sak = { +export type Sak = ( + | ({ + type: 'EsSak'; + } & EsSak) + | ({ + type: 'FpSak'; + } & FpSak) + | ({ + type: 'SvpSak'; + } & SvpSak) +) & { type: string; }; @@ -5043,9 +6316,7 @@ export type SvpPeriode = { | 'OPPHØR_ANNET'; }; -export type SvpSak = Sak & { - type: 'SvpSak'; -} & { +export type SvpSak = { saksnummer?: string; aktørId?: string; familieHendelse?: FamilieHendelse; @@ -5134,26 +6405,52 @@ export type EnkelRespons = { status?: string; }; -export type AdressebeskyttelseHendelseDto = HendelseDto & { +export type AdressebeskyttelseHendelseDto = { + id: string; + endringstype: 'OPPRETTET' | 'KORRIGERT' | 'ANNULLERT' | 'OPPHOERT'; aktørId: Array; + avsenderSystem?: string; + hendelsetype?: string; + alleAktørId?: Array; }; -export type DødHendelseDto = HendelseDto & { +export type DødHendelseDto = { + id: string; + endringstype: 'OPPRETTET' | 'KORRIGERT' | 'ANNULLERT' | 'OPPHOERT'; aktørId: Array; dødsdato?: string; + avsenderSystem?: string; + hendelsetype?: string; + alleAktørId?: Array; }; -export type DødfødselHendelseDto = HendelseDto & { +export type DødfødselHendelseDto = { + id: string; + endringstype: 'OPPRETTET' | 'KORRIGERT' | 'ANNULLERT' | 'OPPHOERT'; aktørId: Array; dødfødselsdato?: string; + avsenderSystem?: string; + hendelsetype?: string; + alleAktørId?: Array; }; -export type FødselHendelseDto = HendelseDto & { +export type FødselHendelseDto = { + id: string; + endringstype: 'OPPRETTET' | 'KORRIGERT' | 'ANNULLERT' | 'OPPHOERT'; aktørIdForeldre: Array; fødselsdato?: string; + avsenderSystem?: string; + hendelsetype?: string; + alleAktørId?: Array; }; -export type HendelseDto = { +export type HendelseDto = ( + | AdressebeskyttelseHendelseDto + | DødHendelseDto + | DødfødselHendelseDto + | FødselHendelseDto + | UtflyttingHendelseDto +) & { id: string; endringstype: 'OPPRETTET' | 'KORRIGERT' | 'ANNULLERT' | 'OPPHOERT'; avsenderSystem?: string; @@ -5166,9 +6463,14 @@ export type HendelseWrapperDto = { alleAktørId?: Array; }; -export type UtflyttingHendelseDto = HendelseDto & { +export type UtflyttingHendelseDto = { + id: string; + endringstype: 'OPPRETTET' | 'KORRIGERT' | 'ANNULLERT' | 'OPPHOERT'; aktørId: Array; utflyttingsdato?: string; + avsenderSystem?: string; + hendelsetype?: string; + alleAktørId?: Array; }; export type Arbeidsforhold = { From 6b9da25799e980acf6acef2a0dd7a833b0df676a Mon Sep 17 00:00:00 2001 From: johannbm Date: Mon, 18 Aug 2025 07:59:26 +0200 Subject: [PATCH 09/12] oppdater med riktig @type --- packages/types/src/apiDtoGenerert.ts | 185 ++++++++++++++++++--------- 1 file changed, 121 insertions(+), 64 deletions(-) diff --git a/packages/types/src/apiDtoGenerert.ts b/packages/types/src/apiDtoGenerert.ts index a319fbf9bc7..89ea6f2eaae 100644 --- a/packages/types/src/apiDtoGenerert.ts +++ b/packages/types/src/apiDtoGenerert.ts @@ -700,11 +700,11 @@ export type ArbeidsforholdDto = { }; export type Arbeidsgiver = { - identifikator?: string; erVirksomhet?: boolean; + identifikator?: string; aktørId?: string; - orgnr?: string; indexKey?: string; + orgnr?: string; }; export type AvklarAleneomsorgVurderingDto = { @@ -753,46 +753,46 @@ export type BekreftedeAksjonspunkterDto = { export type BekreftetAksjonspunktDto = ( | ({ - '@type': 'FatterVedtakAksjonspunktDto'; + '@type': '5016'; } & FatterVedtakAksjonspunktDto) | ({ - '@type': 'AvklarDekningsgradDto'; + '@type': '5002'; } & AvklarDekningsgradDto) | ({ - '@type': 'VurderInnsynDto'; + '@type': '5037'; } & VurderInnsynDto) | ({ - '@type': 'KlageFormkravAksjonspunktDto'; + '@type': '5082'; } & KlageFormkravAksjonspunktDto) | ({ - '@type': 'KlageVurderingResultatAksjonspunktDto'; + '@type': '5035'; } & KlageVurderingResultatAksjonspunktDto) | ({ '@type': 'VurderForutgåendeMedlemskapDto'; } & VurderForutgåendeMedlemskapDto) | ({ - '@type': 'VurderMedlemskapDto'; + '@type': '5101'; } & VurderMedlemskapDto) | ({ - '@type': 'KontrollerRevurderingsBehandlingDto'; + '@type': '5055'; } & KontrollerRevurderingsBehandlingDto) | ({ - '@type': 'VarselRevurderingManuellDto'; + '@type': '5026'; } & VarselRevurderingManuellDto) | ({ - '@type': 'VurderFaresignalerDto'; + '@type': '5095'; } & VurderFaresignalerDto) | ({ - '@type': 'BekreftSvangerskapspengerDto'; + '@type': '5091'; } & BekreftSvangerskapspengerDto) | ({ '@type': 'BekreftSvangerskapspengervilkårDto'; } & BekreftSvangerskapspengervilkårDto) | ({ - '@type': 'BekreftSokersOpplysningspliktManuDto'; + '@type': '5017'; } & BekreftSokersOpplysningspliktManuDto) | ({ - '@type': 'SoknadsfristAksjonspunktDto'; + '@type': '5007'; } & SoknadsfristAksjonspunktDto) | ({ '@type': 'VurderSøknadsfristDto'; @@ -801,16 +801,16 @@ export type BekreftetAksjonspunktDto = ( '@type': 'KontrollerStorEtterbetalingSøkerDto'; } & KontrollerStorEtterbetalingSøkerDto) | ({ - '@type': 'VurderFeilutbetalingDto'; + '@type': '5084'; } & VurderFeilutbetalingDto) | ({ - '@type': 'VurderUttakDokumentasjonDto'; + '@type': '5074'; } & VurderUttakDokumentasjonDto) | ({ - '@type': 'AvklarAleneomsorgVurderingDto'; + '@type': '5060'; } & AvklarAleneomsorgVurderingDto) | ({ - '@type': 'AvklarAnnenforelderHarRettDto'; + '@type': '5086'; } & AvklarAnnenforelderHarRettDto) | ({ '@type': 'FastsetteUttakKontrollerAnnenpartEØSDto'; @@ -822,28 +822,28 @@ export type BekreftetAksjonspunktDto = ( '@type': 'FastsetteUttakKontrollerOpplysningerOmSøknadsfristDto'; } & FastsetteUttakKontrollerOpplysningerOmSøknadsfristDto) | ({ - '@type': 'FastsetteUttakKontrollerRealitetsBehandlingEllerKlageDto'; + '@type': '5073'; } & FastsetteUttakKontrollerRealitetsBehandlingEllerKlageDto) | ({ - '@type': 'FastsetteUttakPerioderDto'; + '@type': '5071'; } & FastsetteUttakPerioderDto) | ({ - '@type': 'FastsetteUttakStortingsrepresentantDto'; + '@type': '5072'; } & FastsetteUttakStortingsrepresentantDto) | ({ - '@type': 'GraderingAktivitetUtenBGDto'; + '@type': '5066'; } & GraderingAktivitetUtenBgDto) | ({ - '@type': 'GraderingUkjentAktivitetDto'; + '@type': '5063'; } & GraderingUkjentAktivitetDto) | ({ - '@type': 'IngenPerioderDto'; + '@type': '5064'; } & IngenPerioderDto) | ({ - '@type': 'ManueltSattStartdatoDto'; + '@type': '5065'; } & ManueltSattStartdatoDto) | ({ - '@type': 'ForeslaVedtakManueltAksjonspuntDto'; + '@type': '5028'; } & ForeslaVedtakManueltAksjonspuntDto) | ({ '@type': 'ForeslåVedtakAksjonspunktDto'; @@ -858,16 +858,16 @@ export type BekreftetAksjonspunktDto = ( '@type': 'VurdereInntektsmeldingFørVedtakDto'; } & VurdereInntektsmeldingFørVedtakDto) | ({ - '@type': 'ManuellRegistreringEngangsstonadDto'; + '@type': '5012'; } & ManuellRegistreringEngangsstonadDto) | ({ '@type': 'ManuellRegistreringEndringsøknadDto'; } & ManuellRegistreringEndringsøknadDto) | ({ - '@type': 'ManuellRegistreringForeldrepengerDto'; + '@type': '5040'; } & ManuellRegistreringForeldrepengerDto) | ({ - '@type': 'ManuellRegistreringSvangerskapspengerDto'; + '@type': '5096'; } & ManuellRegistreringSvangerskapspengerDto) ) & { begrunnelse?: string; @@ -1364,10 +1364,18 @@ export type SvpAvklartOppholdPeriodeDto = { }; export type SvpTilretteleggingArbeidsforholdDto = ( - | SvpTilretteleggingFrilanserDto - | SvpTilretteleggingPrivatArbeidsgiverDto - | SvpTilretteleggingSelvstendigNæringsdrivendeDto - | SvpTilretteleggingVirksomhetDto + | ({ + '@type': 'FR'; + } & SvpTilretteleggingFrilanserDto) + | ({ + '@type': 'PA'; + } & SvpTilretteleggingPrivatArbeidsgiverDto) + | ({ + '@type': 'SvpTilretteleggingSelvstendigNæringsdrivendeDto'; + } & SvpTilretteleggingSelvstendigNæringsdrivendeDto) + | ({ + '@type': 'VI'; + } & SvpTilretteleggingVirksomhetDto) ) & { behovsdato?: string; tilrettelegginger?: Array; @@ -1896,19 +1904,48 @@ export type OverstyringAdopsjonsvilkåretDto = { }; export type OverstyringAksjonspunktDto = ( - | AvklarDekningsgradOverstyringDto - | OverstyrOmsorgOgRettDto - | OverstyringUttakDto - | OverstyringFaktaUttakDto - | OverstyringForutgåendeMedlemskapsvilkårDto - | OverstyringFødselsvilkåretDto - | OverstyringFødselvilkåretFarMedmorDto - | OverstyringMedlemskapsvilkåretDto - | OverstyringOpptjeningsvilkåretDto - | OverstyringSokersOpplysingspliktDto - | OverstyringSøknadsfristvilkåretDto - | OverstyringAdopsjonsvilkåretDto - | OverstyringAvklarStartdatoForPeriodenDto + | ({ + '@type': '6016'; + } & AvklarDekningsgradOverstyringDto) + | ({ + '@type': '6018'; + } & OverstyrOmsorgOgRettDto) + | ({ + '@type': '6008'; + } & OverstyringUttakDto) + | ({ + '@type': '6065'; + } & OverstyringFaktaUttakDto) + | ({ + '@type': 'OverstyringForutgåendeMedlemskapsvilkårDto'; + } & OverstyringForutgåendeMedlemskapsvilkårDto) + | ({ + '@type': 'OverstyringFødselsvilkåretDto'; + } & OverstyringFødselsvilkåretDto) + | ({ + '@type': 'OverstyringFødselvilkåretFarMedmorDto'; + } & OverstyringFødselvilkåretFarMedmorDto) + | ({ + '@type': 'OverstyringMedlemskapsvilkåretDto'; + } & OverstyringMedlemskapsvilkåretDto) + | ({ + '@type': 'OverstyringOpptjeningsvilkåretDto'; + } & OverstyringOpptjeningsvilkåretDto) + | ({ + '@type': '6002'; + } & OverstyringSokersOpplysingspliktDto) + | ({ + '@type': 'OverstyringSøknadsfristvilkåretDto'; + } & OverstyringSøknadsfristvilkåretDto) + | ({ + '@type': 'OverstyringAdopsjonsvilkåretDto'; + } & OverstyringAdopsjonsvilkåretDto) + | ({ + '@type': 'OverstyringAdopsjonsvilkåretDto'; + } & OverstyringAdopsjonsvilkåretDto) + | ({ + '@type': '6045'; + } & OverstyringAvklarStartdatoForPeriodenDto) ) & { begrunnelse?: string; }; @@ -2679,19 +2716,19 @@ export type BeregningsgrunnlagPrStatusOgAndelAtDto = { export type BeregningsgrunnlagPrStatusOgAndelDto = ( | ({ - dtoType: 'BeregningsgrunnlagPrStatusOgAndelATDto'; + dtoType: 'AT'; } & BeregningsgrunnlagPrStatusOgAndelAtDto) | ({ - dtoType: 'BeregningsgrunnlagPrStatusOgAndelDtoFelles'; + dtoType: 'GENERELL'; } & BeregningsgrunnlagPrStatusOgAndelDtoFelles) | ({ - dtoType: 'BeregningsgrunnlagPrStatusOgAndelFLDto'; + dtoType: 'FL'; } & BeregningsgrunnlagPrStatusOgAndelFlDto) | ({ - dtoType: 'BeregningsgrunnlagPrStatusOgAndelSNDto'; + dtoType: 'SN'; } & BeregningsgrunnlagPrStatusOgAndelSnDto) | ({ - dtoType: 'BeregningsgrunnlagPrStatusOgAndelYtelseDto'; + dtoType: 'KUN_YTELSE'; } & BeregningsgrunnlagPrStatusOgAndelYtelseDto) ) & { aktivitetStatus?: @@ -3589,16 +3626,16 @@ export type VurderRepresentererStortingetDto = { export type YtelsespesifiktGrunnlagDto = ( | ({ - ytelsetype: 'OmsorgspengeGrunnlagDto'; + ytelsetype: 'OMP'; } & OmsorgspengeGrunnlagDto) | ({ - ytelsetype: 'SvangerskapspengerGrunnlagDto'; + ytelsetype: 'SVP'; } & SvangerskapspengerGrunnlagDto) | ({ - ytelsetype: 'ForeldrepengerGrunnlagDto'; + ytelsetype: 'FP'; } & ForeldrepengerGrunnlagDto) | ({ - ytelsetype: 'FrisinnGrunnlagDto'; + ytelsetype: 'FRISINN'; } & FrisinnGrunnlagDto) ) & { ytelsetype: string; @@ -5610,7 +5647,17 @@ export type SokefeltDto = { searchString: string; }; -export type FamiliehendelseDto = (AvklartDataAdopsjonDto | AvklartDataFodselDto | AvklartDataOmsorgDto) & { +export type FamiliehendelseDto = ( + | ({ + '@type': 'AvklartDataAdopsjonDto'; + } & AvklartDataAdopsjonDto) + | ({ + '@type': 'AvklartDataFodselDto'; + } & AvklartDataFodselDto) + | ({ + '@type': 'AvklartDataOmsorgDto'; + } & AvklartDataOmsorgDto) +) & { soknadType?: 'ST-001' | 'ST-002'; skjaringstidspunkt?: string; }; @@ -6286,13 +6333,13 @@ export type Rettigheter = { export type Sak = ( | ({ - type: 'EsSak'; + type: 'engangsstønad'; } & EsSak) | ({ - type: 'FpSak'; + type: 'foreldrepenger'; } & FpSak) | ({ - type: 'SvpSak'; + type: 'svangerskapspenger'; } & SvpSak) ) & { type: string; @@ -6445,11 +6492,21 @@ export type FødselHendelseDto = { }; export type HendelseDto = ( - | AdressebeskyttelseHendelseDto - | DødHendelseDto - | DødfødselHendelseDto - | FødselHendelseDto - | UtflyttingHendelseDto + | ({ + '@type': 'ADRESSEBESKYTTELSE'; + } & AdressebeskyttelseHendelseDto) + | ({ + '@type': 'DødHendelseDto'; + } & DødHendelseDto) + | ({ + '@type': 'DødfødselHendelseDto'; + } & DødfødselHendelseDto) + | ({ + '@type': 'FødselHendelseDto'; + } & FødselHendelseDto) + | ({ + '@type': 'UTFLYTTING'; + } & UtflyttingHendelseDto) ) & { id: string; endringstype: 'OPPRETTET' | 'KORRIGERT' | 'ANNULLERT' | 'OPPHOERT'; From 40bbf120febf9c2ac5652b008f392e75e3ae6f7a Mon Sep 17 00:00:00 2001 From: johannbm Date: Tue, 19 Aug 2025 08:48:13 +0200 Subject: [PATCH 10/12] fikse opp tsc --- .../src/BesteberegningFaktaIndex.stories.tsx | 33 ++++++++++++------- .../fodsel/src/FodselFaktaIndex.stories.tsx | 25 ++++++++++---- .../src/MedlemskapFaktaIndex.stories.tsx | 27 ++++++++++++++- .../innsyn/src/InnsynProsessIndex.stories.tsx | 20 ++++++++--- .../uttak/src/UttakProsessIndex.stories.tsx | 11 ++++++- .../src/VedtakKlageProsessIndex.stories.tsx | 12 +++++++ .../AdopsjonVilkarProsessIndex.stories.tsx | 33 ++++++++++++++++--- .../src/OmsorgVilkarProsessIndex.stories.tsx | 30 +++++++++++++++-- .../OpptjeningVilkarProsessIndex.stories.tsx | 29 ++++++++++++++-- 9 files changed, 187 insertions(+), 33 deletions(-) diff --git a/packages/fakta/besteberegning/src/BesteberegningFaktaIndex.stories.tsx b/packages/fakta/besteberegning/src/BesteberegningFaktaIndex.stories.tsx index 753913f105a..7819f47b3b1 100644 --- a/packages/fakta/besteberegning/src/BesteberegningFaktaIndex.stories.tsx +++ b/packages/fakta/besteberegning/src/BesteberegningFaktaIndex.stories.tsx @@ -25,11 +25,11 @@ const arbeidsgiverOpplysninger: ArbeidsgiverOpplysningerPerId = { }, }; -const lagAksjonspunkt = (apKode: AksjonspunktKode, status: AksjonspunktStatus, begrunnelse?: string): Aksjonspunkt => ({ - definisjon: apKode, - status, +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.VURDER_INNSYN, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, kanLoses: true, - begrunnelse: begrunnelse ?? null, toTrinnsBehandling: false, toTrinnsBehandlingGodkjent: null, vurderPaNyttArsaker: null, @@ -40,7 +40,7 @@ const lagAksjonspunkt = (apKode: AksjonspunktKode, status: AksjonspunktStatus, b fristTid: null, endretTidspunkt: null, endretAv: null, -}); +} satisfies Aksjonspunkt; const meta = { title: 'fakta/fakta-besteberegning', @@ -67,7 +67,11 @@ export const BesteberegningMedDagpengerOgArbeidÅpentAksjonspunkt: Story = { args: { beregningsgrunnlag: scenarioBG, aksjonspunkterForPanel: [ - lagAksjonspunkt(AksjonspunktKode.KONTROLLER_AUTOMATISK_BESTEBEREGNING, AksjonspunktStatus.OPPRETTET), + { + ...aksjonspunktDefault, + definisjon: AksjonspunktKode.KONTROLLER_AUTOMATISK_BESTEBEREGNING, + status: AksjonspunktStatus.OPPRETTET, + }, ], }, }; @@ -76,11 +80,12 @@ export const BesteberegningMedDagpengerOgArbeidLukketAksjonspunktPåVent: Story args: { beregningsgrunnlag: scenarioBG, aksjonspunkterForPanel: [ - lagAksjonspunkt( - AksjonspunktKode.KONTROLLER_AUTOMATISK_BESTEBEREGNING, - AksjonspunktStatus.UTFORT, - 'Min begrunnelse for at besteberegningen er feil', - ), + { + ...aksjonspunktDefault, + definisjon: AksjonspunktKode.KONTROLLER_AUTOMATISK_BESTEBEREGNING, + status: AksjonspunktStatus.UTFORT, + begrunnelse: 'Min begrunnelse for at besteberegningen er feil', + }, ], }, }; @@ -89,7 +94,11 @@ export const BesteberegningMedAvvik: Story = { args: { beregningsgrunnlag: scenarioBG, aksjonspunkterForPanel: [ - lagAksjonspunkt(AksjonspunktKode.MANUELL_KONTROLL_AV_BESTEBEREGNING, AksjonspunktStatus.OPPRETTET), + { + ...aksjonspunktDefault, + definisjon: AksjonspunktKode.KONTROLLER_AUTOMATISK_BESTEBEREGNING, + status: AksjonspunktStatus.OPPRETTET, + }, ], }, }; diff --git a/packages/fakta/fodsel/src/FodselFaktaIndex.stories.tsx b/packages/fakta/fodsel/src/FodselFaktaIndex.stories.tsx index 00d1f714c40..877c899a215 100644 --- a/packages/fakta/fodsel/src/FodselFaktaIndex.stories.tsx +++ b/packages/fakta/fodsel/src/FodselFaktaIndex.stories.tsx @@ -2,23 +2,36 @@ import type { ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus } from '@navikt/fp-kodeverk'; +import { AksjonspunktKode, AksjonspunktStatus, AksjonspunktType, VilkarType } from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; import type { Aksjonspunkt } from '@navikt/fp-types'; import { FodselFaktaIndex } from './FodselFaktaIndex'; -const apTerminbekreftelse: Aksjonspunkt = { - definisjon: AksjonspunktKode.SJEKK_TERMINBEKREFTELSE, +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.VURDER_INNSYN, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + +const apTerminbekreftelse: Aksjonspunkt = { + ...aksjonspunktDefault, + definisjon: AksjonspunktKode.SJEKK_TERMINBEKREFTELSE, }; const apSjekkManglendeFødsel: Aksjonspunkt = { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.SJEKK_MANGLENDE_FØDSEL, - status: AksjonspunktStatus.OPPRETTET, - begrunnelse: null, - kanLoses: true, }; const merknaderFraBeslutter = { diff --git a/packages/fakta/medlemskap/src/MedlemskapFaktaIndex.stories.tsx b/packages/fakta/medlemskap/src/MedlemskapFaktaIndex.stories.tsx index 36c76e33f37..35a9584e476 100644 --- a/packages/fakta/medlemskap/src/MedlemskapFaktaIndex.stories.tsx +++ b/packages/fakta/medlemskap/src/MedlemskapFaktaIndex.stories.tsx @@ -7,15 +7,17 @@ import { AdresseType, AksjonspunktKode, AksjonspunktStatus, + AksjonspunktType, MedlemskapDekningType, MedlemskapManuellVurderingType, MedlemskapType, OppholdstillatelseType, PersonstatusType, Region, + VilkarType, } from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; -import { type Medlemskap, MedlemskapAvvik, type Soknad } from '@navikt/fp-types'; +import { type Aksjonspunkt, type Medlemskap, MedlemskapAvvik, type Soknad } from '@navikt/fp-types'; import { MedlemskapFaktaIndex } from './MedlemskapFaktaIndex'; @@ -41,6 +43,23 @@ const defaultSoknad = { }, } as Soknad; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + const meta = { title: 'fakta/fakta-medlemskap-v3', component: MedlemskapFaktaIndex, @@ -194,6 +213,7 @@ export const Default: Story = { medlemskap: lagMedlemskap({}), aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.VURDER_MEDLEMSKAPSVILKÅRET, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -212,6 +232,7 @@ export const ForutgåendeMedlemskap: Story = { }), aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.VURDER_FORUTGÅENDE_MEDLEMSKAPSVILKÅR, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -269,6 +290,7 @@ export const VurderingAvMedlemskapMedlemskapMedEtAvvik: Story = { } as Soknad, aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.VURDER_MEDLEMSKAPSVILKÅRET, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, @@ -292,6 +314,7 @@ export const TidligereVurderingAvMedlemskapMedEtAvvik: Story = { }), aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.VURDER_MEDLEMSKAPSVILKÅRET, status: AksjonspunktStatus.UTFORT, begrunnelse: 'Søker har bodd i Gautemala siden 10.09.2024 ', @@ -342,6 +365,7 @@ export const LegacyVurderingAvLøpendeMedlemskap: Story = { }), aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_FORTSATT_MEDLEMSKAP, status: AksjonspunktStatus.UTFORT, begrunnelse: null, @@ -370,6 +394,7 @@ export const LegacyVurdertInngangsvilkårMedlemskap: Story = { }), aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_OPPHOLDSRETT, status: AksjonspunktStatus.UTFORT, begrunnelse: null, diff --git a/packages/prosess/innsyn/src/InnsynProsessIndex.stories.tsx b/packages/prosess/innsyn/src/InnsynProsessIndex.stories.tsx index fbebd138f4f..d535aca6f87 100644 --- a/packages/prosess/innsyn/src/InnsynProsessIndex.stories.tsx +++ b/packages/prosess/innsyn/src/InnsynProsessIndex.stories.tsx @@ -5,9 +5,11 @@ import type { Meta, StoryObj } from '@storybook/react'; import { AksjonspunktKode, AksjonspunktStatus, + AksjonspunktType, BehandlingType, InnsynResultatType, Kommunikasjonsretning, + VilkarType, } from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; import type { Aksjonspunkt, Behandling, Innsyn, InnsynDokument } from '@navikt/fp-types'; @@ -20,12 +22,22 @@ const defaultBehandling = { behandlingPåVent: false, } as Behandling; -const defaultAksjonspunkt: Aksjonspunkt = { +const aksjonspunktDefault = { definisjon: AksjonspunktKode.VURDER_INNSYN, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, kanLoses: true, -}; + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; const meta = { title: 'prosess/innsyn/prosess-innsyn', @@ -53,7 +65,7 @@ type Story = StoryObj; export const PanelForVurderingAvInnsyn: Story = { args: { behandling: defaultBehandling, - aksjonspunkterForPanel: [defaultAksjonspunkt], + aksjonspunkterForPanel: [aksjonspunktDefault], innsyn: { dokumenter: [] as InnsynDokument[], vedtaksdokumentasjon: [ @@ -75,7 +87,7 @@ export const InnsynSattPaVent: Story = { }, aksjonspunkterForPanel: [ { - ...defaultAksjonspunkt, + ...aksjonspunktDefault, status: AksjonspunktStatus.UTFORT, begrunnelse: 'Dette er en begrunnelse', }, diff --git a/packages/prosess/uttak/src/UttakProsessIndex.stories.tsx b/packages/prosess/uttak/src/UttakProsessIndex.stories.tsx index 260151f6b92..a47b438bd4d 100644 --- a/packages/prosess/uttak/src/UttakProsessIndex.stories.tsx +++ b/packages/prosess/uttak/src/UttakProsessIndex.stories.tsx @@ -15,6 +15,7 @@ import { StonadskontoType, UttakArbeidType, UttakUtsettelseType, + VilkarType, } from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; import type { @@ -35,9 +36,17 @@ const åpentAksjonspunkt: Aksjonspunkt[] = [ definisjon: AksjonspunktKode.FASTSETT_UTTAKPERIODER, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, + kanLoses: true, toTrinnsBehandling: true, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, aksjonspunktType: AksjonspunktType.MANUELL, - kanLoses: true, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, }, ]; diff --git a/packages/prosess/vedtak-klage/src/VedtakKlageProsessIndex.stories.tsx b/packages/prosess/vedtak-klage/src/VedtakKlageProsessIndex.stories.tsx index c011ffa46d6..15b85a6d9e4 100644 --- a/packages/prosess/vedtak-klage/src/VedtakKlageProsessIndex.stories.tsx +++ b/packages/prosess/vedtak-klage/src/VedtakKlageProsessIndex.stories.tsx @@ -6,10 +6,12 @@ import { action } from 'storybook/actions'; import { AksjonspunktKode, AksjonspunktStatus, + AksjonspunktType, BehandlingResultatType, KlageAvvistÅrsak, KlageMedholdÅrsak, KlageVurdering as klageVurderingCodes, + VilkarType, } from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withPanelData } from '@navikt/fp-storybook-utils'; import type { Aksjonspunkt, Behandling, KlageVurdering } from '@navikt/fp-types'; @@ -31,6 +33,16 @@ const aksjonspunkterForPanel: Aksjonspunkt[] = [ status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, }, ]; diff --git a/packages/prosess/vilkar-adopsjon/src/AdopsjonVilkarProsessIndex.stories.tsx b/packages/prosess/vilkar-adopsjon/src/AdopsjonVilkarProsessIndex.stories.tsx index 58069ffc0f6..499609292ca 100644 --- a/packages/prosess/vilkar-adopsjon/src/AdopsjonVilkarProsessIndex.stories.tsx +++ b/packages/prosess/vilkar-adopsjon/src/AdopsjonVilkarProsessIndex.stories.tsx @@ -2,12 +2,36 @@ import { type ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus, Avslagsarsak, VilkarUtfallType } from '@navikt/fp-kodeverk'; +import { + AksjonspunktKode, + AksjonspunktStatus, + AksjonspunktType, + Avslagsarsak, + VilkarType, + VilkarUtfallType, +} from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; -import type { Behandling, Vilkar } from '@navikt/fp-types'; +import type { Aksjonspunkt, Behandling, Vilkar } from '@navikt/fp-types'; import { AdopsjonVilkarProsessIndex } from './AdopsjonVilkarProsessIndex'; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.VURDER_INNSYN, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + const meta = { title: 'prosess/prosess-vilkar-adopsjon', component: AdopsjonVilkarProsessIndex, @@ -29,10 +53,9 @@ export const ÅpentAksjonspunkt: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_OM_STONAD_GJELDER_SAMME_BARN, status: AksjonspunktStatus.OPPRETTET, - begrunnelse: null, - kanLoses: true, }, ], readOnlySubmitButton: false, @@ -44,6 +67,7 @@ export const OppfyltVilkår: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_OM_STONAD_GJELDER_SAMME_BARN, status: AksjonspunktStatus.UTFORT, begrunnelse: 'Dette vilkåret er godkjent', @@ -67,6 +91,7 @@ export const AvslåttVilkår: Story = { } as Behandling, aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_OM_STONAD_GJELDER_SAMME_BARN, status: AksjonspunktStatus.UTFORT, begrunnelse: 'Dette vilkåret er avslått', diff --git a/packages/prosess/vilkar-omsorg/src/OmsorgVilkarProsessIndex.stories.tsx b/packages/prosess/vilkar-omsorg/src/OmsorgVilkarProsessIndex.stories.tsx index 535291f86a3..31daab46429 100644 --- a/packages/prosess/vilkar-omsorg/src/OmsorgVilkarProsessIndex.stories.tsx +++ b/packages/prosess/vilkar-omsorg/src/OmsorgVilkarProsessIndex.stories.tsx @@ -2,7 +2,14 @@ import { type ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus, Avslagsarsak, VilkarUtfallType } from '@navikt/fp-kodeverk'; +import { + AksjonspunktKode, + AksjonspunktStatus, + AksjonspunktType, + Avslagsarsak, + VilkarType, + VilkarUtfallType, +} from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; import type { Aksjonspunkt, Behandling } from '@navikt/fp-types'; @@ -18,14 +25,30 @@ export default meta; type Story = StoryObj; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.VURDER_INNSYN, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + export const ÅpentAksjonspunkt: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.MANUELL_VURDERING_AV_OMSORGSVILKARET, status: AksjonspunktStatus.OPPRETTET, - begrunnelse: null, - kanLoses: true, }, ], readOnlySubmitButton: false, @@ -60,6 +83,7 @@ export const AvslåttVilkår: Story = { } as Behandling, aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.MANUELL_VURDERING_AV_OMSORGSVILKARET, status: AksjonspunktStatus.UTFORT, begrunnelse: 'Dette vilkåret er avslått', diff --git a/packages/prosess/vilkar-opptjening/src/OpptjeningVilkarProsessIndex.stories.tsx b/packages/prosess/vilkar-opptjening/src/OpptjeningVilkarProsessIndex.stories.tsx index c7be17728b6..58339ded8bc 100644 --- a/packages/prosess/vilkar-opptjening/src/OpptjeningVilkarProsessIndex.stories.tsx +++ b/packages/prosess/vilkar-opptjening/src/OpptjeningVilkarProsessIndex.stories.tsx @@ -2,7 +2,13 @@ import { type ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus, VilkarUtfallType } from '@navikt/fp-kodeverk'; +import { + AksjonspunktKode, + AksjonspunktStatus, + AksjonspunktType, + VilkarType, + VilkarUtfallType, +} from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; import type { Aksjonspunkt, Opptjening } from '@navikt/fp-types'; @@ -32,6 +38,23 @@ const defaultOpptjening = { }, } as Opptjening; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.OMSORGSOVERTAKELSE, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + const meta = { title: 'prosess/prosess-vilkar-opptjening', component: OpptjeningVilkarProsessIndex, @@ -53,6 +76,7 @@ export const ÅpentAksjonspunkt: Story = { opptjening: defaultOpptjening, aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.SVANGERSKAPSVILKARET, status: AksjonspunktStatus.OPPRETTET, }, @@ -66,11 +90,12 @@ export const ÅpentAksjonspunktSvangerskapspenger: Story = { opptjening: defaultOpptjening, aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, definisjon: AksjonspunktKode.SVANGERSKAPSVILKARET, status: AksjonspunktStatus.OPPRETTET, begrunnelse: null, }, - ] as Aksjonspunkt[], + ], }, }; From 202c6fa958d055dad8d749b104f3b9f5627ce5b1 Mon Sep 17 00:00:00 2001 From: johannbm Date: Tue, 19 Aug 2025 09:09:23 +0200 Subject: [PATCH 11/12] oppdater typer --- package.json | 2 +- .../UttakFaktaE\303\270sIndex.stories.tsx" | 37 +- packages/types/src/apiDtoGenerert.ts | 175 ++++++---- yarn.lock | 324 +++++++++++++++++- 4 files changed, 468 insertions(+), 70 deletions(-) diff --git a/package.json b/package.json index 0b3ec4743d5..40d69cd3909 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "packages/**/*" ], "devDependencies": { - "@hey-api/openapi-ts": "0.79.1", + "@hey-api/openapi-ts": "0.80.13", "@navikt/aksel-stylelint": "7.28.0", "@sentry/cli": "2.52.0", "@storybook/addon-a11y": "9.1.2", diff --git "a/packages/fakta/uttak-e\303\270s/src/UttakFaktaE\303\270sIndex.stories.tsx" "b/packages/fakta/uttak-e\303\270s/src/UttakFaktaE\303\270sIndex.stories.tsx" index 4366773bc08..af99e7b769a 100644 --- "a/packages/fakta/uttak-e\303\270s/src/UttakFaktaE\303\270sIndex.stories.tsx" +++ "b/packages/fakta/uttak-e\303\270s/src/UttakFaktaE\303\270sIndex.stories.tsx" @@ -2,12 +2,36 @@ import type { ComponentProps } from 'react'; import type { Meta, StoryObj } from '@storybook/react'; -import { AksjonspunktKode, AksjonspunktStatus, RelasjonsRolleType, UttakPeriodeType } from '@navikt/fp-kodeverk'; +import { + AksjonspunktKode, + AksjonspunktStatus, + AksjonspunktType, + RelasjonsRolleType, + UttakPeriodeType, + VilkarType, +} from '@navikt/fp-kodeverk'; import { type PanelDataArgs, withMellomlagretFormData, withPanelData } from '@navikt/fp-storybook-utils'; import type { Aksjonspunkt, Fagsak } from '@navikt/fp-types'; import { UttakFaktaEøsIndex } from './UttakFaktaEøsIndex'; +const aksjonspunktDefault = { + definisjon: AksjonspunktKode.VURDER_INNSYN, + status: AksjonspunktStatus.OPPRETTET, + begrunnelse: null, + kanLoses: true, + toTrinnsBehandling: false, + toTrinnsBehandlingGodkjent: null, + vurderPaNyttArsaker: null, + besluttersBegrunnelse: null, + aksjonspunktType: AksjonspunktType.AUTOPUNKT, + vilkarType: VilkarType.OMSORGSVILKARET, + erAktivt: true, + fristTid: null, + endretTidspunkt: null, + endretAv: null, +} satisfies Aksjonspunkt; + const meta = { title: 'fakta/fakta-uttak-eøs', component: UttakFaktaEøsIndex, @@ -20,10 +44,9 @@ const meta = { submittable: true, aksjonspunkterForPanel: [ { - begrunnelse: null, - status: AksjonspunktStatus.OPPRETTET, + ...aksjonspunktDefault, definisjon: AksjonspunktKode.AVKLAR_UTTAK_I_EØS_FOR_ANNENPART, - } as Aksjonspunkt, + }, ], }, render: args => , @@ -67,10 +90,11 @@ export const AksjonspunktErUtførtHvorIngenPerioderErRegistrert: Story = { args: { aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, begrunnelse: 'Dette er en begrunnelse', status: AksjonspunktStatus.UTFORT, definisjon: AksjonspunktKode.AVKLAR_UTTAK_I_EØS_FOR_ANNENPART, - } as Aksjonspunkt, + }, ], annenForelderUttakEøs: [], }, @@ -81,10 +105,11 @@ export const OverstyringSkalIkkeVæreTilgjengligHvisDetForeliggerAksjonspunktSom kanOverstyre: true, aksjonspunkterForPanel: [ { + ...aksjonspunktDefault, begrunnelse: null, status: AksjonspunktStatus.UTFORT, definisjon: AksjonspunktKode.AVKLAR_UTTAK_I_EØS_FOR_ANNENPART, - } as Aksjonspunkt, + }, ], annenForelderUttakEøs: [ { diff --git a/packages/types/src/apiDtoGenerert.ts b/packages/types/src/apiDtoGenerert.ts index 89ea6f2eaae..ed73b01e018 100644 --- a/packages/types/src/apiDtoGenerert.ts +++ b/packages/types/src/apiDtoGenerert.ts @@ -408,6 +408,7 @@ export type AksjonspunktDto = { | '5074' | '5101' | '5102' + | '5103' | '6002' | '6003' | '6004' @@ -424,6 +425,7 @@ export type AksjonspunktDto = { | '6016' | '6018' | '6017' + | '6103' | '7001' | '7002' | '7003' @@ -702,9 +704,9 @@ export type ArbeidsforholdDto = { export type Arbeidsgiver = { erVirksomhet?: boolean; identifikator?: string; - aktørId?: string; indexKey?: string; orgnr?: string; + aktørId?: string; }; export type AvklarAleneomsorgVurderingDto = { @@ -768,7 +770,7 @@ export type BekreftetAksjonspunktDto = ( '@type': '5035'; } & KlageVurderingResultatAksjonspunktDto) | ({ - '@type': 'VurderForutgåendeMedlemskapDto'; + '@type': '5102'; } & VurderForutgåendeMedlemskapDto) | ({ '@type': '5101'; @@ -786,7 +788,7 @@ export type BekreftetAksjonspunktDto = ( '@type': '5091'; } & BekreftSvangerskapspengerDto) | ({ - '@type': 'BekreftSvangerskapspengervilkårDto'; + '@type': '5092'; } & BekreftSvangerskapspengervilkårDto) | ({ '@type': '5017'; @@ -795,10 +797,10 @@ export type BekreftetAksjonspunktDto = ( '@type': '5007'; } & SoknadsfristAksjonspunktDto) | ({ - '@type': 'VurderSøknadsfristDto'; + '@type': '5043'; } & VurderSøknadsfristDto) | ({ - '@type': 'KontrollerStorEtterbetalingSøkerDto'; + '@type': '5029'; } & KontrollerStorEtterbetalingSøkerDto) | ({ '@type': '5084'; @@ -813,13 +815,13 @@ export type BekreftetAksjonspunktDto = ( '@type': '5086'; } & AvklarAnnenforelderHarRettDto) | ({ - '@type': 'FastsetteUttakKontrollerAnnenpartEØSDto'; + '@type': '5069'; } & FastsetteUttakKontrollerAnnenpartEøsDto) | ({ - '@type': 'FastsetteUttakKontrollerOpplysningerOmDødDto'; + '@type': '5076'; } & FastsetteUttakKontrollerOpplysningerOmDødDto) | ({ - '@type': 'FastsetteUttakKontrollerOpplysningerOmSøknadsfristDto'; + '@type': '5077'; } & FastsetteUttakKontrollerOpplysningerOmSøknadsfristDto) | ({ '@type': '5073'; @@ -830,6 +832,9 @@ export type BekreftetAksjonspunktDto = ( | ({ '@type': '5072'; } & FastsetteUttakStortingsrepresentantDto) + | ({ + '@type': '5103'; + } & EøsUttakDto) | ({ '@type': '5066'; } & GraderingAktivitetUtenBgDto) @@ -846,22 +851,22 @@ export type BekreftetAksjonspunktDto = ( '@type': '5028'; } & ForeslaVedtakManueltAksjonspuntDto) | ({ - '@type': 'ForeslåVedtakAksjonspunktDto'; + '@type': '5015'; } & ForeslåVedtakAksjonspunktDto) | ({ - '@type': 'VurdereAnnenYteleseFørVedtakDto'; + '@type': '5033'; } & VurdereAnnenYteleseFørVedtakDto) | ({ - '@type': 'VurdereDokumentFørVedtakDto'; + '@type': '5034'; } & VurdereDokumentFørVedtakDto) | ({ - '@type': 'VurdereInntektsmeldingFørVedtakDto'; + '@type': '5003'; } & VurdereInntektsmeldingFørVedtakDto) | ({ '@type': '5012'; } & ManuellRegistreringEngangsstonadDto) | ({ - '@type': 'ManuellRegistreringEndringsøknadDto'; + '@type': '5057'; } & ManuellRegistreringEndringsøknadDto) | ({ '@type': '5040'; @@ -907,6 +912,18 @@ export type EgenVirksomhetDto = { virksomheter?: Array; }; +export type EøsUttakDto = { + perioder: Array; + begrunnelse?: string; +}; + +export type EøsUttakPeriodeDto = { + fom: string; + tom: string; + trekkdager: number; + trekkonto: 'FELLESPERIODE' | 'MØDREKVOTE' | 'FEDREKVOTE' | 'FORELDREPENGER' | 'FORELDREPENGER_FØR_FØDSEL' | '-'; +}; + export type FaktaUttakPeriodeDto = { fom: string; tom: string; @@ -1359,7 +1376,7 @@ export type SvpAvklartOppholdPeriodeDto = { fom: string; tom: string; oppholdÅrsak: 'SYKEPENGER' | 'FERIE'; - oppholdKilde?: 'SØKNAD' | 'INNTEKTSMELDING' | 'REGISTRERT_AV_SAKSBEHANDLER'; + oppholdKilde?: 'SØKNAD' | 'INNTEKTSMELDING' | 'REGISTRERT_AV_SAKSBEHANDLER' | 'TIDLIGERE_VEDTAK'; forVisning?: boolean; }; @@ -1371,7 +1388,7 @@ export type SvpTilretteleggingArbeidsforholdDto = ( '@type': 'PA'; } & SvpTilretteleggingPrivatArbeidsgiverDto) | ({ - '@type': 'SvpTilretteleggingSelvstendigNæringsdrivendeDto'; + '@type': 'SN'; } & SvpTilretteleggingSelvstendigNæringsdrivendeDto) | ({ '@type': 'VI'; @@ -1601,6 +1618,7 @@ export type UttakResultatPeriodeLagreDto = { | '4105' | '4106' | '4107' + | '4108' | '4110' | '4111' | '4112' @@ -1913,35 +1931,38 @@ export type OverstyringAksjonspunktDto = ( | ({ '@type': '6008'; } & OverstyringUttakDto) + | ({ + '@type': '6103'; + } & OverstyringEøsUttakDto) | ({ '@type': '6065'; } & OverstyringFaktaUttakDto) | ({ - '@type': 'OverstyringForutgåendeMedlemskapsvilkårDto'; + '@type': '6017'; } & OverstyringForutgåendeMedlemskapsvilkårDto) | ({ - '@type': 'OverstyringFødselsvilkåretDto'; + '@type': '6003'; } & OverstyringFødselsvilkåretDto) | ({ - '@type': 'OverstyringFødselvilkåretFarMedmorDto'; + '@type': '6009'; } & OverstyringFødselvilkåretFarMedmorDto) | ({ - '@type': 'OverstyringMedlemskapsvilkåretDto'; + '@type': '6005'; } & OverstyringMedlemskapsvilkåretDto) | ({ - '@type': 'OverstyringOpptjeningsvilkåretDto'; + '@type': '6011'; } & OverstyringOpptjeningsvilkåretDto) | ({ '@type': '6002'; } & OverstyringSokersOpplysingspliktDto) | ({ - '@type': 'OverstyringSøknadsfristvilkåretDto'; + '@type': '6006'; } & OverstyringSøknadsfristvilkåretDto) | ({ - '@type': 'OverstyringAdopsjonsvilkåretDto'; + '@type': '6010'; } & OverstyringAdopsjonsvilkåretDto) | ({ - '@type': 'OverstyringAdopsjonsvilkåretDto'; + '@type': '6010'; } & OverstyringAdopsjonsvilkåretDto) | ({ '@type': '6045'; @@ -1956,6 +1977,11 @@ export type OverstyringAvklarStartdatoForPeriodenDto = { opprinneligDato?: string; }; +export type OverstyringEøsUttakDto = { + perioder: Array; + begrunnelse?: string; +}; + export type OverstyringFaktaUttakDto = { perioder: Array; begrunnelse?: string; @@ -4705,6 +4731,10 @@ export type AktivitetSaldoDto = { saldo?: number; }; +export type KontoReduksjoner = { + annenForelderEøsUttak?: number; +}; + export type KontoUtvidelser = { prematurdager?: number; flerbarnsdager?: number; @@ -4733,6 +4763,7 @@ export type StønadskontoDto = { aktivitetSaldoDtoList?: Array; gyldigForbruk?: boolean; kontoUtvidelser?: KontoUtvidelser; + kontoReduksjoner?: KontoReduksjoner; }; export type BehandlingMedUttaksperioderDto = { @@ -4911,6 +4942,7 @@ export type UttakResultatPeriodeDto = { | '4105' | '4106' | '4107' + | '4108' | '4110' | '4111' | '4112' @@ -5545,7 +5577,8 @@ export type HistorikkinnslagDto = { | 'VEDTAK' | 'VURDER_FARESIGNALER' | 'FAKTA_OM_UTTAK_DOKUMENTASJON' - | 'FAKTA_UTTAK'; + | 'FAKTA_UTTAK' + | 'FAKTA_UTTAK_EØS'; opprettetTidspunkt?: string; dokumenter?: Array; tittel?: string; @@ -6291,6 +6324,13 @@ export type EsSak = { vedtak?: Array; }; +export type EøsUttaksperiode = { + fom?: string; + tom?: string; + trekkdager?: number; + konto?: 'FORELDREPENGER' | 'MØDREKVOTE' | 'FEDREKVOTE' | 'FELLESPERIODE' | 'FORELDREPENGER_FØR_FØDSEL'; +}; + export type FpSak = { saksnummer?: string; aktørId?: string; @@ -6496,13 +6536,13 @@ export type HendelseDto = ( '@type': 'ADRESSEBESKYTTELSE'; } & AdressebeskyttelseHendelseDto) | ({ - '@type': 'DødHendelseDto'; + '@type': 'DØD'; } & DødHendelseDto) | ({ - '@type': 'DødfødselHendelseDto'; + '@type': 'DØDFØDSEL'; } & DødfødselHendelseDto) | ({ - '@type': 'FødselHendelseDto'; + '@type': 'FØDSEL'; } & FødselHendelseDto) | ({ '@type': 'UTFLYTTING'; @@ -7878,6 +7918,28 @@ export type GetStonadskontoerGittUttaksperioderResponses = { export type GetStonadskontoerGittUttaksperioderResponse = GetStonadskontoerGittUttaksperioderResponses[keyof GetStonadskontoerGittUttaksperioderResponses]; +export type HentAnnenpartPerioderIEøsData = { + body?: never; + path?: never; + query: { + /** + * behandlingUUID + */ + uuid: UuidDto; + }; + url: '/api/behandling/uttak/uttak-eos-annenpart'; +}; + +export type HentAnnenpartPerioderIEøsResponses = { + /** + * default response + */ + default: Array; +}; + +export type HentAnnenpartPerioderIEøsResponse = + HentAnnenpartPerioderIEøsResponses[keyof HentAnnenpartPerioderIEøsResponses]; + export type HentArbeidsforholdData = { body?: never; path?: never; @@ -9142,22 +9204,6 @@ export type HentInfOmBehandlingerMedDiffResponses = { default: unknown; }; -export type HentMigreringInputData = { - body?: never; - path?: never; - query: { - behandlingUuid: string; - }; - url: '/api/forvaltningBeregning/hentMigreringInput'; -}; - -export type HentMigreringInputResponses = { - /** - * default response - */ - default: unknown; -}; - export type HentRefusjonskravperioderInputData = { body?: never; path?: never; @@ -9204,22 +9250,6 @@ export type LagreNySatsResponses = { export type LagreNySatsResponse = LagreNySatsResponses[keyof LagreNySatsResponses]; -export type MigrerSakData = { - body?: never; - path?: never; - query: { - saksnummer: SaksnummerDto; - }; - url: '/api/forvaltningBeregning/migrerSak'; -}; - -export type MigrerSakResponses = { - /** - * default response - */ - default: unknown; -}; - export type OpphørRefusjonInntektsmeldingData = { body: EndreInntektsmeldingDto; path?: never; @@ -10166,6 +10196,33 @@ export type SetAksjonspunktAvbruttResponses = { 200: unknown; }; +export type SetBehandlingKøetData = { + body?: never; + path?: never; + query: { + behandlingUuid: BehandlingIdDto; + }; + url: '/api/forvaltningTeknisk/sett-behandling-koet'; +}; + +export type SetBehandlingKøetErrors = { + /** + * Fant ikke aktuelt aksjonspunkt. + */ + 400: unknown; + /** + * Feilet pga ukjent feil. + */ + 500: unknown; +}; + +export type SetBehandlingKøetResponses = { + /** + * Aksjonspunkt avbrutt. + */ + 200: unknown; +}; + export type SynkPostnummerData = { body?: never; path?: never; diff --git a/yarn.lock b/yarn.lock index 06d45231bc2..9a0b87663fe 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1212,6 +1212,38 @@ __metadata: languageName: node linkType: hard +"@hey-api/json-schema-ref-parser@npm:1.0.6": + version: 1.0.6 + resolution: "@hey-api/json-schema-ref-parser@npm:1.0.6" + dependencies: + "@jsdevtools/ono": ^7.1.3 + "@types/json-schema": ^7.0.15 + js-yaml: ^4.1.0 + lodash: ^4.17.21 + checksum: 6ac69f6cba5f8cfae7a7633c4236c3d18550e3b8b2506e38d8599b7ab60bd2baf8998939e9aa94b72b22f054e867582b858b021ea50c461af087c41777ee4029 + languageName: node + linkType: hard + +"@hey-api/openapi-ts@npm:0.80.13": + version: 0.80.13 + resolution: "@hey-api/openapi-ts@npm:0.80.13" + dependencies: + "@hey-api/json-schema-ref-parser": 1.0.6 + ansi-colors: 4.1.3 + c12: 2.0.1 + color-support: 1.1.3 + commander: 13.0.0 + handlebars: 4.7.8 + open: 10.1.2 + semver: 7.7.2 + peerDependencies: + typescript: ^5.5.3 + bin: + openapi-ts: bin/index.cjs + checksum: 88fb9884b139969bd21fc09e9ea2aebba02e508231bc47b644804b670bb8eb8699d5e0d30de5676ca9ca6fc9663f4161e6b515966056388f1049b4d66c2cabbb + languageName: node + linkType: hard + "@humanfs/core@npm:^0.19.1": version: 0.19.1 resolution: "@humanfs/core@npm:0.19.1" @@ -1430,6 +1462,13 @@ __metadata: languageName: node linkType: hard +"@jsdevtools/ono@npm:^7.1.3": + version: 7.1.3 + resolution: "@jsdevtools/ono@npm:7.1.3" + checksum: 2297fcd472ba810bffe8519d2249171132844c7174f3a16634f9260761c8c78bc0428a4190b5b6d72d45673c13918ab9844d706c3ed4ef8f62ab11a2627a08ad + languageName: node + linkType: hard + "@keyv/serialize@npm:^1.1.0": version: 1.1.0 resolution: "@keyv/serialize@npm:1.1.0" @@ -6952,7 +6991,7 @@ __metadata: languageName: node linkType: hard -"ansi-colors@npm:^4.1.1": +"ansi-colors@npm:4.1.3, ansi-colors@npm:^4.1.1": version: 4.1.3 resolution: "ansi-colors@npm:4.1.3" checksum: a9c2ec842038a1fabc7db9ece7d3177e2fe1c5dc6f0c51ecfbf5f39911427b89c00b5dc6b8bd95f82a26e9b16aaae2e83d45f060e98070ce4d1333038edceb0e @@ -7429,6 +7468,15 @@ __metadata: languageName: node linkType: hard +"bundle-name@npm:^4.1.0": + version: 4.1.0 + resolution: "bundle-name@npm:4.1.0" + dependencies: + run-applescript: ^7.0.0 + checksum: 1d966c8d2dbf4d9d394e53b724ac756c2414c45c01340b37743621f59cc565a435024b394ddcb62b9b335d1c9a31f4640eb648c3fec7f97ee74dc0694c9beb6c + languageName: node + linkType: hard + "byte-size@npm:8.1.1": version: 8.1.1 resolution: "byte-size@npm:8.1.1" @@ -7436,6 +7484,31 @@ __metadata: languageName: node linkType: hard +"c12@npm:2.0.1": + version: 2.0.1 + resolution: "c12@npm:2.0.1" + dependencies: + chokidar: ^4.0.1 + confbox: ^0.1.7 + defu: ^6.1.4 + dotenv: ^16.4.5 + giget: ^1.2.3 + jiti: ^2.3.0 + mlly: ^1.7.1 + ohash: ^1.1.4 + pathe: ^1.1.2 + perfect-debounce: ^1.0.0 + pkg-types: ^1.2.0 + rc9: ^2.1.2 + peerDependencies: + magicast: ^0.3.5 + peerDependenciesMeta: + magicast: + optional: true + checksum: fee1d576b426efdc5cfc836939241a794aaaa29556653c7dafbad68de025b9181dd46f7a0498665fbf8e6ee37a12fb3ab63e780c0524c9a6320da6cb2ddd8246 + languageName: node + linkType: hard + "cac@npm:^6.7.14": version: 6.7.14 resolution: "cac@npm:6.7.14" @@ -7621,6 +7694,15 @@ __metadata: languageName: node linkType: hard +"chokidar@npm:^4.0.1": + version: 4.0.3 + resolution: "chokidar@npm:4.0.3" + dependencies: + readdirp: ^4.0.1 + checksum: a8765e452bbafd04f3f2fad79f04222dd65f43161488bb6014a41099e6ca18d166af613d59a90771908c1c823efa3f46ba36b86ac50b701c20c1b9908c5fe36e + languageName: node + linkType: hard + "chownr@npm:^2.0.0": version: 2.0.0 resolution: "chownr@npm:2.0.0" @@ -7649,6 +7731,15 @@ __metadata: languageName: node linkType: hard +"citty@npm:^0.1.6": + version: 0.1.6 + resolution: "citty@npm:0.1.6" + dependencies: + consola: ^3.2.3 + checksum: 3fbcaaea92d328deddb5aba7d629d9076d4f1aa0338f59db7ea647a8f51eedc14b7f6218c87ad03c9e3c126213ba87d13d7774f9c30d64209f4b074aa83bd6ab + languageName: node + linkType: hard + "classnames@npm:2.5.1": version: 2.5.1 resolution: "classnames@npm:2.5.1" @@ -7838,6 +7929,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:13.0.0": + version: 13.0.0 + resolution: "commander@npm:13.0.0" + checksum: 3981c8c197c93ceeb949f6e2250785ea319209c502b7c53d6dc36148347739c72b15de2e4bcad80bedc3f8e1e5544a89ca4e7d673b2f3238ac51b44292ad08d6 + languageName: node + linkType: hard + "commander@npm:^13.0.0": version: 13.1.0 resolution: "commander@npm:13.1.0" @@ -7895,6 +7993,20 @@ __metadata: languageName: node linkType: hard +"confbox@npm:^0.1.7, confbox@npm:^0.1.8": + version: 0.1.8 + resolution: "confbox@npm:0.1.8" + checksum: 5c7718ab22cf9e35a31c21ef124156076ae8c9dc65e6463d54961caf5a1d529284485a0fdf83fd23b27329f3b75b0c8c07d2e36c699f5151a2efe903343f976a + languageName: node + linkType: hard + +"consola@npm:^3.2.3, consola@npm:^3.4.0": + version: 3.4.2 + resolution: "consola@npm:3.4.2" + checksum: 32d1339e0505842f033ca34cb4572a841281caa367f438b785d3b284ab2a06134f009e605908480402c5f57f56c1e3210090c37e6417923416f76ce730d39361 + languageName: node + linkType: hard + "console-control-strings@npm:^1.1.0": version: 1.1.0 resolution: "console-control-strings@npm:1.1.0" @@ -8306,6 +8418,23 @@ __metadata: languageName: node linkType: hard +"default-browser-id@npm:^5.0.0": + version: 5.0.0 + resolution: "default-browser-id@npm:5.0.0" + checksum: 185bfaecec2c75fa423544af722a3469b20704c8d1942794a86e4364fe7d9e8e9f63241a5b769d61c8151993bc65833a5b959026fa1ccea343b3db0a33aa6deb + languageName: node + linkType: hard + +"default-browser@npm:^5.2.1": + version: 5.2.1 + resolution: "default-browser@npm:5.2.1" + dependencies: + bundle-name: ^4.1.0 + default-browser-id: ^5.0.0 + checksum: afab7eff7b7f5f7a94d9114d1ec67273d3fbc539edf8c0f80019879d53aa71e867303c6f6d7cffeb10a6f3cfb59d4f963dba3f9c96830b4540cc7339a1bf9840 + languageName: node + linkType: hard + "defaults@npm:^1.0.3": version: 1.0.4 resolution: "defaults@npm:1.0.4" @@ -8333,6 +8462,13 @@ __metadata: languageName: node linkType: hard +"define-lazy-prop@npm:^3.0.0": + version: 3.0.0 + resolution: "define-lazy-prop@npm:3.0.0" + checksum: 54884f94caac0791bf6395a3ec530ce901cf71c47b0196b8754f3fd17edb6c0e80149c1214429d851873bb0d689dbe08dcedbb2306dc45c8534a5934723851b6 + languageName: node + linkType: hard + "define-properties@npm:^1.1.3, define-properties@npm:^1.2.1": version: 1.2.1 resolution: "define-properties@npm:1.2.1" @@ -8344,6 +8480,13 @@ __metadata: languageName: node linkType: hard +"defu@npm:^6.1.4": + version: 6.1.4 + resolution: "defu@npm:6.1.4" + checksum: 40e3af6338f195ac1564f53d1887fa2d0429ac7e8c081204bc4d29191180059d3952b5f4e08fe5df8d59eb873aa26e9c88b56d4fac699673d4a372c93620b229 + languageName: node + linkType: hard + "delayed-stream@npm:~1.0.0": version: 1.0.0 resolution: "delayed-stream@npm:1.0.0" @@ -8365,6 +8508,13 @@ __metadata: languageName: node linkType: hard +"destr@npm:^2.0.3": + version: 2.0.5 + resolution: "destr@npm:2.0.5" + checksum: e6d5b9e922f528527cd98035249b4d34077828debd2be448a33e268ac1f803bd9a53e7cf0f5184ef68a67573b7f0a6033a89913f61eadaf0e180de49b148606e + languageName: node + linkType: hard + "detect-indent@npm:^5.0.0": version: 5.0.0 resolution: "detect-indent@npm:5.0.0" @@ -9621,6 +9771,7 @@ __metadata: version: 0.0.0-use.local resolution: "fp-frontend@workspace:." dependencies: + "@hey-api/openapi-ts": 0.80.13 "@navikt/aksel-stylelint": 7.28.0 "@sentry/cli": 2.52.0 "@storybook/addon-a11y": 9.1.2 @@ -9870,6 +10021,23 @@ __metadata: languageName: node linkType: hard +"giget@npm:^1.2.3": + version: 1.2.5 + resolution: "giget@npm:1.2.5" + dependencies: + citty: ^0.1.6 + consola: ^3.4.0 + defu: ^6.1.4 + node-fetch-native: ^1.6.6 + nypm: ^0.5.4 + pathe: ^2.0.3 + tar: ^6.2.1 + bin: + giget: dist/cli.mjs + checksum: 9263ccbcb446f2182b73b4e494de9419275dbb0b83e93c2b051e936abfa087259bc5bd471a5f069cd1dc40a312c5cac2247c23a45cebbc31a042c6eb51887857 + languageName: node + linkType: hard + "git-raw-commits@npm:^3.0.0": version: 3.0.0 resolution: "git-raw-commits@npm:3.0.0" @@ -10079,7 +10247,7 @@ __metadata: languageName: node linkType: hard -"handlebars@npm:^4.7.7": +"handlebars@npm:4.7.8, handlebars@npm:^4.7.7": version: 4.7.8 resolution: "handlebars@npm:4.7.8" dependencies: @@ -10591,6 +10759,15 @@ __metadata: languageName: node linkType: hard +"is-docker@npm:^3.0.0": + version: 3.0.0 + resolution: "is-docker@npm:3.0.0" + bin: + is-docker: cli.js + checksum: b698118f04feb7eaf3338922bd79cba064ea54a1c3db6ec8c0c8d8ee7613e7e5854d802d3ef646812a8a3ace81182a085dfa0a71cc68b06f3fa794b9783b3c90 + languageName: node + linkType: hard + "is-extglob@npm:^2.1.1": version: 2.1.1 resolution: "is-extglob@npm:2.1.1" @@ -10651,6 +10828,17 @@ __metadata: languageName: node linkType: hard +"is-inside-container@npm:^1.0.0": + version: 1.0.0 + resolution: "is-inside-container@npm:1.0.0" + dependencies: + is-docker: ^3.0.0 + bin: + is-inside-container: cli.js + checksum: c50b75a2ab66ab3e8b92b3bc534e1ea72ca25766832c0623ac22d134116a98bcf012197d1caabe1d1c4bd5f84363d4aa5c36bb4b585fbcaf57be172cd10a1a03 + languageName: node + linkType: hard + "is-interactive@npm:^1.0.0": version: 1.0.0 resolution: "is-interactive@npm:1.0.0" @@ -10872,6 +11060,15 @@ __metadata: languageName: node linkType: hard +"is-wsl@npm:^3.1.0": + version: 3.1.0 + resolution: "is-wsl@npm:3.1.0" + dependencies: + is-inside-container: ^1.0.0 + checksum: f9734c81f2f9cf9877c5db8356bfe1ff61680f1f4c1011e91278a9c0564b395ae796addb4bf33956871041476ec82c3e5260ed57b22ac91794d4ae70a1d2f0a9 + languageName: node + linkType: hard + "isarray@npm:^2.0.5": version: 2.0.5 resolution: "isarray@npm:2.0.5" @@ -10977,7 +11174,7 @@ __metadata: languageName: node linkType: hard -"jiti@npm:^2.4.2": +"jiti@npm:^2.3.0, jiti@npm:^2.4.2": version: 2.5.1 resolution: "jiti@npm:2.5.1" bin: @@ -12090,6 +12287,18 @@ __metadata: languageName: node linkType: hard +"mlly@npm:^1.7.1, mlly@npm:^1.7.4": + version: 1.7.4 + resolution: "mlly@npm:1.7.4" + dependencies: + acorn: ^8.14.0 + pathe: ^2.0.1 + pkg-types: ^1.3.0 + ufo: ^1.5.4 + checksum: a290da940d208f9d77ceed7ed1db3397e37ff083d28bf75e3c92097a8e58967a2b2e2bea33fdcdc63005e2987854cd081dd0621461d89eee4b61c977b5fa020c + languageName: node + linkType: hard + "modify-values@npm:^1.0.1": version: 1.0.1 resolution: "modify-values@npm:1.0.1" @@ -12244,6 +12453,13 @@ __metadata: languageName: node linkType: hard +"node-fetch-native@npm:^1.6.6": + version: 1.6.7 + resolution: "node-fetch-native@npm:1.6.7" + checksum: c564e4f098b2ee5f56569a5f7a3c81b86dd11eb626460c332930fbff180df727bf44067268b2f19e646ac2e87632662dabd362df4b6a93c7bd898a94a3af9cb1 + languageName: node + linkType: hard + "node-fetch@npm:2.6.7": version: 2.6.7 resolution: "node-fetch@npm:2.6.7" @@ -12576,6 +12792,22 @@ __metadata: languageName: node linkType: hard +"nypm@npm:^0.5.4": + version: 0.5.4 + resolution: "nypm@npm:0.5.4" + dependencies: + citty: ^0.1.6 + consola: ^3.4.0 + pathe: ^2.0.3 + pkg-types: ^1.3.1 + tinyexec: ^0.3.2 + ufo: ^1.5.4 + bin: + nypm: dist/cli.mjs + checksum: cd3710a5a27924120ac4ea3404fe18357742804d6ffae89a1d483dd48b2e0daed899e6bc465295a2e97a09855ed9aa3fe5c25d5e62304615f5f5be0935ca24cf + languageName: node + linkType: hard + "object-assign@npm:^4.1.1": version: 4.1.1 resolution: "object-assign@npm:4.1.1" @@ -12658,6 +12890,13 @@ __metadata: languageName: node linkType: hard +"ohash@npm:^1.1.4": + version: 1.1.6 + resolution: "ohash@npm:1.1.6" + checksum: 1400de55726d8a653618da1b5bf85b8e05c3ff5035071e0a4b483993d0826c98667a54da931042a59058a7fa9c8708b3de3f140eb9148a06cb81d9777b285b1b + languageName: node + linkType: hard + "once@npm:^1.4.0": version: 1.4.0 resolution: "once@npm:1.4.0" @@ -12685,6 +12924,18 @@ __metadata: languageName: node linkType: hard +"open@npm:10.1.2": + version: 10.1.2 + resolution: "open@npm:10.1.2" + dependencies: + default-browser: ^5.2.1 + define-lazy-prop: ^3.0.0 + is-inside-container: ^1.0.0 + is-wsl: ^3.1.0 + checksum: cb40d9786e8c679a1c647c62ad3642bbf1a8cc986c3ec970e99ed13d279c93328ea46bf756db64ea465d2d707815d4e792e7ba906830c3439cc8577cdefb8610 + languageName: node + linkType: hard + "open@npm:^8.0.4, open@npm:^8.4.0": version: 8.4.2 resolution: "open@npm:8.4.2" @@ -13164,7 +13415,14 @@ __metadata: languageName: node linkType: hard -"pathe@npm:^2.0.3": +"pathe@npm:^1.1.2": + version: 1.1.2 + resolution: "pathe@npm:1.1.2" + checksum: ec5f778d9790e7b9ffc3e4c1df39a5bb1ce94657a4e3ad830c1276491ca9d79f189f47609884671db173400256b005f4955f7952f52a2aeb5834ad5fb4faf134 + languageName: node + linkType: hard + +"pathe@npm:^2.0.1, pathe@npm:^2.0.3": version: 2.0.3 resolution: "pathe@npm:2.0.3" checksum: 0602bdd4acb54d91044e0c56f1fb63467ae7d44ab3afea1f797947b0eb2b4d1d91cf0d58d065fdb0a8ab0c4acbbd8d3a5b424983eaf10dd5285d37a16f6e3ee9 @@ -13178,6 +13436,13 @@ __metadata: languageName: node linkType: hard +"perfect-debounce@npm:^1.0.0": + version: 1.0.0 + resolution: "perfect-debounce@npm:1.0.0" + checksum: 220343acf52976947958fef3599849471605316e924fe19c633ae2772576298e9d38f02cefa8db46f06607505ce7b232cbb35c9bfd477bd0329bd0a2ce37c594 + languageName: node + linkType: hard + "picocolors@npm:1.1.1, picocolors@npm:^1.0.0, picocolors@npm:^1.1.1": version: 1.1.1 resolution: "picocolors@npm:1.1.1" @@ -13252,6 +13517,17 @@ __metadata: languageName: node linkType: hard +"pkg-types@npm:^1.2.0, pkg-types@npm:^1.3.0, pkg-types@npm:^1.3.1": + version: 1.3.1 + resolution: "pkg-types@npm:1.3.1" + dependencies: + confbox: ^0.1.8 + mlly: ^1.7.4 + pathe: ^2.0.1 + checksum: 4fa4edb2bb845646cdbd04c5c6bc43cdbc8f02ed4d1c28bfcafb6e65928aece789bcf1335e4cac5f65dfdc376e4bd7435bd509a35e9ec73ef2c076a1b88e289c + languageName: node + linkType: hard + "possible-typed-array-names@npm:^1.0.0": version: 1.1.0 resolution: "possible-typed-array-names@npm:1.1.0" @@ -13508,6 +13784,16 @@ __metadata: languageName: node linkType: hard +"rc9@npm:^2.1.2": + version: 2.1.2 + resolution: "rc9@npm:2.1.2" + dependencies: + defu: ^6.1.4 + destr: ^2.0.3 + checksum: aaa8f962a9a6a89981e2da75dad71117fe0f856bb55fecf793cd42ee0badc1cb92e6bb7cd25a9473e2d3c968ac29e507384ce52c4e76bbd63ac5649d3d7c2ab3 + languageName: node + linkType: hard + "react-day-picker@npm:9.7.0": version: 9.7.0 resolution: "react-day-picker@npm:9.7.0" @@ -13785,6 +14071,13 @@ __metadata: languageName: node linkType: hard +"readdirp@npm:^4.0.1": + version: 4.1.2 + resolution: "readdirp@npm:4.1.2" + checksum: 3242ee125422cb7c0e12d51452e993f507e6ed3d8c490bc8bf3366c5cdd09167562224e429b13e9cb2b98d4b8b2b11dc100d3c73883aa92d657ade5a21ded004 + languageName: node + linkType: hard + "recast@npm:^0.23.5": version: 0.23.11 resolution: "recast@npm:0.23.11" @@ -14173,6 +14466,13 @@ __metadata: languageName: node linkType: hard +"run-applescript@npm:^7.0.0": + version: 7.0.0 + resolution: "run-applescript@npm:7.0.0" + checksum: b02462454d8b182ad4117e5d4626e9e6782eb2072925c9fac582170b0627ae3c1ea92ee9b2df7daf84b5e9ffe14eb1cf5fb70bc44b15c8a0bfcdb47987e2410c + languageName: node + linkType: hard + "run-async@npm:^2.4.0": version: 2.4.1 resolution: "run-async@npm:2.4.1" @@ -14278,6 +14578,15 @@ __metadata: languageName: node linkType: hard +"semver@npm:7.7.2": + version: 7.7.2 + resolution: "semver@npm:7.7.2" + bin: + semver: bin/semver.js + checksum: dd94ba8f1cbc903d8eeb4dd8bf19f46b3deb14262b6717d0de3c804b594058ae785ef2e4b46c5c3b58733c99c83339068203002f9e37cfe44f7e2cc5e3d2f621 + languageName: node + linkType: hard + "semver@npm:^6.0.0, semver@npm:^6.3.1": version: 6.3.1 resolution: "semver@npm:6.3.1" @@ -15550,6 +15859,13 @@ __metadata: languageName: node linkType: hard +"ufo@npm:^1.5.4": + version: 1.6.1 + resolution: "ufo@npm:1.6.1" + checksum: 2c401dd45bd98ad00806e044aa8571aa2aa1762fffeae5e78c353192b257ef2c638159789f119e5d8d5e5200e34228cd1bbde871a8f7805de25daa8576fb1633 + languageName: node + linkType: hard + "uglify-js@npm:^3.1.4": version: 3.19.3 resolution: "uglify-js@npm:3.19.3" From b0163681d8ec68ba76e25711e7cf72692e41a53c Mon Sep 17 00:00:00 2001 From: johannbm Date: Wed, 20 Aug 2025 13:52:36 +0200 Subject: [PATCH 12/12] legg til nosonar --- packages/types/src/apiDtoGenerert.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/types/src/apiDtoGenerert.ts b/packages/types/src/apiDtoGenerert.ts index ed73b01e018..84b76d3536d 100644 --- a/packages/types/src/apiDtoGenerert.ts +++ b/packages/types/src/apiDtoGenerert.ts @@ -1,4 +1,5 @@ // This file is auto-generated by @hey-api/openapi-ts +// NOSONAR export type CallbackDto = { opprettetTidspunkt: string;