From faa4e579b49c44a112b9c67d2bfb247e7de8b827 Mon Sep 17 00:00:00 2001 From: Bailey Taylor Date: Mon, 13 Oct 2025 11:14:28 +0800 Subject: [PATCH] Added an ignoreunknown to SystemInfoDTO for ease of flexibility on intake. --- .../com/psg/dlsysinfo/dl_sysinfo_server/dto/SystemInfoDTO.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/psg/dlsysinfo/dl_sysinfo_server/dto/SystemInfoDTO.java b/src/main/java/com/psg/dlsysinfo/dl_sysinfo_server/dto/SystemInfoDTO.java index e0b8454..07af40a 100644 --- a/src/main/java/com/psg/dlsysinfo/dl_sysinfo_server/dto/SystemInfoDTO.java +++ b/src/main/java/com/psg/dlsysinfo/dl_sysinfo_server/dto/SystemInfoDTO.java @@ -5,6 +5,7 @@ import com.fasterxml.jackson.annotation.JsonProperty; import java.util.ArrayList; import java.util.List; +@JsonIgnoreProperties(ignoreUnknown = true) public class SystemInfoDTO { @JsonProperty("clientIdentifier")