Skip to content

Commit ec0f0a2

Browse files
committed
TFP-6053: Muliggjør å ta inn referanser selv om vi mangler overstyringer
1 parent 32b834a commit ec0f0a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kontrakt/src/main/java/no/nav/folketrygdloven/kalkulus/iay/arbeid/v1/ArbeidsforholdInformasjonDto.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ public class ArbeidsforholdInformasjonDto {
2020

2121
@JsonProperty(value = "overstyringer")
2222
@Valid
23-
@Size(min = 1)
23+
@Size(max = 100)
2424
private List<ArbeidsforholdOverstyringDto> overstyringer;
2525

2626
@JsonProperty(value = "referanser")
2727
@Valid
28-
@Size(min = 1)
28+
@Size(max = 100)
2929
private Set<ArbeidsforholdReferanseDto> referanser;
3030

3131
public ArbeidsforholdInformasjonDto() {

0 commit comments

Comments
 (0)