package eu.eudat.commons.types.descriptiontemplate.importmodel.fields; import jakarta.xml.bind.annotation.XmlElement; import jakarta.xml.bind.annotation.XmlRootElement; import java.util.List; @XmlRootElement(name = "schematics") public class SchematicsImportXml { private List schematics; @XmlElement(name = "schematic") public List getSchematics() { return schematics; } public void setSchematics(List schematics) { this.schematics = schematics; } }