package eu.dnetlib.dhp.oa.model.graph; import java.util.List; import com.github.imifou.jsonschema.module.addon.annotation.JsonSchema; /** * To represent RC entities. It extends eu.dnetlib.dhp.dump.oaf.grap.ResearchInitiative by adding the parameter subject * to store the list of subjects related to the community */ public class ResearchCommunity extends ResearchInitiative { @JsonSchema( description = "Only for research communities: the list of the subjects associated to the research community") private List subject; public List getSubject() { return subject; } public void setSubject(List subject) { this.subject = subject; } }