vivo-project / VIVO

VIVO is an extensible semantic web application for research discovery and showcasing scholarly work
http://vivoweb.org
BSD 3-Clause "New" or "Revised" License
202 stars 127 forks source link

vivo_home/api/rest/{version}/publications #3877

Open chenejac opened 1 year ago

chenejac commented 1 year ago

Describe the solution you'd like The endpoints for CRUD operations over publications should be defined by using Dynamic API ontology.

The JSON format for description a publication should be supported with the following structure:

{
  "uri" : "http://localhost:8080/vivo/individual/n7979",
  "type" : "http://vivoweb.org/ontology/core#Chapter",
  "title" : ["Twitter as Rhetoric@en_US", "Twitter kao retorika@sr_Latn_RS"], 
 "startPage" : 245,
 "endPage" : 249,    # in some cases there might be also volume, issue, articleNumber
 "publicationDate" :  2013, #sometimes exact date including month and day
  "publisher" : {
         "uri" : "http://localhost:8080/vivo/individual/n6795",
         "name" : ["University of California Press@en_US", "Izdavaštvo Kalifornijskog univerziteta@sr_Latn_RS"]
  } 
  "publicationVenue" : {
         "uri" : "http://localhost:8080/vivo/individual/n5987",
         "title" : ["Social Media as Discourse@en_US", "Društveni mediji kao diskurs@sr_Latn_RS"]
    }
  "authors" : [
      {
        "uri" : "http://localhost:8080/vivo/individual/n6870",
        "name" : "Peters, Jasper, I",
        "affiliation" : [
            {
              "uri" : "http://localhost:8080/vivo/individual/n4762",
              "name" : ["Harvard University@en_US", "Harvard univerzitet@sr_Latn_RS"]
            },
           {
               "uri" : "http://localhost:8080/vivo/individual/n489",
              "name" : ["California Institute of Technology@en_US", "Kalifornijski tehnički institut@sr_Latn_RS"]  
            } 
         ] 
      }, 
      {
        "uri" : "http://localhost:8080/vivo/individual/n733",
        "name" : "Bogart, Andrew",
        "affiliation" : [
            {
              "uri" : "http://localhost:8080/vivo/individual/n4762",
              "name" : ["Harvard University@en_US", "Harvard univerzitet@sr_Latn_RS"]
            },
           {
               "uri" : "http://localhost:8080/vivo/individual/n3910",
              "name" : ["College of Arts and Humanities@en_US", "Fakultet umetnosti i drustvenih nauka@sr_Latn_RS"] 
            } 
         ]  
      }
     ]
   "internalID"  : "n7979", 
    "DOI" : "10.1108/EL-05-2016-0104", 
    "SCOPUSeID" : "2-s2.0-85047384941"
}

Additional context