Advertisement
IronJoo

ProjectCallExtraData

Dec 18th, 2024
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.27 KB | None | 0 0
  1. public class ProjectCallExtraData {
  2.  
  3.     // The identification of the call assigned by the funding entity (e.g., H2020-ERC-2021-AdG)
  4.     @JsonProperty(value = "call_id")
  5.     private String callId;
  6.  
  7.     // The entities that finance the projects
  8.     @JsonProperty(value = "funding_entities")
  9.     private List<GenericInstitution> fundingEntities;
  10.  
  11.     // Whether multiple submissions are allowed from the same institution
  12.     @JsonProperty(value = "allows_multiple_submissions")
  13.     private Boolean allowsMultipleSubmissions;
  14.  
  15.     // The keywords related to the project call
  16.     @JsonProperty(value = "keywords")
  17.     private List<String> keywords;
  18.  
  19.     // The funding scheme associated with the project call (in Portuguese)
  20.     @JsonProperty(value = "funding_scheme_pt")
  21.     private String fundingSchemePt;
  22.  
  23.     // The funding scheme associated with the project call (in English)
  24.     @JsonProperty(value = "funding_scheme_en")
  25.     private String fundingSchemeEn;
  26.  
  27.     // The postdoctoral experience required by the project call
  28.     @JsonProperty(value = "postdoctoral_experience")
  29.     private String postDoctoralExperience;
  30.  
  31.     // The link to a website with more information about the project call
  32.     @JsonProperty(value = "more_info_url")
  33.     private String moreInfoUrl;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement