Skip to content

Instantly share code, notes, and snippets.

@thewilkybarkid
Last active May 27, 2021 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thewilkybarkid/0acb3ff6d227d6ba7b820152a045fcdb to your computer and use it in GitHub Desktop.
Save thewilkybarkid/0acb3ff6d227d6ba7b820152a045fcdb to your computer and use it in GitHub Desktop.
Comparison of attaching specific name and role to a dcterms:creator
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prism: <http://prismstandard.org/namespaces/basic/2.0/> .
@prefix role: <http://prismstandard.org/vocabularies/3.0/role.xml#> .
<10.3390/pathogens10030272#graph> {
<10.3390/pathogens10030272>
a fabio:Article ;
prism:doi "10.3390/pathogens10030272" ;
dcterms:creator <https://orcid.org/0000-0001-5321-0608> ;
dcterms:title "Differential Effects of Antiseptic Mouth Rinses on SARS-CoV-2 Infectivity In Vitro" ;
.
<https://orcid.org/0000-0001-5321-0608>
a foaf:Person ;
foaf:familyName "Cugini" ;
foaf:givenName "Carla" ;
prism:role role:author ;
.
}
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prism: <http://prismstandard.org/namespaces/basic/2.0/> .
<10.3390/pathogens10030272>
a fabio:Article ;
prism:doi "10.3390/pathogens10030272" ;
dcterms:creator <https://orcid.org/0000-0001-5321-0608> {|
foaf:familyName "Cugini" ;
foaf:givenName "Carla" ;
prism:role "author" ;
|} ;
dcterms:title "Differential Effects of Antiseptic Mouth Rinses on SARS-CoV-2 Infectivity In Vitro" ;
.
# {| ... |} is an inline way of annotating statements.
#
# It's equivalent to:
#
# << <10.3390/pathogens10030272> dcterms:creator <https://orcid.org/0000-0001-5321-0608> >>
# foaf:familyName "Cugini" ;
# foaf:givenName "Carla" ;
# prism:role "author" ;
# .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prism: <http://prismstandard.org/namespaces/basic/2.0/> .
@prefix role: <http://prismstandard.org/vocabularies/3.0/role.xml#> .
<10.3390/pathogens10030272>
a fabio:Article ;
prism:doi "10.3390/pathogens10030272" ;
dcterms:creator [
a foaf:Person ;
foaf:familyName "Cugini" ;
foaf:givenName "Carla" ;
prism:role role:author ;
owl:sameAs <https://orcid.org/0000-0001-5321-0608> ;
] ;
dcterms:title "Differential Effects of Antiseptic Mouth Rinses on SARS-CoV-2 Infectivity In Vitro" ;
.
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prism: <http://prismstandard.org/namespaces/basic/2.0/> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
<10.3390/pathogens10030272>
a fabio:Article ;
prism:doi "10.3390/pathogens10030272" ;
dcterms:creator <https://orcid.org/0000-0001-5321-0608> ;
dcterms:title "Differential Effects of Antiseptic Mouth Rinses on SARS-CoV-2 Infectivity In Vitro" ;
.
<https://orcid.org/0000-0001-5321-0608>
a foaf:Person ;
pro:holdsRoleInTime [
a pro:RoleInTime ;
pro:relatesToDocument <10.3390/pathogens10030272> ;
pro:withRole pro:author ;
] ;
tvc:hasValue [
a tvc:ValueInTime ;
tvc:withValue [
foaf:name "Carla Cugini"
] ;
tvc:withinContext <10.3390/pathogens10030272> ;
] ;
foaf:familyName "Cugini" ;
foaf:givenName "Carla" ;
.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment