Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class ProjectCallExtraData {
- // The identification of the call assigned by the funding entity (e.g., H2020-ERC-2021-AdG)
- @JsonProperty(value = "call_id")
- private String callId;
- // The entities that finance the projects
- @JsonProperty(value = "funding_entities")
- private List<GenericInstitution> fundingEntities;
- // Whether multiple submissions are allowed from the same institution
- @JsonProperty(value = "allows_multiple_submissions")
- private Boolean allowsMultipleSubmissions;
- // The keywords related to the project call
- @JsonProperty(value = "keywords")
- private List<String> keywords;
- // The funding scheme associated with the project call (in Portuguese)
- @JsonProperty(value = "funding_scheme_pt")
- private String fundingSchemePt;
- // The funding scheme associated with the project call (in English)
- @JsonProperty(value = "funding_scheme_en")
- private String fundingSchemeEn;
- // The postdoctoral experience required by the project call
- @JsonProperty(value = "postdoctoral_experience")
- private String postDoctoralExperience;
- // The link to a website with more information about the project call
- @JsonProperty(value = "more_info_url")
- private String moreInfoUrl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement