OpenAIRE keep tracks of full-text links to publications including access level. This parser retrieves links and corresponding metadata about the host of a resource.

oarg_linked_ftxt(doc)

Arguments

doc

document of class `xml_document` from the OpenAIRE research graph publication subset

Value

The result is a tibble. Here are the returned columns and descriptions:

access_rightAvailability of the resource
collected_fromName of the metadata source
instance_typeType of linked resource
hosted_byName of the Repository or Journal
web_urlsList-columns with links to the resource

Examples

if (FALSE) { # sample file delivered with this package dump_eg <- system.file("extdata", "multiple_projects.xml", package = "openairegraph") # load xml file my_record <- xml2::read_xml(dump_eg) # parse full text links oarg_linked_ftxt(my_record) }