Skip to content

Commit

Permalink
avro 1.12.0, nytt skjema fra pdl
Browse files Browse the repository at this point in the history
  • Loading branch information
di0nys1us committed Sep 27, 2024
1 parent 1aa99c3 commit 7ad03a2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

<groupId>no.nav.hjelpemidler</groupId>
<artifactId>hm-contract-pdl-avro</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>

<properties>
<java.version>21</java.version>
<avro.version>1.11.3</avro.version>
<avro.version>1.12.0</avro.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions src/main/avro/no/nav/person/pdl/leesah/Personhendelse.avdl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ protocol PersonhendelseProto {
import idl "doedfoedtbarn/DoedfoedtBarn.avdl";
import idl "doedsfall/Doedsfall.avdl";
import idl "foedsel/Foedsel.avdl";
import idl "foedselsdato/Foedselsdato.avdl";
import idl "familierelasjon/Familierelasjon.avdl";
import idl "verge/VergemaalEllerFremtidsfullmakt.avdl";
import idl "forelderbarnrelasjon/ForelderBarnRelasjon.avdl";
Expand Down Expand Up @@ -40,6 +41,7 @@ protocol PersonhendelseProto {
union { null, no.nav.person.pdl.leesah.doedfoedtbarn.DoedfoedtBarn } doedfoedtBarn = null;
union { null, no.nav.person.pdl.leesah.doedsfall.Doedsfall } doedsfall = null;
union { null, no.nav.person.pdl.leesah.foedsel.Foedsel } foedsel = null;
union { null, no.nav.person.pdl.leesah.foedselsdato.Foedselsdato } foedselsdato = null;
union { null, no.nav.person.pdl.leesah.forelderbarnrelasjon.ForelderBarnRelasjon } forelderBarnRelasjon = null;
union { null, no.nav.person.pdl.leesah.familierelasjon.Familierelasjon } familierelasjon = null; // Blir DEPRECATED i fremtiden. Erstattes av forelderBarnRelasjon.
union { null, no.nav.person.pdl.leesah.sivilstand.Sivilstand } sivilstand = null;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@namespace("no.nav.person.pdl.leesah.foedselsdato")
protocol FoedselsdatoV1 {

record Foedselsdato {
union { null, int } foedselsaar = null;
union { null, date } foedselsdato = null;
}
}

0 comments on commit 7ad03a2

Please sign in to comment.