/**
  * POST a JSON representation of the ORCID record containing only funding details
  *
  * @param orcid the ORCID that corresponds to the user's record
  * @return the JSON representation of the ORCID record including the added funding(s)
  */
 @POST
 @Produces(value = {VND_ORCID_JSON, ORCID_JSON, MediaType.APPLICATION_JSON})
 @Consumes(value = {VND_ORCID_JSON, ORCID_JSON, MediaType.APPLICATION_JSON})
 @Path(FUNDING_PATH)
 public Response addFundingJson(@PathParam("orcid") String orcid, OrcidMessage orcidMessage) {
   return serviceDelegator.addFunding(uriInfo, orcid, orcidMessage);
 }