IRI: http://xmlns.com/foaf/0.1/Agent
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
foaf:Agent a owl:Class ;
rdfs:label "agent"@en ;
rdfs:comment "Any kind of agents, such as a person, a group, an organization or a software agent."@en ;
rdfs:isDefinedBy foaf: .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Agent">
<rdfs:label xml:lang="en">agent</rdfs:label>
<rdfs:comment xml:lang="en">Any kind of agents, such as a person, a group, an organization or a software agent.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://xmlns.com/foaf/0.1/Agent",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "Any kind of agents, such as a person, a group, an organization or a software agent."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://xmlns.com/foaf/0.1/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "agent"
}
]
}
]<http://xmlns.com/foaf/0.1/Agent> <http://www.w3.org/2000/01/rdf-schema#label> "agent"@en .
<http://xmlns.com/foaf/0.1/Agent> <http://www.w3.org/2000/01/rdf-schema#comment> "Any kind of agents, such as a person, a group, an organization or a software agent."@en .
<http://xmlns.com/foaf/0.1/Agent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://xmlns.com/foaf/0.1/Agent> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://xmlns.com/foaf/0.1/> .
IRI: http://xmlns.com/foaf/0.1/Document
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
foaf:Document a owl:Class ;
rdfs:label "document"@en ;
rdfs:comment "An abstract class defining any kinds of publishing work."@en ;
rdfs:isDefinedBy foaf: .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Document">
<rdfs:label xml:lang="en">document</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
<rdfs:comment xml:lang="en">An abstract class defining any kinds of publishing work.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://xmlns.com/foaf/0.1/Document",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "An abstract class defining any kinds of publishing work."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://xmlns.com/foaf/0.1/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "document"
}
]
}
]<http://xmlns.com/foaf/0.1/Document> <http://www.w3.org/2000/01/rdf-schema#label> "document"@en .
<http://xmlns.com/foaf/0.1/Document> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://xmlns.com/foaf/0.1/> .
<http://xmlns.com/foaf/0.1/Document> <http://www.w3.org/2000/01/rdf-schema#comment> "An abstract class defining any kinds of publishing work."@en .
<http://xmlns.com/foaf/0.1/Document> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
foaf:Organization a owl:Class ;
rdfs:label "organization"@en ;
rdfs:comment "An organization."@en ;
rdfs:isDefinedBy foaf: ;
rdfs:subClassOf foaf:Agent .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Organization">
<rdfs:label xml:lang="en">organization</rdfs:label>
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:comment xml:lang="en">An organization.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://xmlns.com/foaf/0.1/Organization",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "An organization."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://xmlns.com/foaf/0.1/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "organization"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://xmlns.com/foaf/0.1/Agent"
}
]
}
]<http://xmlns.com/foaf/0.1/Organization> <http://www.w3.org/2000/01/rdf-schema#label> "organization"@en .
<http://xmlns.com/foaf/0.1/Organization> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://xmlns.com/foaf/0.1/Agent> .
<http://xmlns.com/foaf/0.1/Organization> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://xmlns.com/foaf/0.1/> .
<http://xmlns.com/foaf/0.1/Organization> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://xmlns.com/foaf/0.1/Organization> <http://www.w3.org/2000/01/rdf-schema#comment> "An organization."@en .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
foaf:Person a owl:Class ;
rdfs:label "person"@en ;
rdfs:comment "A person."@en ;
rdfs:isDefinedBy foaf: ;
rdfs:subClassOf foaf:Agent .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person">
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
<rdfs:label xml:lang="en">person</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:comment xml:lang="en">A person.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://xmlns.com/foaf/0.1/Person",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "A person."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://xmlns.com/foaf/0.1/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "person"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://xmlns.com/foaf/0.1/Agent"
}
]
}
]<http://xmlns.com/foaf/0.1/Person> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://xmlns.com/foaf/0.1/Agent> .
<http://xmlns.com/foaf/0.1/Person> <http://www.w3.org/2000/01/rdf-schema#label> "person"@en .
<http://xmlns.com/foaf/0.1/Person> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://xmlns.com/foaf/0.1/Person> <http://www.w3.org/2000/01/rdf-schema#comment> "A person."@en .
<http://xmlns.com/foaf/0.1/Person> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://xmlns.com/foaf/0.1/> .
IRI: http://purl.org/spar/pro/PublishingRole
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:PublishingRole a owl:Class ;
rdfs:label "publishing role"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
pro:archivist a pro:PublishingRole .
""" ;
rdfs:comment "A role an agent may have with respect to the publishing process."@en ;
rdfs:isDefinedBy pro: ;
rdfs:subClassOf pro:Role ;
vs:term_status reg:statusStable ;
skos:note "Individual members of this class are used to specify particular roles."@en .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/PublishingRole">
<rdfs:label xml:lang="en">publishing role</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">A role an agent may have with respect to the publishing process.</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://purl.org/spar/pro/Role"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
pro:archivist a pro:PublishingRole .
</vann:example>
<skos:note xml:lang="en">Individual members of this class are used to specify particular roles.</skos:note>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/PublishingRole",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n pro:archivist a pro:PublishingRole .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "A role an agent may have with respect to the publishing process."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "publishing role"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://purl.org/spar/pro/Role"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
],
"http://www.w3.org/2004/02/skos/core#note": [
{
"@language": "en",
"@value": "Individual members of this class are used to specify particular roles."
}
]
}
]<http://purl.org/spar/pro/PublishingRole> <http://www.w3.org/2000/01/rdf-schema#label> "publishing role"@en .
<http://purl.org/spar/pro/PublishingRole> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/PublishingRole> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/PublishingRole> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n pro:archivist a pro:PublishingRole .\n " .
<http://purl.org/spar/pro/PublishingRole> <http://www.w3.org/2000/01/rdf-schema#comment> "A role an agent may have with respect to the publishing process."@en .
<http://purl.org/spar/pro/PublishingRole> <http://www.w3.org/2004/02/skos/core#note> "Individual members of this class are used to specify particular roles."@en .
<http://purl.org/spar/pro/PublishingRole> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/spar/pro/Role> .
<http://purl.org/spar/pro/PublishingRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
IRI: http://purl.org/spar/pro/Role
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:Role a owl:Class ;
rdfs:label "role"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
pro:archivist a pro:Role .
""" ;
rdfs:comment "A role an agent may have. Individual members of this class or its sub-classes are used to specify particular roles."@en ;
rdfs:isDefinedBy pro: ;
rdfs:subClassOf owl:Thing ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/Role">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:label xml:lang="en">role</rdfs:label>
<rdfs:comment xml:lang="en">A role an agent may have. Individual members of this class or its sub-classes are used to specify particular roles.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
pro:archivist a pro:Role .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/Role",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n pro:archivist a pro:Role .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "A role an agent may have. Individual members of this class or its sub-classes are used to specify particular roles."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "role"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://www.w3.org/2002/07/owl#Thing"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/Role> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2002/07/owl#Thing> .
<http://purl.org/spar/pro/Role> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/spar/pro/Role> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/Role> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n pro:archivist a pro:Role .\n " .
<http://purl.org/spar/pro/Role> <http://www.w3.org/2000/01/rdf-schema#label> "role"@en .
<http://purl.org/spar/pro/Role> <http://www.w3.org/2000/01/rdf-schema#comment> "A role an agent may have. Individual members of this class or its sub-classes are used to specify particular roles."@en .
<http://purl.org/spar/pro/Role> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
IRI: http://purl.org/spar/pro/RoleInTime
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ti: <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
pro:RoleInTime a owl:Class ;
rdfs:label "role in time"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
""" ;
rdfs:comment "A particular situation that describe a role an agent may have, that can be restricted to a particular time interval."@en ;
rdfs:isDefinedBy pro: ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty tvc:atTime ;
owl:someValuesFrom ti:TimeInterval ],
[ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:intersectionOf ( ti:TimeInterval [ a owl:Restriction ;
owl:allValuesFrom xsd:dateTime ;
owl:onProperty ti:hasIntervalDate ] ) ] ;
owl:onProperty tvc:atTime ],
[ a owl:Restriction ;
owl:onProperty pro:withRole ;
owl:someValuesFrom pro:Role ],
[ a owl:Restriction ;
owl:onClass foaf:Agent ;
owl:onProperty pro:isHeldBy ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
[ a owl:Restriction ;
owl:onProperty pro:relatesToEntity ;
owl:someValuesFrom owl:Thing ],
tvc:ValueInTime ;
vs:term_status reg:statusStable ;
skos:note """A role in time describes always:
- a particular role R
- a particular agent A holding R
- a particular time interval T in which A holds R (optional)
- one or more entities (e.g. a particular bibliographic entity or a specific institution) that defines a context for R held by A. At least one contextual entity should be specified for a particular role."""@en .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/RoleInTime">
<rdfs:label xml:lang="en">role in time</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.essepuntato.it/2012/04/tvc/ValueInTime"/>
<rdfs:subClassOf rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb2"/>
<rdfs:subClassOf rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb9"/>
<rdfs:subClassOf rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb1"/>
<rdfs:subClassOf rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb8"/>
<rdfs:subClassOf rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb7"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">A particular situation that describe a role an agent may have, that can be restricted to a particular time interval.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
</vann:example>
<skos:note xml:lang="en">A role in time describes always:
- a particular role R
- a particular agent A holding R
- a particular time interval T in which A holds R (optional)
- one or more entities (e.g. a particular bibliographic entity or a specific institution) that defines a context for R held by A. At least one contextual entity should be specified for a particular role.</skos:note>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb6">
<rdf:first rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb4"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb2">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:allValuesFrom rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb3"/>
<owl:onProperty rdf:resource="http://www.essepuntato.it/2012/04/tvc/atTime"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb4">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<owl:onProperty rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb8">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:onClass rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
<owl:onProperty rdf:resource="http://purl.org/spar/pro/isHeldBy"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
</rdf:Description>
<rdf:Description rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb9">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:onProperty rdf:resource="http://purl.org/spar/pro/relatesToEntity"/>
<owl:someValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb1">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:onProperty rdf:resource="http://www.essepuntato.it/2012/04/tvc/atTime"/>
<owl:someValuesFrom rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb7">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:onProperty rdf:resource="http://purl.org/spar/pro/withRole"/>
<owl:someValuesFrom rdf:resource="http://purl.org/spar/pro/Role"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb3">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<owl:intersectionOf rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb5"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb5">
<rdf:first rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval"/>
<rdf:rest rdf:nodeID="n503bff63fbfc4d68a3c9088592602b2fb6"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/RoleInTime",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "A particular situation that describe a role an agent may have, that can be restricted to a particular time interval."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "role in time"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://www.essepuntato.it/2012/04/tvc/ValueInTime"
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb2"
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb9"
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb1"
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb8"
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb7"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
],
"http://www.w3.org/2004/02/skos/core#note": [
{
"@language": "en",
"@value": "A role in time describes always:\n- a particular role R\n- a particular agent A holding R\n- a particular time interval T in which A holds R (optional)\n- one or more entities (e.g. a particular bibliographic entity or a specific institution) that defines a context for R held by A. At least one contextual entity should be specified for a particular role."
}
]
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb2",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#allValuesFrom": [
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb3"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.essepuntato.it/2012/04/tvc/atTime"
}
]
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb3",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2002/07/owl#intersectionOf": [
{
"@list": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval"
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb4"
}
]
}
]
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb4",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#allValuesFrom": [
{
"@id": "http://www.w3.org/2001/XMLSchema#dateTime"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate"
}
]
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb9",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://purl.org/spar/pro/relatesToEntity"
}
],
"http://www.w3.org/2002/07/owl#someValuesFrom": [
{
"@id": "http://www.w3.org/2002/07/owl#Thing"
}
]
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb1",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.essepuntato.it/2012/04/tvc/atTime"
}
],
"http://www.w3.org/2002/07/owl#someValuesFrom": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval"
}
]
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb8",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://xmlns.com/foaf/0.1/Agent"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://purl.org/spar/pro/isHeldBy"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "_:n503bff63fbfc4d68a3c9088592602b2fb7",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://purl.org/spar/pro/withRole"
}
],
"http://www.w3.org/2002/07/owl#someValuesFrom": [
{
"@id": "http://purl.org/spar/pro/Role"
}
]
}
]<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.essepuntato.it/2012/04/tvc/ValueInTime> .
_:n503bff63fbfc4d68a3c9088592602b2fb6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:n503bff63fbfc4d68a3c9088592602b2fb2 .
_:n503bff63fbfc4d68a3c9088592602b2fb2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
_:n503bff63fbfc4d68a3c9088592602b2fb4 <http://www.w3.org/2002/07/owl#allValuesFrom> <http://www.w3.org/2001/XMLSchema#dateTime> .
_:n503bff63fbfc4d68a3c9088592602b2fb8 <http://www.w3.org/2002/07/owl#onClass> <http://xmlns.com/foaf/0.1/Agent> .
_:n503bff63fbfc4d68a3c9088592602b2fb9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:n503bff63fbfc4d68a3c9088592602b2fb1 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval> .
_:n503bff63fbfc4d68a3c9088592602b2fb7 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://purl.org/spar/pro/Role> .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:n503bff63fbfc4d68a3c9088592602b2fb9 .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:n503bff63fbfc4d68a3c9088592602b2fb7 .
_:n503bff63fbfc4d68a3c9088592602b2fb1 <http://www.w3.org/2002/07/owl#onProperty> <http://www.essepuntato.it/2012/04/tvc/atTime> .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://purl.org/spar/pro/RoleInTime> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n " .
_:n503bff63fbfc4d68a3c9088592602b2fb4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:n503bff63fbfc4d68a3c9088592602b2fb8 <http://www.w3.org/2002/07/owl#qualifiedCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger> .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
_:n503bff63fbfc4d68a3c9088592602b2fb3 <http://www.w3.org/2002/07/owl#intersectionOf> _:n503bff63fbfc4d68a3c9088592602b2fb5 .
_:n503bff63fbfc4d68a3c9088592602b2fb8 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/spar/pro/isHeldBy> .
_:n503bff63fbfc4d68a3c9088592602b2fb1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:n503bff63fbfc4d68a3c9088592602b2fb8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:n503bff63fbfc4d68a3c9088592602b2fb7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .
_:n503bff63fbfc4d68a3c9088592602b2fb5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval> .
_:n503bff63fbfc4d68a3c9088592602b2fb9 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.w3.org/2002/07/owl#Thing> .
_:n503bff63fbfc4d68a3c9088592602b2fb4 <http://www.w3.org/2002/07/owl#onProperty> <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate> .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2004/02/skos/core#note> "A role in time describes always:\n- a particular role R\n- a particular agent A holding R\n- a particular time interval T in which A holds R (optional)\n- one or more entities (e.g. a particular bibliographic entity or a specific institution) that defines a context for R held by A. At least one contextual entity should be specified for a particular role."@en .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2000/01/rdf-schema#label> "role in time"@en .
_:n503bff63fbfc4d68a3c9088592602b2fb3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
_:n503bff63fbfc4d68a3c9088592602b2fb2 <http://www.w3.org/2002/07/owl#allValuesFrom> _:n503bff63fbfc4d68a3c9088592602b2fb3 .
_:n503bff63fbfc4d68a3c9088592602b2fb7 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/spar/pro/withRole> .
_:n503bff63fbfc4d68a3c9088592602b2fb5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:n503bff63fbfc4d68a3c9088592602b2fb6 .
_:n503bff63fbfc4d68a3c9088592602b2fb2 <http://www.w3.org/2002/07/owl#onProperty> <http://www.essepuntato.it/2012/04/tvc/atTime> .
_:n503bff63fbfc4d68a3c9088592602b2fb9 <http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/spar/pro/relatesToEntity> .
_:n503bff63fbfc4d68a3c9088592602b2fb6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:n503bff63fbfc4d68a3c9088592602b2fb4 .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:n503bff63fbfc4d68a3c9088592602b2fb1 .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:n503bff63fbfc4d68a3c9088592602b2fb8 .
<http://purl.org/spar/pro/RoleInTime> <http://www.w3.org/2000/01/rdf-schema#comment> "A particular situation that describe a role an agent may have, that can be restricted to a particular time interval."@en .
IRI: http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
tisit:TimeIndexedSituation a owl:Class ;
rdfs:label "time indexed situation"@en ;
rdfs:comment "A situation that is explicitly indexed at some time for at least one entity." ;
rdfs:isDefinedBy tisit: .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation">
<rdfs:isDefinedBy rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#"/>
<rdfs:comment>A situation that is explicitly indexed at some time for at least one entity.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">time indexed situation</rdfs:label>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "A situation that is explicitly indexed at some time for at least one entity."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "time indexed situation"
}
]
}
]<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation> <http://www.w3.org/2000/01/rdf-schema#comment> "A situation that is explicitly indexed at some time for at least one entity." .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation> <http://www.w3.org/2000/01/rdf-schema#label> "time indexed situation"@en .
IRI: http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix ti: <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
ti:TimeInterval a owl:Class ;
rdfs:label "time interval"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
""" ;
rdfs:comment "Two (starting and ending) points in time that define a particular period of time."@en ;
rdfs:isDefinedBy ti: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval">
<rdfs:comment xml:lang="en">Two (starting and ending) points in time that define a particular period of time.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:isDefinedBy rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#"/>
<rdfs:label xml:lang="en">time interval</rdfs:label>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "Two (starting and ending) points in time that define a particular period of time."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "time interval"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval> <http://www.w3.org/2000/01/rdf-schema#label> "time interval"@en .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n " .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval> <http://www.w3.org/2000/01/rdf-schema#comment> "Two (starting and ending) points in time that define a particular period of time."@en .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#> .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
IRI: http://www.essepuntato.it/2012/04/tvc/ValueInTime
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
tvc:ValueInTime a owl:Class ;
rdfs:label "value in time"@en ;
rdfs:comment "A particular kind of time-indexed situation that represents a hub linking the entity having a particular value, the value itself and the temporal and contextual extents from which the entity-value relationship depends."@en ;
rdfs:isDefinedBy <http://purl.org/spar/tvc/> ;
rdfs:subClassOf tisit:TimeIndexedSituation .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.essepuntato.it/2012/04/tvc/ValueInTime">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">value in time</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/tvc/"/>
<rdfs:comment xml:lang="en">A particular kind of time-indexed situation that represents a hub linking the entity having a particular value, the value itself and the temporal and contextual extents from which the entity-value relationship depends.</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.essepuntato.it/2012/04/tvc/ValueInTime",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "A particular kind of time-indexed situation that represents a hub linking the entity having a particular value, the value itself and the temporal and contextual extents from which the entity-value relationship depends."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/tvc/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "value in time"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation"
}
]
}
]<http://www.essepuntato.it/2012/04/tvc/ValueInTime> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/tvc/> .
<http://www.essepuntato.it/2012/04/tvc/ValueInTime> <http://www.w3.org/2000/01/rdf-schema#comment> "A particular kind of time-indexed situation that represents a hub linking the entity having a particular value, the value itself and the temporal and contextual extents from which the entity-value relationship depends."@en .
<http://www.essepuntato.it/2012/04/tvc/ValueInTime> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation> .
<http://www.essepuntato.it/2012/04/tvc/ValueInTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://www.essepuntato.it/2012/04/tvc/ValueInTime> <http://www.w3.org/2000/01/rdf-schema#label> "value in time"@en .
Jump to:
IRI: http://www.essepuntato.it/2012/04/tvc/atTime
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
tvc:atTime a owl:ObjectProperty ;
rdfs:label "at time"@en ;
rdfs:comment "The particular temporal instant or time period in which the situation takes place."@en ;
rdfs:domain tvc:ValueInTime ;
rdfs:isDefinedBy <http://purl.org/spar/tvc/> .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.essepuntato.it/2012/04/tvc/atTime">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="http://www.essepuntato.it/2012/04/tvc/ValueInTime"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/tvc/"/>
<rdfs:label xml:lang="en">at time</rdfs:label>
<rdfs:comment xml:lang="en">The particular temporal instant or time period in which the situation takes place.</rdfs:comment>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.essepuntato.it/2012/04/tvc/atTime",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The particular temporal instant or time period in which the situation takes place."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://www.essepuntato.it/2012/04/tvc/ValueInTime"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/tvc/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "at time"
}
]
}
]<http://www.essepuntato.it/2012/04/tvc/atTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.essepuntato.it/2012/04/tvc/atTime> <http://www.w3.org/2000/01/rdf-schema#label> "at time"@en .
<http://www.essepuntato.it/2012/04/tvc/atTime> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.essepuntato.it/2012/04/tvc/ValueInTime> .
<http://www.essepuntato.it/2012/04/tvc/atTime> <http://www.w3.org/2000/01/rdf-schema#comment> "The particular temporal instant or time period in which the situation takes place."@en .
<http://www.essepuntato.it/2012/04/tvc/atTime> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/tvc/> .
IRI: http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#atTime
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
tisit:atTime a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:label "at time"@en ;
rdfs:comment "A time interval during which a status is held by a document." ;
rdfs:isDefinedBy tisit: .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#atTime">
<rdfs:comment>A time interval during which a status is held by a document.</rdfs:comment>
<rdfs:label xml:lang="en">at time</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:isDefinedBy rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#atTime",
"@type": [
"http://www.w3.org/2002/07/owl#FunctionalProperty",
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "A time interval during which a status is held by a document."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "at time"
}
]
}
]<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#atTime> <http://www.w3.org/2000/01/rdf-schema#comment> "A time interval during which a status is held by a document." .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#atTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#atTime> <http://www.w3.org/2000/01/rdf-schema#label> "at time"@en .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#atTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#atTime> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
IRI: http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
tisit:forEntity a owl:ObjectProperty ;
rdfs:label "for entity"@en ;
rdfs:comment "The relation between a time-indexed situation and an entity involved in it."@en ;
rdfs:domain tisit:TimeIndexedSituation ;
rdfs:isDefinedBy tisit: .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity">
<rdfs:isDefinedBy rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#"/>
<rdfs:comment xml:lang="en">The relation between a time-indexed situation and an entity involved in it.</rdfs:comment>
<rdfs:label xml:lang="en">for entity</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between a time-indexed situation and an entity involved in it."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "for entity"
}
]
}
]<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between a time-indexed situation and an entity involved in it."@en .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity> <http://www.w3.org/2000/01/rdf-schema#label> "for entity"@en .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation> .
IRI: http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
tisit:hasTimeIndexedSetting a owl:ObjectProperty ;
rdfs:label "has time indexed setting"@en ;
rdfs:comment "The relation between an entity and a time-indexed situation it is involved in."@en ;
rdfs:isDefinedBy tisit: ;
rdfs:range tisit:TimeIndexedSituation .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting">
<rdfs:isDefinedBy rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:comment xml:lang="en">The relation between an entity and a time-indexed situation it is involved in.</rdfs:comment>
<rdfs:range rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation"/>
<rdfs:label xml:lang="en">has time indexed setting</rdfs:label>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between an entity and a time-indexed situation it is involved in."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "has time indexed setting"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation"
}
]
}
]<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between an entity and a time-indexed situation it is involved in."@en .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting> <http://www.w3.org/2000/01/rdf-schema#label> "has time indexed setting"@en .
<http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#TimeIndexedSituation> .
IRI: http://www.essepuntato.it/2012/04/tvc/hasValue
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
tvc:hasValue a owl:ObjectProperty ;
rdfs:label "has value"@en ;
rdfs:comment "The relation between an entity and a value in time situation."@en ;
rdfs:isDefinedBy <http://purl.org/spar/tvc/> ;
rdfs:range tvc:ValueInTime ;
rdfs:subPropertyOf tisit:hasTimeIndexedSetting .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.essepuntato.it/2012/04/tvc/hasValue">
<rdfs:range rdf:resource="http://www.essepuntato.it/2012/04/tvc/ValueInTime"/>
<rdfs:subPropertyOf rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/tvc/"/>
<rdfs:label xml:lang="en">has value</rdfs:label>
<rdfs:comment xml:lang="en">The relation between an entity and a value in time situation.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.essepuntato.it/2012/04/tvc/hasValue",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between an entity and a value in time situation."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/tvc/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "has value"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://www.essepuntato.it/2012/04/tvc/ValueInTime"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting"
}
]
}
]<http://www.essepuntato.it/2012/04/tvc/hasValue> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.essepuntato.it/2012/04/tvc/ValueInTime> .
<http://www.essepuntato.it/2012/04/tvc/hasValue> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting> .
<http://www.essepuntato.it/2012/04/tvc/hasValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.essepuntato.it/2012/04/tvc/hasValue> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/tvc/> .
<http://www.essepuntato.it/2012/04/tvc/hasValue> <http://www.w3.org/2000/01/rdf-schema#label> "has value"@en .
<http://www.essepuntato.it/2012/04/tvc/hasValue> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between an entity and a value in time situation."@en .
IRI: http://purl.org/spar/pro/holdsRoleInTime
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:holdsRoleInTime a owl:ObjectProperty ;
rdfs:label "holds role in time"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
""" ;
rdfs:comment "The relation between an agent and a role that the agent holds."@en ;
rdfs:domain foaf:Agent ;
rdfs:isDefinedBy pro: ;
rdfs:range pro:RoleInTime ;
rdfs:subPropertyOf tvc:hasValue ;
owl:inverseOf pro:isHeldBy ;
vs:term_status reg:statusStable ;
skos:note """
This is done via the indirection:
foaf:Agent pro:holdsRoleInTime [ a pro:RoleInTime ;
pro:withRole pro:Role ] .
The ontology permits one to specify the time period over which a role is held, and the other contextual entities to which that agent's role relates.
"""@en .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/holdsRoleInTime">
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:range rdf:resource="http://purl.org/spar/pro/RoleInTime"/>
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
<rdfs:label xml:lang="en">holds role in time</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<owl:inverseOf rdf:resource="http://purl.org/spar/pro/isHeldBy"/>
<rdfs:subPropertyOf rdf:resource="http://www.essepuntato.it/2012/04/tvc/hasValue"/>
<rdfs:comment xml:lang="en">The relation between an agent and a role that the agent holds.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
</vann:example>
<skos:note xml:lang="en">
This is done via the indirection:
foaf:Agent pro:holdsRoleInTime [ a pro:RoleInTime ;
pro:withRole pro:Role ] .
The ontology permits one to specify the time period over which a role is held, and the other contextual entities to which that agent's role relates.
</skos:note>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/holdsRoleInTime",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between an agent and a role that the agent holds."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://xmlns.com/foaf/0.1/Agent"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "holds role in time"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://purl.org/spar/pro/RoleInTime"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://www.essepuntato.it/2012/04/tvc/hasValue"
}
],
"http://www.w3.org/2002/07/owl#inverseOf": [
{
"@id": "http://purl.org/spar/pro/isHeldBy"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
],
"http://www.w3.org/2004/02/skos/core#note": [
{
"@language": "en",
"@value": "\nThis is done via the indirection:\n\n foaf:Agent pro:holdsRoleInTime [ a pro:RoleInTime ; \n pro:withRole pro:Role ] . \n\nThe ontology permits one to specify the time period over which a role is held, and the other contextual entities to which that agent's role relates.\n "
}
]
}
]<http://purl.org/spar/pro/holdsRoleInTime> <http://www.w3.org/2004/02/skos/core#note> "\nThis is done via the indirection:\n\n foaf:Agent pro:holdsRoleInTime [ a pro:RoleInTime ; \n pro:withRole pro:Role ] . \n\nThe ontology permits one to specify the time period over which a role is held, and the other contextual entities to which that agent's role relates.\n "@en .
<http://purl.org/spar/pro/holdsRoleInTime> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/holdsRoleInTime> <http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/spar/pro/RoleInTime> .
<http://purl.org/spar/pro/holdsRoleInTime> <http://www.w3.org/2000/01/rdf-schema#domain> <http://xmlns.com/foaf/0.1/Agent> .
<http://purl.org/spar/pro/holdsRoleInTime> <http://www.w3.org/2000/01/rdf-schema#label> "holds role in time"@en .
<http://purl.org/spar/pro/holdsRoleInTime> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n " .
<http://purl.org/spar/pro/holdsRoleInTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/holdsRoleInTime> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/holdsRoleInTime> <http://www.w3.org/2002/07/owl#inverseOf> <http://purl.org/spar/pro/isHeldBy> .
<http://purl.org/spar/pro/holdsRoleInTime> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.essepuntato.it/2012/04/tvc/hasValue> .
<http://purl.org/spar/pro/holdsRoleInTime> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between an agent and a role that the agent holds."@en .
IRI: http://purl.org/spar/pro/isDocumentContextFor
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:isDocumentContextFor a owl:ObjectProperty ;
rdfs:label "is document context for"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
:my-document a foaf:Document ;
pro:isDocumentContextFor :my-person-role .
""" ;
rdfs:comment "The relation between a document and the role for which that document provides the context (e.g. relating a document to the role of author or peer-reviewer of that document)."@en ;
rdfs:domain foaf:Document ;
rdfs:isDefinedBy pro: ;
rdfs:subPropertyOf pro:isRelatedToRoleInTime ;
owl:inverseOf pro:relatesToDocument ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/isDocumentContextFor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/spar/pro/isRelatedToRoleInTime"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The relation between a document and the role for which that document provides the context (e.g. relating a document to the role of author or peer-reviewer of that document).</rdfs:comment>
<owl:inverseOf rdf:resource="http://purl.org/spar/pro/relatesToDocument"/>
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
<rdfs:label xml:lang="en">is document context for</rdfs:label>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
:my-document a foaf:Document ;
pro:isDocumentContextFor :my-person-role .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/isDocumentContextFor",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n :my-document a foaf:Document ;\n pro:isDocumentContextFor :my-person-role .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between a document and the role for which that document provides the context (e.g. relating a document to the role of author or peer-reviewer of that document)."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://xmlns.com/foaf/0.1/Document"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "is document context for"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://purl.org/spar/pro/isRelatedToRoleInTime"
}
],
"http://www.w3.org/2002/07/owl#inverseOf": [
{
"@id": "http://purl.org/spar/pro/relatesToDocument"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/isDocumentContextFor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/isDocumentContextFor> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/spar/pro/isRelatedToRoleInTime> .
<http://purl.org/spar/pro/isDocumentContextFor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/isDocumentContextFor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/isDocumentContextFor> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between a document and the role for which that document provides the context (e.g. relating a document to the role of author or peer-reviewer of that document)."@en .
<http://purl.org/spar/pro/isDocumentContextFor> <http://www.w3.org/2002/07/owl#inverseOf> <http://purl.org/spar/pro/relatesToDocument> .
<http://purl.org/spar/pro/isDocumentContextFor> <http://www.w3.org/2000/01/rdf-schema#domain> <http://xmlns.com/foaf/0.1/Document> .
<http://purl.org/spar/pro/isDocumentContextFor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n :my-document a foaf:Document ;\n pro:isDocumentContextFor :my-person-role .\n " .
<http://purl.org/spar/pro/isDocumentContextFor> <http://www.w3.org/2000/01/rdf-schema#label> "is document context for"@en .
IRI: http://purl.org/spar/pro/isOrganizationContextFor
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:isOrganizationContextFor a owl:ObjectProperty ;
rdfs:label "is organization context for"@it ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
:my-organization a foaf:Organization ;
pro:isOrganizationContextFor :my-person-role .
""" ;
rdfs:comment "The relation between an organization and the role for which that organization provides the context (e.g. relating an institution to the role of member held by a person)."@en ;
rdfs:domain foaf:Organization ;
rdfs:isDefinedBy pro: ;
rdfs:subPropertyOf pro:isRelatedToRoleInTime ;
owl:inverseOf pro:relatesToOrganization ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/isOrganizationContextFor">
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<owl:inverseOf rdf:resource="http://purl.org/spar/pro/relatesToOrganization"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/spar/pro/isRelatedToRoleInTime"/>
<rdfs:label xml:lang="it">is organization context for</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:comment xml:lang="en">The relation between an organization and the role for which that organization provides the context (e.g. relating an institution to the role of member held by a person).</rdfs:comment>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
:my-organization a foaf:Organization ;
pro:isOrganizationContextFor :my-person-role .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/isOrganizationContextFor",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n :my-organization a foaf:Organization ;\n pro:isOrganizationContextFor :my-person-role .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between an organization and the role for which that organization provides the context (e.g. relating an institution to the role of member held by a person)."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://xmlns.com/foaf/0.1/Organization"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "it",
"@value": "is organization context for"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://purl.org/spar/pro/isRelatedToRoleInTime"
}
],
"http://www.w3.org/2002/07/owl#inverseOf": [
{
"@id": "http://purl.org/spar/pro/relatesToOrganization"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/isOrganizationContextFor> <http://www.w3.org/2000/01/rdf-schema#domain> <http://xmlns.com/foaf/0.1/Organization> .
<http://purl.org/spar/pro/isOrganizationContextFor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n :my-organization a foaf:Organization ;\n pro:isOrganizationContextFor :my-person-role .\n " .
<http://purl.org/spar/pro/isOrganizationContextFor> <http://www.w3.org/2002/07/owl#inverseOf> <http://purl.org/spar/pro/relatesToOrganization> .
<http://purl.org/spar/pro/isOrganizationContextFor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/isOrganizationContextFor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/isOrganizationContextFor> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/spar/pro/isRelatedToRoleInTime> .
<http://purl.org/spar/pro/isOrganizationContextFor> <http://www.w3.org/2000/01/rdf-schema#label> "is organization context for"@it .
<http://purl.org/spar/pro/isOrganizationContextFor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/isOrganizationContextFor> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between an organization and the role for which that organization provides the context (e.g. relating an institution to the role of member held by a person)."@en .
IRI: http://purl.org/spar/pro/isPersonContextFor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:isPersonContextFor a owl:ObjectProperty ;
rdfs:label "is person context for"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
:my-other-person a foaf:Person ;
pro:isPersonContextFor :my-person-role .
""" ;
rdfs:comment "The relation between a person and the role for which that person provides the context (e.g. relating a graduate student to the role of supervisor held by a faculty member)."@en ;
rdfs:isDefinedBy pro: ;
rdfs:subPropertyOf pro:isRelatedToRoleInTime ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/isPersonContextFor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/spar/pro/isRelatedToRoleInTime"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The relation between a person and the role for which that person provides the context (e.g. relating a graduate student to the role of supervisor held by a faculty member).</rdfs:comment>
<rdfs:label xml:lang="en">is person context for</rdfs:label>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
:my-other-person a foaf:Person ;
pro:isPersonContextFor :my-person-role .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/isPersonContextFor",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n :my-other-person a foaf:Person ;\n pro:isPersonContextFor :my-person-role .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between a person and the role for which that person provides the context (e.g. relating a graduate student to the role of supervisor held by a faculty member)."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "is person context for"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://purl.org/spar/pro/isRelatedToRoleInTime"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/isPersonContextFor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/isPersonContextFor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/isPersonContextFor> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between a person and the role for which that person provides the context (e.g. relating a graduate student to the role of supervisor held by a faculty member)."@en .
<http://purl.org/spar/pro/isPersonContextFor> <http://www.w3.org/2000/01/rdf-schema#label> "is person context for"@en .
<http://purl.org/spar/pro/isPersonContextFor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n :my-other-person a foaf:Person ;\n pro:isPersonContextFor :my-person-role .\n " .
<http://purl.org/spar/pro/isPersonContextFor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/isPersonContextFor> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/spar/pro/isRelatedToRoleInTime> .
IRI: http://purl.org/spar/pro/isRelatedToRoleInTime
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:isRelatedToRoleInTime a owl:ObjectProperty ;
rdfs:label "is related to role in time"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
:my-entity
pro:isRelatedToRoleInTime :my-person-role .
""" ;
rdfs:comment "The relation between an entity and the role for which that entity provides the context."@en ;
rdfs:isDefinedBy pro: ;
rdfs:range pro:RoleInTime ;
rdfs:subPropertyOf tisit:hasTimeIndexedSetting ;
owl:inverseOf pro:relatesToEntity ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/isRelatedToRoleInTime">
<rdfs:range rdf:resource="http://purl.org/spar/pro/RoleInTime"/>
<rdfs:subPropertyOf rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:label xml:lang="en">is related to role in time</rdfs:label>
<rdfs:comment xml:lang="en">The relation between an entity and the role for which that entity provides the context.</rdfs:comment>
<owl:inverseOf rdf:resource="http://purl.org/spar/pro/relatesToEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
:my-entity
pro:isRelatedToRoleInTime :my-person-role .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/isRelatedToRoleInTime",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n :my-entity\n pro:isRelatedToRoleInTime :my-person-role .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between an entity and the role for which that entity provides the context."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "is related to role in time"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://purl.org/spar/pro/RoleInTime"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting"
}
],
"http://www.w3.org/2002/07/owl#inverseOf": [
{
"@id": "http://purl.org/spar/pro/relatesToEntity"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/isRelatedToRoleInTime> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/isRelatedToRoleInTime> <http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/spar/pro/RoleInTime> .
<http://purl.org/spar/pro/isRelatedToRoleInTime> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting> .
<http://purl.org/spar/pro/isRelatedToRoleInTime> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n\n :my-entity\n pro:isRelatedToRoleInTime :my-person-role .\n " .
<http://purl.org/spar/pro/isRelatedToRoleInTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/isRelatedToRoleInTime> <http://www.w3.org/2000/01/rdf-schema#label> "is related to role in time"@en .
<http://purl.org/spar/pro/isRelatedToRoleInTime> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between an entity and the role for which that entity provides the context."@en .
<http://purl.org/spar/pro/isRelatedToRoleInTime> <http://www.w3.org/2002/07/owl#inverseOf> <http://purl.org/spar/pro/relatesToEntity> .
<http://purl.org/spar/pro/isRelatedToRoleInTime> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
IRI: http://purl.org/spar/pro/isHeldBy
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:isHeldBy a owl:ObjectProperty ;
rdfs:label "is role held by"@en ;
vann:example """
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist ;
pro:isHeldBy :my-person .
:my-person a foaf:Agent .
""" ;
rdfs:comment "The relation between a role in time that an agent holds, or a contribution situation that an agent makes, and that agent."@en ;
rdfs:domain pro:RoleInTime ;
rdfs:isDefinedBy pro: ;
rdfs:range foaf:Agent ;
rdfs:subPropertyOf tisit:forEntity ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/isHeldBy">
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
<rdfs:subPropertyOf rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity"/>
<rdfs:comment xml:lang="en">The relation between a role in time that an agent holds, or a contribution situation that an agent makes, and that agent.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:domain rdf:resource="http://purl.org/spar/pro/RoleInTime"/>
<rdfs:label xml:lang="en">is role held by</rdfs:label>
<vann:example>
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist ;
pro:isHeldBy :my-person .
:my-person a foaf:Agent .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/isHeldBy",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist ;\n pro:isHeldBy :my-person .\n\n :my-person a foaf:Agent .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between a role in time that an agent holds, or a contribution situation that an agent makes, and that agent."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://purl.org/spar/pro/RoleInTime"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "is role held by"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://xmlns.com/foaf/0.1/Agent"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/isHeldBy> <http://purl.org/vocab/vann/example> "\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist ;\n pro:isHeldBy :my-person .\n\n :my-person a foaf:Agent .\n " .
<http://purl.org/spar/pro/isHeldBy> <http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/spar/pro/RoleInTime> .
<http://purl.org/spar/pro/isHeldBy> <http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent> .
<http://purl.org/spar/pro/isHeldBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/isHeldBy> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between a role in time that an agent holds, or a contribution situation that an agent makes, and that agent."@en .
<http://purl.org/spar/pro/isHeldBy> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/isHeldBy> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/isHeldBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity> .
<http://purl.org/spar/pro/isHeldBy> <http://www.w3.org/2000/01/rdf-schema#label> "is role held by"@en .
IRI: http://purl.org/spar/pro/isRoleIn
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:isRoleIn a owl:ObjectProperty ;
rdfs:label "is role in"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime .
pro:archivist
pro:isRoleIn :my-person-role .
""" ;
rdfs:comment "The relation between the definition of a specific role and the situation of an agent holding that role."@en ;
rdfs:domain pro:Role ;
rdfs:isDefinedBy pro: ;
rdfs:range pro:RoleInTime ;
rdfs:subPropertyOf tisit:hasTimeIndexedSetting ;
owl:inverseOf pro:withRole ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/isRoleIn">
<rdfs:domain rdf:resource="http://purl.org/spar/pro/Role"/>
<rdfs:range rdf:resource="http://purl.org/spar/pro/RoleInTime"/>
<rdfs:subPropertyOf rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting"/>
<owl:inverseOf rdf:resource="http://purl.org/spar/pro/withRole"/>
<rdfs:comment xml:lang="en">The relation between the definition of a specific role and the situation of an agent holding that role.</rdfs:comment>
<rdfs:label xml:lang="en">is role in</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime .
pro:archivist
pro:isRoleIn :my-person-role .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/isRoleIn",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime .\n\n pro:archivist \n pro:isRoleIn :my-person-role .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between the definition of a specific role and the situation of an agent holding that role."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://purl.org/spar/pro/Role"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "is role in"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://purl.org/spar/pro/RoleInTime"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting"
}
],
"http://www.w3.org/2002/07/owl#inverseOf": [
{
"@id": "http://purl.org/spar/pro/withRole"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/isRoleIn> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime .\n\n pro:archivist \n pro:isRoleIn :my-person-role .\n " .
<http://purl.org/spar/pro/isRoleIn> <http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/spar/pro/Role> .
<http://purl.org/spar/pro/isRoleIn> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/isRoleIn> <http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/spar/pro/RoleInTime> .
<http://purl.org/spar/pro/isRoleIn> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#hasTimeIndexedSetting> .
<http://purl.org/spar/pro/isRoleIn> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between the definition of a specific role and the situation of an agent holding that role."@en .
<http://purl.org/spar/pro/isRoleIn> <http://www.w3.org/2002/07/owl#inverseOf> <http://purl.org/spar/pro/withRole> .
<http://purl.org/spar/pro/isRoleIn> <http://www.w3.org/2000/01/rdf-schema#label> "is role in"@en .
<http://purl.org/spar/pro/isRoleIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/isRoleIn> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
IRI: http://purl.org/spar/pro/relatesToEntity
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:relatesToEntity a owl:ObjectProperty ;
rdfs:label "relates to"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:relatesToEntity :my-entity ;
pro:withRole pro:archivist .
""" ;
rdfs:comment "The relation between a time-indexed situation and an entity representing the context for that situation."@en ;
rdfs:domain pro:RoleInTime ;
rdfs:isDefinedBy pro: ;
rdfs:subPropertyOf tvc:withinContext ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/relatesToEntity">
<rdfs:domain rdf:resource="http://purl.org/spar/pro/RoleInTime"/>
<rdfs:subPropertyOf rdf:resource="http://www.essepuntato.it/2012/04/tvc/withinContext"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The relation between a time-indexed situation and an entity representing the context for that situation.</rdfs:comment>
<rdfs:label xml:lang="en">relates to</rdfs:label>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:relatesToEntity :my-entity ;
pro:withRole pro:archivist .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/relatesToEntity",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:relatesToEntity :my-entity ;\n pro:withRole pro:archivist .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between a time-indexed situation and an entity representing the context for that situation."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://purl.org/spar/pro/RoleInTime"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "relates to"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://www.essepuntato.it/2012/04/tvc/withinContext"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/relatesToEntity> <http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/spar/pro/RoleInTime> .
<http://purl.org/spar/pro/relatesToEntity> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.essepuntato.it/2012/04/tvc/withinContext> .
<http://purl.org/spar/pro/relatesToEntity> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:relatesToEntity :my-entity ;\n pro:withRole pro:archivist .\n " .
<http://purl.org/spar/pro/relatesToEntity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/relatesToEntity> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/relatesToEntity> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between a time-indexed situation and an entity representing the context for that situation."@en .
<http://purl.org/spar/pro/relatesToEntity> <http://www.w3.org/2000/01/rdf-schema#label> "relates to"@en .
<http://purl.org/spar/pro/relatesToEntity> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
IRI: http://purl.org/spar/pro/relatesToDocument
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:relatesToDocument a owl:ObjectProperty ;
rdfs:label "relates to document"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:relatesToDocument :my-document .
pro:withRole pro:archivist .
:my-document a foaf:Document .
""" ;
rdfs:comment "The relation between a time-indexed situation describing a publishing role and a document that represents the context for that situation (e.g. relating the role of editor or peer-reviewer to the document being edited or peer-reviewed)."@en ;
rdfs:isDefinedBy pro: ;
rdfs:range foaf:Document ;
rdfs:subPropertyOf pro:relatesToEntity ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/relatesToDocument">
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/spar/pro/relatesToEntity"/>
<rdfs:comment xml:lang="en">The relation between a time-indexed situation describing a publishing role and a document that represents the context for that situation (e.g. relating the role of editor or peer-reviewer to the document being edited or peer-reviewed).</rdfs:comment>
<rdfs:label xml:lang="en">relates to document</rdfs:label>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:relatesToDocument :my-document .
pro:withRole pro:archivist .
:my-document a foaf:Document .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/relatesToDocument",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:relatesToDocument :my-document .\n pro:withRole pro:archivist .\n\n :my-document a foaf:Document .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between a time-indexed situation describing a publishing role and a document that represents the context for that situation (e.g. relating the role of editor or peer-reviewer to the document being edited or peer-reviewed)."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "relates to document"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://xmlns.com/foaf/0.1/Document"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://purl.org/spar/pro/relatesToEntity"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/relatesToDocument> <http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Document> .
<http://purl.org/spar/pro/relatesToDocument> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/relatesToDocument> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/relatesToDocument> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/relatesToDocument> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between a time-indexed situation describing a publishing role and a document that represents the context for that situation (e.g. relating the role of editor or peer-reviewer to the document being edited or peer-reviewed)."@en .
<http://purl.org/spar/pro/relatesToDocument> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:relatesToDocument :my-document .\n pro:withRole pro:archivist .\n\n :my-document a foaf:Document .\n " .
<http://purl.org/spar/pro/relatesToDocument> <http://www.w3.org/2000/01/rdf-schema#label> "relates to document"@en .
<http://purl.org/spar/pro/relatesToDocument> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/spar/pro/relatesToEntity> .
IRI: http://purl.org/spar/pro/relatesToOrganization
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:relatesToOrganization a owl:ObjectProperty ;
rdfs:label "relates to organization"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:relatesToOrganization :my-organization .
pro:withRole pro:archivist .
:my-organization a foaf:Organization .
""" ;
rdfs:comment "The relation between a time-indexed situation and an organization that represents the context for that situation (e.g. relating the role of member to the institution of which that person is a member)."@en ;
rdfs:isDefinedBy pro: ;
rdfs:range foaf:Organization ;
rdfs:subPropertyOf pro:relatesToEntity ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/relatesToOrganization">
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
<rdfs:comment xml:lang="en">The relation between a time-indexed situation and an organization that represents the context for that situation (e.g. relating the role of member to the institution of which that person is a member).</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:label xml:lang="en">relates to organization</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/spar/pro/relatesToEntity"/>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:relatesToOrganization :my-organization .
pro:withRole pro:archivist .
:my-organization a foaf:Organization .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/relatesToOrganization",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:relatesToOrganization :my-organization .\n pro:withRole pro:archivist .\n\n :my-organization a foaf:Organization .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between a time-indexed situation and an organization that represents the context for that situation (e.g. relating the role of member to the institution of which that person is a member)."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "relates to organization"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://xmlns.com/foaf/0.1/Organization"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://purl.org/spar/pro/relatesToEntity"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/relatesToOrganization> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/relatesToOrganization> <http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Organization> .
<http://purl.org/spar/pro/relatesToOrganization> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between a time-indexed situation and an organization that represents the context for that situation (e.g. relating the role of member to the institution of which that person is a member)."@en .
<http://purl.org/spar/pro/relatesToOrganization> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/relatesToOrganization> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/relatesToOrganization> <http://www.w3.org/2000/01/rdf-schema#label> "relates to organization"@en .
<http://purl.org/spar/pro/relatesToOrganization> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/spar/pro/relatesToEntity> .
<http://purl.org/spar/pro/relatesToOrganization> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:relatesToOrganization :my-organization .\n pro:withRole pro:archivist .\n\n :my-organization a foaf:Organization .\n " .
IRI: http://purl.org/spar/pro/relatesToPerson
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:relatesToPerson a owl:ObjectProperty ;
rdfs:label "relates to person"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:relatesToPerson :my-other-person .
pro:withRole pro:archivist .
:my-other-person a foaf:Person .
""" ;
rdfs:comment "The relation between a time-indexed situation and a person who represents the context for that situation (e.g. relating the role of an supervisor with respect to the graduate student being supervised)."@en ;
rdfs:isDefinedBy pro: ;
rdfs:range foaf:Person ;
rdfs:subPropertyOf pro:relatesToEntity ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/relatesToPerson">
<rdfs:subPropertyOf rdf:resource="http://purl.org/spar/pro/relatesToEntity"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">relates to person</rdfs:label>
<rdfs:comment xml:lang="en">The relation between a time-indexed situation and a person who represents the context for that situation (e.g. relating the role of an supervisor with respect to the graduate student being supervised).</rdfs:comment>
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:relatesToPerson :my-other-person .
pro:withRole pro:archivist .
:my-other-person a foaf:Person .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/relatesToPerson",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:relatesToPerson :my-other-person .\n pro:withRole pro:archivist .\n\n :my-other-person a foaf:Person .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between a time-indexed situation and a person who represents the context for that situation (e.g. relating the role of an supervisor with respect to the graduate student being supervised)."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "relates to person"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://xmlns.com/foaf/0.1/Person"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://purl.org/spar/pro/relatesToEntity"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/relatesToPerson> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/spar/pro/relatesToEntity> .
<http://purl.org/spar/pro/relatesToPerson> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/relatesToPerson> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/relatesToPerson> <http://www.w3.org/2000/01/rdf-schema#label> "relates to person"@en .
<http://purl.org/spar/pro/relatesToPerson> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:relatesToPerson :my-other-person .\n pro:withRole pro:archivist .\n\n :my-other-person a foaf:Person .\n " .
<http://purl.org/spar/pro/relatesToPerson> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/relatesToPerson> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between a time-indexed situation and a person who represents the context for that situation (e.g. relating the role of an supervisor with respect to the graduate student being supervised)."@en .
<http://purl.org/spar/pro/relatesToPerson> <http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Person> .
IRI: http://purl.org/spar/pro/withRole
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:withRole a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:label "with role"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
""" ;
rdfs:comment "An object property connecting an agent's role in time to a definition of the type of role held by this agent, specified as an instance of the class pro:Role or of one of its sub-classes."@en ;
rdfs:domain pro:RoleInTime ;
rdfs:isDefinedBy pro: ;
rdfs:range pro:Role ;
rdfs:subPropertyOf tvc:withValue ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/withRole">
<rdfs:subPropertyOf rdf:resource="http://www.essepuntato.it/2012/04/tvc/withValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:range rdf:resource="http://purl.org/spar/pro/Role"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:domain rdf:resource="http://purl.org/spar/pro/RoleInTime"/>
<rdfs:label xml:lang="en">with role</rdfs:label>
<rdfs:comment xml:lang="en">An object property connecting an agent's role in time to a definition of the type of role held by this agent, specified as an instance of the class pro:Role or of one of its sub-classes.</rdfs:comment>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/withRole",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty",
"http://www.w3.org/2002/07/owl#FunctionalProperty"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "An object property connecting an agent's role in time to a definition of the type of role held by this agent, specified as an instance of the class pro:Role or of one of its sub-classes."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://purl.org/spar/pro/RoleInTime"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "with role"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://purl.org/spar/pro/Role"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://www.essepuntato.it/2012/04/tvc/withValue"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/withRole> <http://www.w3.org/2000/01/rdf-schema#label> "with role"@en .
<http://purl.org/spar/pro/withRole> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.essepuntato.it/2012/04/tvc/withValue> .
<http://purl.org/spar/pro/withRole> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n " .
<http://purl.org/spar/pro/withRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/spar/pro/withRole> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/withRole> <http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/spar/pro/Role> .
<http://purl.org/spar/pro/withRole> <http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/spar/pro/RoleInTime> .
<http://purl.org/spar/pro/withRole> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/withRole> <http://www.w3.org/2000/01/rdf-schema#comment> "An object property connecting an agent's role in time to a definition of the type of role held by this agent, specified as an instance of the class pro:Role or of one of its sub-classes."@en .
<http://purl.org/spar/pro/withRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
IRI: http://www.essepuntato.it/2012/04/tvc/withValue
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
tvc:withValue a owl:ObjectProperty ;
rdfs:label "with value"@en ;
rdfs:comment "The relation between the value in time situation and the actual value held by the entity partaking in that situation."@en ;
rdfs:domain tvc:ValueInTime ;
rdfs:isDefinedBy <http://purl.org/spar/tvc/> ;
rdfs:subPropertyOf tisit:forEntity .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.essepuntato.it/2012/04/tvc/withValue">
<rdfs:subPropertyOf rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/tvc/"/>
<rdfs:comment xml:lang="en">The relation between the value in time situation and the actual value held by the entity partaking in that situation.</rdfs:comment>
<rdfs:domain rdf:resource="http://www.essepuntato.it/2012/04/tvc/ValueInTime"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:label xml:lang="en">with value</rdfs:label>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.essepuntato.it/2012/04/tvc/withValue",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The relation between the value in time situation and the actual value held by the entity partaking in that situation."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://www.essepuntato.it/2012/04/tvc/ValueInTime"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/tvc/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "with value"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity"
}
]
}
]<http://www.essepuntato.it/2012/04/tvc/withValue> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity> .
<http://www.essepuntato.it/2012/04/tvc/withValue> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/tvc/> .
<http://www.essepuntato.it/2012/04/tvc/withValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.essepuntato.it/2012/04/tvc/withValue> <http://www.w3.org/2000/01/rdf-schema#comment> "The relation between the value in time situation and the actual value held by the entity partaking in that situation."@en .
<http://www.essepuntato.it/2012/04/tvc/withValue> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.essepuntato.it/2012/04/tvc/ValueInTime> .
<http://www.essepuntato.it/2012/04/tvc/withValue> <http://www.w3.org/2000/01/rdf-schema#label> "with value"@en .
IRI: http://www.essepuntato.it/2012/04/tvc/withinContext
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tisit: <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
tvc:withinContext a owl:ObjectProperty ;
rdfs:label "within context"@en ;
rdfs:comment "The specific context within which the fact of the entity having the value is relevant."@en ;
rdfs:domain tvc:ValueInTime ;
rdfs:isDefinedBy <http://purl.org/spar/tvc/> ;
rdfs:subPropertyOf tisit:forEntity .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.essepuntato.it/2012/04/tvc/withinContext">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:comment xml:lang="en">The specific context within which the fact of the entity having the value is relevant.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/tvc/"/>
<rdfs:label xml:lang="en">within context</rdfs:label>
<rdfs:domain rdf:resource="http://www.essepuntato.it/2012/04/tvc/ValueInTime"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.essepuntato.it/2012/04/tvc/withinContext",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The specific context within which the fact of the entity having the value is relevant."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://www.essepuntato.it/2012/04/tvc/ValueInTime"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/tvc/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "within context"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity"
}
]
}
]<http://www.essepuntato.it/2012/04/tvc/withinContext> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#forEntity> .
<http://www.essepuntato.it/2012/04/tvc/withinContext> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/tvc/> .
<http://www.essepuntato.it/2012/04/tvc/withinContext> <http://www.w3.org/2000/01/rdf-schema#label> "within context"@en .
<http://www.essepuntato.it/2012/04/tvc/withinContext> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.essepuntato.it/2012/04/tvc/withinContext> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.essepuntato.it/2012/04/tvc/ValueInTime> .
<http://www.essepuntato.it/2012/04/tvc/withinContext> <http://www.w3.org/2000/01/rdf-schema#comment> "The specific context within which the fact of the entity having the value is relevant."@en .
IRI: http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ti: <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#> .
ti:hasIntervalDate a owl:DatatypeProperty ;
rdfs:label "has interval date"@en ;
rdfs:comment "A date value assigned to a time interval."@en ;
rdfs:domain ti:TimeInterval ;
rdfs:isDefinedBy ti: .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate">
<rdfs:domain rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval"/>
<rdfs:label xml:lang="en">has interval date</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:comment xml:lang="en">A date value assigned to a time interval.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate",
"@type": [
"http://www.w3.org/2002/07/owl#DatatypeProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "A date value assigned to a time interval."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "has interval date"
}
]
}
]<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate> <http://www.w3.org/2000/01/rdf-schema#label> "has interval date"@en .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#TimeInterval> .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate> <http://www.w3.org/2000/01/rdf-schema#comment> "A date value assigned to a time interval."@en .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#> .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalDate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
IRI: http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalEndDate
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ti: <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#> .
ti:hasIntervalEndDate a owl:DatatypeProperty ;
rdfs:label "has interval end date"@en ;
rdfs:comment "The end date of a time interval" ;
rdfs:isDefinedBy ti: .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalEndDate">
<rdfs:comment>The end date of a time interval</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:label xml:lang="en">has interval end date</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalEndDate",
"@type": [
"http://www.w3.org/2002/07/owl#DatatypeProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "The end date of a time interval"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "has interval end date"
}
]
}
]<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalEndDate> <http://www.w3.org/2000/01/rdf-schema#label> "has interval end date"@en .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalEndDate> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#> .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalEndDate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalEndDate> <http://www.w3.org/2000/01/rdf-schema#comment> "The end date of a time interval" .
IRI: http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalStartDate
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ti: <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#> .
ti:hasIntervalStartDate a owl:DatatypeProperty ;
rdfs:label "has interval start date"@en ;
rdfs:comment "The start date of a time interval" ;
rdfs:isDefinedBy ti: .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalStartDate">
<rdfs:isDefinedBy rdf:resource="http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:comment>The start date of a time interval</rdfs:comment>
<rdfs:label xml:lang="en">has interval start date</rdfs:label>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalStartDate",
"@type": [
"http://www.w3.org/2002/07/owl#DatatypeProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "The start date of a time interval"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "has interval start date"
}
]
}
]<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalStartDate> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#> .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalStartDate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalStartDate> <http://www.w3.org/2000/01/rdf-schema#comment> "The start date of a time interval" .
<http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#hasIntervalStartDate> <http://www.w3.org/2000/01/rdf-schema#label> "has interval start date"@en .
Jump to:
IRI: http://purl.org/spar/pro/archivist
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:archivist a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "archivist"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
""" ;
rdfs:comment "The role of a person who manages, undertakes and supervises the work of an archive."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable ;
skos:note """
This term is typically used with respect to a document archive, whereas the term data curator is used with respect to a data archive.
"""@en .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/archivist">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:comment xml:lang="en">The role of a person who manages, undertakes and supervises the work of an archive.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">archivist</rdfs:label>
<skos:note xml:lang="en">
This term is typically used with respect to a document archive, whereas the term data curator is used with respect to a data archive.
</skos:note>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:archivist .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/archivist",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of a person who manages, undertakes and supervises the work of an archive."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "archivist"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
],
"http://www.w3.org/2004/02/skos/core#note": [
{
"@language": "en",
"@value": "\nThis term is typically used with respect to a document archive, whereas the term data curator is used with respect to a data archive. \n "
}
]
}
]<http://purl.org/spar/pro/archivist> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:archivist .\n " .
<http://purl.org/spar/pro/archivist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/archivist> <http://www.w3.org/2004/02/skos/core#note> "\nThis term is typically used with respect to a document archive, whereas the term data curator is used with respect to a data archive. \n "@en .
<http://purl.org/spar/pro/archivist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/archivist> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of a person who manages, undertakes and supervises the work of an archive."@en .
<http://purl.org/spar/pro/archivist> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/archivist> <http://www.w3.org/2000/01/rdf-schema#label> "archivist"@en .
<http://purl.org/spar/pro/archivist> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
IRI: http://purl.org/spar/pro/author
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:author a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "author"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:author .
""" ;
rdfs:comment "The role a person has of authorship of some material (for example a document)."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/author">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:label xml:lang="en">author</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role a person has of authorship of some material (for example a document).</rdfs:comment>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:author .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/author",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:author .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role a person has of authorship of some material (for example a document)."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "author"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/author> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/author> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:author .\n " .
<http://purl.org/spar/pro/author> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/author> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/author> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/author> <http://www.w3.org/2000/01/rdf-schema#label> "author"@en .
<http://purl.org/spar/pro/author> <http://www.w3.org/2000/01/rdf-schema#comment> "The role a person has of authorship of some material (for example a document)."@en .
IRI: http://purl.org/spar/pro/authors-agent
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:authors-agent a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "author's agent"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:authors-agent .
""" ;
rdfs:comment "A person who finds work for professional authors, manages their contracts, and works to advance their careers, charging their clients as fees for their services a percentage of the money made from the authors' writings."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/authors-agent">
<rdfs:label xml:lang="en">author's agent</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">A person who finds work for professional authors, manages their contracts, and works to advance their careers, charging their clients as fees for their services a percentage of the money made from the authors' writings.</rdfs:comment>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:authors-agent .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/authors-agent",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:authors-agent .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "A person who finds work for professional authors, manages their contracts, and works to advance their careers, charging their clients as fees for their services a percentage of the money made from the authors' writings."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "author's agent"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/authors-agent> <http://www.w3.org/2000/01/rdf-schema#label> "author's agent"@en .
<http://purl.org/spar/pro/authors-agent> <http://www.w3.org/2000/01/rdf-schema#comment> "A person who finds work for professional authors, manages their contracts, and works to advance their careers, charging their clients as fees for their services a percentage of the money made from the authors' writings."@en .
<http://purl.org/spar/pro/authors-agent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/authors-agent> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/authors-agent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/authors-agent> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:authors-agent .\n " .
<http://purl.org/spar/pro/authors-agent> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:biographer a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "biographer"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:biographer .
""" ;
rdfs:comment "The role of an author who writes biographies."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/biographer">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">biographer</rdfs:label>
<rdfs:comment xml:lang="en">The role of an author who writes biographies.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:biographer .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/biographer",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:biographer .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an author who writes biographies."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "biographer"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/biographer> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/biographer> <http://www.w3.org/2000/01/rdf-schema#label> "biographer"@en .
<http://purl.org/spar/pro/biographer> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/biographer> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:biographer .\n " .
<http://purl.org/spar/pro/biographer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/biographer> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an author who writes biographies."@en .
<http://purl.org/spar/pro/biographer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:blogger a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "blogger"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:blogger .
""" ;
rdfs:comment "The role of an author who writes blog posts."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/blogger">
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdfs:label xml:lang="en">blogger</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role of an author who writes blog posts.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:blogger .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/blogger",
"@type": [
"http://purl.org/spar/pro/PublishingRole",
"http://www.w3.org/2002/07/owl#NamedIndividual"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:blogger .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an author who writes blog posts."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "blogger"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/blogger> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/blogger> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/blogger> <http://www.w3.org/2000/01/rdf-schema#label> "blogger"@en .
<http://purl.org/spar/pro/blogger> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/blogger> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:blogger .\n " .
<http://purl.org/spar/pro/blogger> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an author who writes blog posts."@en .
<http://purl.org/spar/pro/blogger> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
IRI: http://purl.org/spar/pro/commissioning-editor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:commissioning-editor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "commissioning editor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:commissioning-editor .
""" ;
rdfs:comment "The role of an editor who actively commissions authors to write books to be published by the publishing house for which the commissioning editor works."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/commissioning-editor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:comment xml:lang="en">The role of an editor who actively commissions authors to write books to be published by the publishing house for which the commissioning editor works.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">commissioning editor</rdfs:label>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:commissioning-editor .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/commissioning-editor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:commissioning-editor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an editor who actively commissions authors to write books to be published by the publishing house for which the commissioning editor works."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "commissioning editor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/commissioning-editor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an editor who actively commissions authors to write books to be published by the publishing house for which the commissioning editor works."@en .
<http://purl.org/spar/pro/commissioning-editor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/commissioning-editor> <http://www.w3.org/2000/01/rdf-schema#label> "commissioning editor"@en .
<http://purl.org/spar/pro/commissioning-editor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:commissioning-editor .\n " .
<http://purl.org/spar/pro/commissioning-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/commissioning-editor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/commissioning-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
IRI: http://purl.org/spar/pro/compiler
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:compiler a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "compiler"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:compiler .
""" ;
rdfs:comment "The role an agent has of compiling a number of items into a compilation or collection."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/compiler">
<rdfs:comment xml:lang="en">The role an agent has of compiling a number of items into a compilation or collection.</rdfs:comment>
<rdfs:label xml:lang="en">compiler</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:compiler .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/compiler",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:compiler .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role an agent has of compiling a number of items into a compilation or collection."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "compiler"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/compiler> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:compiler .\n " .
<http://purl.org/spar/pro/compiler> <http://www.w3.org/2000/01/rdf-schema#comment> "The role an agent has of compiling a number of items into a compilation or collection."@en .
<http://purl.org/spar/pro/compiler> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/compiler> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/compiler> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/compiler> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/compiler> <http://www.w3.org/2000/01/rdf-schema#label> "compiler"@en .
IRI: http://purl.org/spar/pro/contributor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:contributor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "contributor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:contributor .
""" ;
rdfs:comment "The role an agent has of contribution of some material (for example an article to a magazine)."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/contributor">
<rdfs:label xml:lang="en">contributor</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role an agent has of contribution of some material (for example an article to a magazine).</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:contributor .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/contributor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:contributor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role an agent has of contribution of some material (for example an article to a magazine)."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "contributor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/contributor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/contributor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:contributor .\n " .
<http://purl.org/spar/pro/contributor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/contributor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/contributor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role an agent has of contribution of some material (for example an article to a magazine)."@en .
<http://purl.org/spar/pro/contributor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/contributor> <http://www.w3.org/2000/01/rdf-schema#label> "contributor"@en .
IRI: http://purl.org/spar/pro/copy-editor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:copy-editor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "copy editor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:copy-editor .
""" ;
rdfs:comment "The role of an editor who undertakes alterations to the text of a document submitted for publication to improve the formatting, style and accuracy of text, or to bring the text into the house style of the publisher (e.g. Americanization of British spelling), without intentionally altering the substance or meaning of the text."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/copy-editor">
<rdfs:label xml:lang="en">copy editor</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:comment xml:lang="en">The role of an editor who undertakes alterations to the text of a document submitted for publication to improve the formatting, style and accuracy of text, or to bring the text into the house style of the publisher (e.g. Americanization of British spelling), without intentionally altering the substance or meaning of the text.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:copy-editor .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/copy-editor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:copy-editor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an editor who undertakes alterations to the text of a document submitted for publication to improve the formatting, style and accuracy of text, or to bring the text into the house style of the publisher (e.g. Americanization of British spelling), without intentionally altering the substance or meaning of the text."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "copy editor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/copy-editor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/copy-editor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:copy-editor .\n " .
<http://purl.org/spar/pro/copy-editor> <http://www.w3.org/2000/01/rdf-schema#label> "copy editor"@en .
<http://purl.org/spar/pro/copy-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/copy-editor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an editor who undertakes alterations to the text of a document submitted for publication to improve the formatting, style and accuracy of text, or to bring the text into the house style of the publisher (e.g. Americanization of British spelling), without intentionally altering the substance or meaning of the text."@en .
<http://purl.org/spar/pro/copy-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/copy-editor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
IRI: http://purl.org/spar/pro/copyright-owner
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:copyright-owner a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "copyright owner"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:copyright-owner .
""" ;
rdfs:comment "The role of owning the copyright to a publication, usually held by the author or by the publishing house that publishes the author's work."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/copyright-owner">
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdfs:label xml:lang="en">copyright owner</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role of owning the copyright to a publication, usually held by the author or by the publishing house that publishes the author's work.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:copyright-owner .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/copyright-owner",
"@type": [
"http://purl.org/spar/pro/PublishingRole",
"http://www.w3.org/2002/07/owl#NamedIndividual"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:copyright-owner .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of owning the copyright to a publication, usually held by the author or by the publishing house that publishes the author's work."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "copyright owner"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/copyright-owner> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/copyright-owner> <http://www.w3.org/2000/01/rdf-schema#label> "copyright owner"@en .
<http://purl.org/spar/pro/copyright-owner> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/copyright-owner> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of owning the copyright to a publication, usually held by the author or by the publishing house that publishes the author's work."@en .
<http://purl.org/spar/pro/copyright-owner> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:copyright-owner .\n " .
<http://purl.org/spar/pro/copyright-owner> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/copyright-owner> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
IRI: http://purl.org/spar/pro/critic
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:critic a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "critic"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:critic .
""" ;
rdfs:comment "The role of an author who writes evaluations and criticisms of, for example, plays or other works of art."@en ;
rdfs:isDefinedBy pro: ;
rdfs:seeAlso pro:reviewer ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/critic">
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">critic</rdfs:label>
<rdfs:seeAlso rdf:resource="http://purl.org/spar/pro/reviewer"/>
<rdfs:comment xml:lang="en">The role of an author who writes evaluations and criticisms of, for example, plays or other works of art.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:critic .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/critic",
"@type": [
"http://purl.org/spar/pro/PublishingRole",
"http://www.w3.org/2002/07/owl#NamedIndividual"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:critic .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an author who writes evaluations and criticisms of, for example, plays or other works of art."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "critic"
}
],
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
{
"@id": "http://purl.org/spar/pro/reviewer"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/critic> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/critic> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/critic> <http://www.w3.org/2000/01/rdf-schema#label> "critic"@en .
<http://purl.org/spar/pro/critic> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:critic .\n " .
<http://purl.org/spar/pro/critic> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/critic> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://purl.org/spar/pro/reviewer> .
<http://purl.org/spar/pro/critic> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an author who writes evaluations and criticisms of, for example, plays or other works of art."@en .
<http://purl.org/spar/pro/critic> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
IRI: http://purl.org/spar/pro/deputy-editor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:deputy-editor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "deputy editor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:deputy-editor .
""" ;
rdfs:comment "The role of a senior editor of a publication who deputizes for the Editor-in-Chief."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/deputy-editor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">deputy editor</rdfs:label>
<rdfs:comment xml:lang="en">The role of a senior editor of a publication who deputizes for the Editor-in-Chief.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:deputy-editor .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/deputy-editor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:deputy-editor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of a senior editor of a publication who deputizes for the Editor-in-Chief."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "deputy editor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/deputy-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/deputy-editor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:deputy-editor .\n " .
<http://purl.org/spar/pro/deputy-editor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/deputy-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/deputy-editor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of a senior editor of a publication who deputizes for the Editor-in-Chief."@en .
<http://purl.org/spar/pro/deputy-editor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/deputy-editor> <http://www.w3.org/2000/01/rdf-schema#label> "deputy editor"@en .
IRI: http://purl.org/spar/pro/distributor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:distributor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "distributor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:distributor .
""" ;
rdfs:comment "The role of a person who distributes or disseminates publications or other resources."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/distributor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role of a person who distributes or disseminates publications or other resources.</rdfs:comment>
<rdfs:label xml:lang="en">distributor</rdfs:label>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:distributor .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/distributor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:distributor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of a person who distributes or disseminates publications or other resources."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "distributor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/distributor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of a person who distributes or disseminates publications or other resources."@en .
<http://purl.org/spar/pro/distributor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/distributor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:distributor .\n " .
<http://purl.org/spar/pro/distributor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/distributor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/distributor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/distributor> <http://www.w3.org/2000/01/rdf-schema#label> "distributor"@en .
IRI: http://purl.org/spar/pro/editor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:editor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "editor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:editor .
""" ;
rdfs:comment "The role of a person who selects and prepares for publication material created and submitted by authors, having oversight of its content, format and presentation."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/editor">
<rdfs:label xml:lang="en">editor</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role of a person who selects and prepares for publication material created and submitted by authors, having oversight of its content, format and presentation.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:editor .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/editor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:editor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of a person who selects and prepares for publication material created and submitted by authors, having oversight of its content, format and presentation."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "editor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/editor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of a person who selects and prepares for publication material created and submitted by authors, having oversight of its content, format and presentation."@en .
<http://purl.org/spar/pro/editor> <http://www.w3.org/2000/01/rdf-schema#label> "editor"@en .
<http://purl.org/spar/pro/editor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:editor .\n " .
<http://purl.org/spar/pro/editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/editor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/editor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
IRI: http://purl.org/spar/pro/editor-in-chief
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:editor-in-chief a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "editor-in-chief"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:editor-in-chief .
""" ;
rdfs:comment "The role of the person who has final responsibility for the editorial operations and policies for a particular publication."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/editor-in-chief">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">editor-in-chief</rdfs:label>
<rdfs:comment xml:lang="en">The role of the person who has final responsibility for the editorial operations and policies for a particular publication.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:editor-in-chief .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/editor-in-chief",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:editor-in-chief .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of the person who has final responsibility for the editorial operations and policies for a particular publication."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "editor-in-chief"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/editor-in-chief> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/editor-in-chief> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/editor-in-chief> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/editor-in-chief> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/editor-in-chief> <http://www.w3.org/2000/01/rdf-schema#label> "editor-in-chief"@en .
<http://purl.org/spar/pro/editor-in-chief> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of the person who has final responsibility for the editorial operations and policies for a particular publication."@en .
<http://purl.org/spar/pro/editor-in-chief> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:editor-in-chief .\n " .
IRI: http://purl.org/spar/pro/executive-editor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:executive-editor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "executive editor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:executive-editor .
""" ;
rdfs:comment "The role of an editor who has executive responsibility for the production of particular publication, usually acting under the authority of the Editor-in-Chief."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/executive-editor">
<rdfs:label xml:lang="en">executive editor</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role of an editor who has executive responsibility for the production of particular publication, usually acting under the authority of the Editor-in-Chief.</rdfs:comment>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:executive-editor .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/executive-editor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:executive-editor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an editor who has executive responsibility for the production of particular publication, usually acting under the authority of the Editor-in-Chief."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "executive editor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/executive-editor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:executive-editor .\n " .
<http://purl.org/spar/pro/executive-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/executive-editor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/executive-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/executive-editor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/executive-editor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an editor who has executive responsibility for the production of particular publication, usually acting under the authority of the Editor-in-Chief."@en .
<http://purl.org/spar/pro/executive-editor> <http://www.w3.org/2000/01/rdf-schema#label> "executive editor"@en .
IRI: http://purl.org/spar/pro/ghost-writer
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:ghost-writer a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "ghost writer"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:ghost-writer .
""" ;
rdfs:comment "The role of a professional writer who assists an aspiring author lacking authorship skills to write a book or article for publication, for example by helping the author to create grammatically correct and lucid prose, or who writes the book on behalf of the named author, without himself/herself claiming authorship."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/ghost-writer">
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">ghost writer</rdfs:label>
<rdfs:comment xml:lang="en">The role of a professional writer who assists an aspiring author lacking authorship skills to write a book or article for publication, for example by helping the author to create grammatically correct and lucid prose, or who writes the book on behalf of the named author, without himself/herself claiming authorship.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:ghost-writer .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/ghost-writer",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:ghost-writer .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of a professional writer who assists an aspiring author lacking authorship skills to write a book or article for publication, for example by helping the author to create grammatically correct and lucid prose, or who writes the book on behalf of the named author, without himself/herself claiming authorship."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "ghost writer"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/ghost-writer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/ghost-writer> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/ghost-writer> <http://www.w3.org/2000/01/rdf-schema#label> "ghost writer"@en .
<http://purl.org/spar/pro/ghost-writer> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/ghost-writer> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:ghost-writer .\n " .
<http://purl.org/spar/pro/ghost-writer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/ghost-writer> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of a professional writer who assists an aspiring author lacking authorship skills to write a book or article for publication, for example by helping the author to create grammatically correct and lucid prose, or who writes the book on behalf of the named author, without himself/herself claiming authorship."@en .
IRI: http://purl.org/spar/pro/guest-editor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:guest-editor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "guest editor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:guest-editor .
""" ;
rdfs:comment "The role of someone who is a guest editor, for example for a special themed issue of a journal."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/guest-editor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">guest editor</rdfs:label>
<rdfs:comment xml:lang="en">The role of someone who is a guest editor, for example for a special themed issue of a journal.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:guest-editor .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/guest-editor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:guest-editor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of someone who is a guest editor, for example for a special themed issue of a journal."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "guest editor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/guest-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/guest-editor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of someone who is a guest editor, for example for a special themed issue of a journal."@en .
<http://purl.org/spar/pro/guest-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/guest-editor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/guest-editor> <http://www.w3.org/2000/01/rdf-schema#label> "guest editor"@en .
<http://purl.org/spar/pro/guest-editor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/guest-editor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:guest-editor .\n " .
IRI: http://purl.org/spar/pro/illustrator
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:illustrator a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "illustrator"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:illustrator .
""" ;
rdfs:comment "The role of an agent that illustrates a document."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/illustrator">
<rdfs:comment xml:lang="en">The role of an agent that illustrates a document.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">illustrator</rdfs:label>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:illustrator .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/illustrator",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:illustrator .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an agent that illustrates a document."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "illustrator"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/illustrator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/illustrator> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/illustrator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/illustrator> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/illustrator> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:illustrator .\n " .
<http://purl.org/spar/pro/illustrator> <http://www.w3.org/2000/01/rdf-schema#label> "illustrator"@en .
<http://purl.org/spar/pro/illustrator> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an agent that illustrates a document."@en .
IRI: http://purl.org/spar/pro/journalist
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:journalist a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "journalist"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:journalist .
""" ;
rdfs:comment "The role of an author who writes newspaper or magazine news reports or articles."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/journalist">
<rdfs:label xml:lang="en">journalist</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role of an author who writes newspaper or magazine news reports or articles.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:journalist .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/journalist",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:journalist .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an author who writes newspaper or magazine news reports or articles."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "journalist"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/journalist> <http://www.w3.org/2000/01/rdf-schema#label> "journalist"@en .
<http://purl.org/spar/pro/journalist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/journalist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/journalist> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:journalist .\n " .
<http://purl.org/spar/pro/journalist> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an author who writes newspaper or magazine news reports or articles."@en .
<http://purl.org/spar/pro/journalist> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/journalist> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
IRI: http://purl.org/spar/pro/librarian
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:librarian a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "librarian"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:librarian .
""" ;
rdfs:comment "The role of a person who manages, undertakes and supervises the work of a library."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/librarian">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:label xml:lang="en">librarian</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role of a person who manages, undertakes and supervises the work of a library.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:librarian .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/librarian",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:librarian .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of a person who manages, undertakes and supervises the work of a library."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "librarian"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/librarian> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/librarian> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/librarian> <http://www.w3.org/2000/01/rdf-schema#label> "librarian"@en .
<http://purl.org/spar/pro/librarian> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/librarian> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/librarian> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of a person who manages, undertakes and supervises the work of a library."@en .
<http://purl.org/spar/pro/librarian> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:librarian .\n " .
IRI: http://purl.org/spar/pro/managing-editor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:managing-editor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "managing editor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:managing-editor .
""" ;
rdfs:comment "The role of an editor who has management responsibility for the production of particular publication, usually acting under the authority of the Executive Editor and the Editor-in-Chief."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/managing-editor">
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">managing editor</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:comment xml:lang="en">The role of an editor who has management responsibility for the production of particular publication, usually acting under the authority of the Executive Editor and the Editor-in-Chief.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:managing-editor .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/managing-editor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:managing-editor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an editor who has management responsibility for the production of particular publication, usually acting under the authority of the Executive Editor and the Editor-in-Chief."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "managing editor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/managing-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/managing-editor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/managing-editor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/managing-editor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:managing-editor .\n " .
<http://purl.org/spar/pro/managing-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/managing-editor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an editor who has management responsibility for the production of particular publication, usually acting under the authority of the Executive Editor and the Editor-in-Chief."@en .
<http://purl.org/spar/pro/managing-editor> <http://www.w3.org/2000/01/rdf-schema#label> "managing editor"@en .
IRI: http://purl.org/spar/pro/peer-reviewer
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:peer-reviewer a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "peer reviewer"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:peer-reviewer .
""" ;
rdfs:comment "The role of an academic peer in evaluating a manuscript submitted by an author for publication as a journal article on behalf of the journal editor, or a conference paper on behalf of the conference programme committee, and in deciding whether it is suitable for acceptance, usually subject to revisions suggested by the peer-reviewer."@en ;
rdfs:isDefinedBy pro: ;
rdfs:seeAlso pro:reviewer ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/peer-reviewer">
<rdfs:seeAlso rdf:resource="http://purl.org/spar/pro/reviewer"/>
<rdfs:label xml:lang="en">peer reviewer</rdfs:label>
<rdfs:comment xml:lang="en">The role of an academic peer in evaluating a manuscript submitted by an author for publication as a journal article on behalf of the journal editor, or a conference paper on behalf of the conference programme committee, and in deciding whether it is suitable for acceptance, usually subject to revisions suggested by the peer-reviewer.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:peer-reviewer .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/peer-reviewer",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:peer-reviewer .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an academic peer in evaluating a manuscript submitted by an author for publication as a journal article on behalf of the journal editor, or a conference paper on behalf of the conference programme committee, and in deciding whether it is suitable for acceptance, usually subject to revisions suggested by the peer-reviewer."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "peer reviewer"
}
],
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
{
"@id": "http://purl.org/spar/pro/reviewer"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/peer-reviewer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/peer-reviewer> <http://www.w3.org/2000/01/rdf-schema#label> "peer reviewer"@en .
<http://purl.org/spar/pro/peer-reviewer> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an academic peer in evaluating a manuscript submitted by an author for publication as a journal article on behalf of the journal editor, or a conference paper on behalf of the conference programme committee, and in deciding whether it is suitable for acceptance, usually subject to revisions suggested by the peer-reviewer."@en .
<http://purl.org/spar/pro/peer-reviewer> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/peer-reviewer> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:peer-reviewer .\n " .
<http://purl.org/spar/pro/peer-reviewer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/peer-reviewer> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://purl.org/spar/pro/reviewer> .
<http://purl.org/spar/pro/peer-reviewer> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
IRI: http://purl.org/spar/pro/printer
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:printer a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "printer"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:printer .
""" ;
rdfs:comment "The role of an agent involved in printing documents, either a company providing printing services or an individual engaged in the process of printing documents."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/printer">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:label xml:lang="en">printer</rdfs:label>
<rdfs:comment xml:lang="en">The role of an agent involved in printing documents, either a company providing printing services or an individual engaged in the process of printing documents.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:printer .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/printer",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:printer .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an agent involved in printing documents, either a company providing printing services or an individual engaged in the process of printing documents."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "printer"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/printer> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/printer> <http://www.w3.org/2000/01/rdf-schema#label> "printer"@en .
<http://purl.org/spar/pro/printer> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:printer .\n " .
<http://purl.org/spar/pro/printer> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an agent involved in printing documents, either a company providing printing services or an individual engaged in the process of printing documents."@en .
<http://purl.org/spar/pro/printer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/printer> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/printer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:producer a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "producer"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:producer .
""" ;
rdfs:comment "The role of someone who acts as a producer."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/producer">
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">producer</rdfs:label>
<rdfs:comment xml:lang="en">The role of someone who acts as a producer.</rdfs:comment>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:producer .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/producer",
"@type": [
"http://purl.org/spar/pro/PublishingRole",
"http://www.w3.org/2002/07/owl#NamedIndividual"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:producer .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of someone who acts as a producer."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "producer"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/producer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/producer> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:producer .\n " .
<http://purl.org/spar/pro/producer> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/producer> <http://www.w3.org/2000/01/rdf-schema#label> "producer"@en .
<http://purl.org/spar/pro/producer> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of someone who acts as a producer."@en .
<http://purl.org/spar/pro/producer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/producer> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
IRI: http://purl.org/spar/pro/production-editor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:production-editor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "production editor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:production-editor .
""" ;
rdfs:comment "The role of an editor who takes responsibility for the passage of a document through the various stages of the publication workflow from the submitted manuscript to the final publication, including responsibility for scheduling and budget."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/production-editor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:label xml:lang="en">production editor</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role of an editor who takes responsibility for the passage of a document through the various stages of the publication workflow from the submitted manuscript to the final publication, including responsibility for scheduling and budget.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:production-editor .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/production-editor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:production-editor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an editor who takes responsibility for the passage of a document through the various stages of the publication workflow from the submitted manuscript to the final publication, including responsibility for scheduling and budget."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "production editor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/production-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/production-editor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/production-editor> <http://www.w3.org/2000/01/rdf-schema#label> "production editor"@en .
<http://purl.org/spar/pro/production-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/production-editor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:production-editor .\n " .
<http://purl.org/spar/pro/production-editor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/production-editor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an editor who takes responsibility for the passage of a document through the various stages of the publication workflow from the submitted manuscript to the final publication, including responsibility for scheduling and budget."@en .
IRI: http://purl.org/spar/pro/proof-reader
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:proof-reader a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "proof reader"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:proof-reader .
""" ;
rdfs:comment "The role of a person who reads the proofs of documents to detect any errors prior to final publication."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/proof-reader">
<rdfs:comment xml:lang="en">The role of a person who reads the proofs of documents to detect any errors prior to final publication.</rdfs:comment>
<rdfs:label xml:lang="en">proof reader</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:proof-reader .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/proof-reader",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:proof-reader .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of a person who reads the proofs of documents to detect any errors prior to final publication."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "proof reader"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/proof-reader> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of a person who reads the proofs of documents to detect any errors prior to final publication."@en .
<http://purl.org/spar/pro/proof-reader> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/proof-reader> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/proof-reader> <http://www.w3.org/2000/01/rdf-schema#label> "proof reader"@en .
<http://purl.org/spar/pro/proof-reader> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:proof-reader .\n " .
<http://purl.org/spar/pro/proof-reader> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/proof-reader> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
IRI: http://purl.org/spar/pro/publisher
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:publisher a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "publisher"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:publisher .
""" ;
rdfs:comment "The role of a person or an organization that published material, or of a publisher's employee who has responsibility for such publications."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/publisher">
<rdfs:label xml:lang="en">publisher</rdfs:label>
<rdfs:comment xml:lang="en">The role of a person or an organization that published material, or of a publisher's employee who has responsibility for such publications.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:publisher .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/publisher",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:publisher .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of a person or an organization that published material, or of a publisher's employee who has responsibility for such publications."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "publisher"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/publisher> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/publisher> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:publisher .\n " .
<http://purl.org/spar/pro/publisher> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/publisher> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/publisher> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/publisher> <http://www.w3.org/2000/01/rdf-schema#label> "publisher"@en .
<http://purl.org/spar/pro/publisher> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of a person or an organization that published material, or of a publisher's employee who has responsibility for such publications."@en .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:reader a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "reader"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:reader .
""" ;
rdfs:comment "The role of a person who reads publications."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/reader">
<rdfs:label xml:lang="en">reader</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role of a person who reads publications.</rdfs:comment>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:reader .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/reader",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:reader .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of a person who reads publications."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "reader"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/reader> <http://www.w3.org/2000/01/rdf-schema#label> "reader"@en .
<http://purl.org/spar/pro/reader> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of a person who reads publications."@en .
<http://purl.org/spar/pro/reader> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:reader .\n " .
<http://purl.org/spar/pro/reader> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/reader> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/reader> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/reader> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
IRI: http://purl.org/spar/pro/reviewer
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:reviewer a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "reviewer"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:reviewer .
""" ;
rdfs:comment "The role of a person who subjects a publication to a written review and critical analysis of its content, scope and quality."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/reviewer">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:comment xml:lang="en">The role of a person who subjects a publication to a written review and critical analysis of its content, scope and quality.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">reviewer</rdfs:label>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:reviewer .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/reviewer",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:reviewer .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of a person who subjects a publication to a written review and critical analysis of its content, scope and quality."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "reviewer"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/reviewer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/reviewer> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/reviewer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/reviewer> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/reviewer> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of a person who subjects a publication to a written review and critical analysis of its content, scope and quality."@en .
<http://purl.org/spar/pro/reviewer> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:reviewer .\n " .
<http://purl.org/spar/pro/reviewer> <http://www.w3.org/2000/01/rdf-schema#label> "reviewer"@en .
IRI: http://purl.org/spar/pro/senior-editor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:senior-editor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "senior editor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:senior-editor .
""" ;
rdfs:comment "The role of the person who has senior responsibility for the editorial operations and policies for a particular publication, usually acting under the authority of the Editor-in-Chief."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/senior-editor">
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:comment xml:lang="en">The role of the person who has senior responsibility for the editorial operations and policies for a particular publication, usually acting under the authority of the Editor-in-Chief.</rdfs:comment>
<rdfs:label xml:lang="en">senior editor</rdfs:label>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:senior-editor .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/senior-editor",
"@type": [
"http://purl.org/spar/pro/PublishingRole",
"http://www.w3.org/2002/07/owl#NamedIndividual"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:senior-editor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of the person who has senior responsibility for the editorial operations and policies for a particular publication, usually acting under the authority of the Editor-in-Chief."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "senior editor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/senior-editor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:senior-editor .\n " .
<http://purl.org/spar/pro/senior-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/senior-editor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of the person who has senior responsibility for the editorial operations and policies for a particular publication, usually acting under the authority of the Editor-in-Chief."@en .
<http://purl.org/spar/pro/senior-editor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/senior-editor> <http://www.w3.org/2000/01/rdf-schema#label> "senior editor"@en .
<http://purl.org/spar/pro/senior-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/senior-editor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
IRI: http://purl.org/spar/pro/series-editor
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:series-editor a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "series editor"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:series-editor .
""" ;
rdfs:comment "The role of the person who has editorial responsibility for publication series, for example a book series."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/series-editor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<rdfs:label xml:lang="en">series editor</rdfs:label>
<rdfs:comment xml:lang="en">The role of the person who has editorial responsibility for publication series, for example a book series.</rdfs:comment>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:series-editor .
</vann:example>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/series-editor",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:series-editor .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of the person who has editorial responsibility for publication series, for example a book series."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "series editor"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/series-editor> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/series-editor> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:series-editor .\n " .
<http://purl.org/spar/pro/series-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/series-editor> <http://www.w3.org/2000/01/rdf-schema#label> "series editor"@en .
<http://purl.org/spar/pro/series-editor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/series-editor> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
<http://purl.org/spar/pro/series-editor> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of the person who has editorial responsibility for publication series, for example a book series."@en .
IRI: http://purl.org/spar/pro/translator
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
pro:translator a pro:PublishingRole,
owl:NamedIndividual ;
rdfs:label "translator"@en ;
vann:example """
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:translator .
""" ;
rdfs:comment "The role of an agent that translates a document into another language."@en ;
rdfs:isDefinedBy pro: ;
vs:term_status reg:statusStable .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
<rdf:Description rdf:about="http://purl.org/spar/pro/translator">
<rdfs:label xml:lang="en">translator</rdfs:label>
<rdfs:comment xml:lang="en">The role of an agent that translates a document into another language.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://purl.org/spar/pro/PublishingRole"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/spar/pro/"/>
<vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
<vann:example>
:my-person
pro:holdsRoleInTime :my-person-role .
:my-person-role a pro:RoleInTime ;
pro:withRole pro:translator .
</vann:example>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/spar/pro/translator",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"http://purl.org/spar/pro/PublishingRole"
],
"http://purl.org/vocab/vann/example": [
{
"@value": "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:translator .\n "
}
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The role of an agent that translates a document into another language."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://purl.org/spar/pro/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "translator"
}
],
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": [
{
"@id": "http://purl.org/linked-data/registry#statusStable"
}
]
}
]<http://purl.org/spar/pro/translator> <http://www.w3.org/2000/01/rdf-schema#label> "translator"@en .
<http://purl.org/spar/pro/translator> <http://purl.org/vocab/vann/example> "\n :my-person\n pro:holdsRoleInTime :my-person-role .\n\n :my-person-role a pro:RoleInTime ;\n pro:withRole pro:translator .\n " .
<http://purl.org/spar/pro/translator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://purl.org/spar/pro/translator> <http://www.w3.org/2000/01/rdf-schema#comment> "The role of an agent that translates a document into another language."@en .
<http://purl.org/spar/pro/translator> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> <http://purl.org/linked-data/registry#statusStable> .
<http://purl.org/spar/pro/translator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/spar/pro/PublishingRole> .
<http://purl.org/spar/pro/translator> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://purl.org/spar/pro/> .
Jump to:
IRI: http://purl.org/dc/terms/bibliographicCitation
IRI: https://schema.org/codeRepository
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
rdfs:comment a owl:AnnotationProperty .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#comment">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.w3.org/2000/01/rdf-schema#comment",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
}
]<http://www.w3.org/2000/01/rdf-schema#comment> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
IRI: http://purl.org/dc/elements/1.1/contributor
IRI: http://purl.org/dc/terms/created
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
dc:creator a owl:AnnotationProperty .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://purl.org/dc/elements/1.1/creator">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/dc/elements/1.1/creator",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
}
]<http://purl.org/dc/elements/1.1/creator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
dc:date a owl:AnnotationProperty .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://purl.org/dc/elements/1.1/date">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/dc/elements/1.1/date",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
}
]<http://purl.org/dc/elements/1.1/date> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
dc:description a owl:AnnotationProperty .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://purl.org/dc/elements/1.1/description">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/dc/elements/1.1/description",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
}
]<http://purl.org/dc/elements/1.1/description> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
IRI: http://purl.org/ontology/bibo/doi
IRI: http://purl.org/vocab/vann/example
IRI: https://schema.org/image
IRI: https://schema.org/includedInDataCatalog
IRI: http://purl.org/dc/terms/issued
IRI: https://schema.org/keywords
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
rdfs:label a owl:AnnotationProperty .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.w3.org/2000/01/rdf-schema#label",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
}
]<http://www.w3.org/2000/01/rdf-schema#label> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
IRI: http://purl.org/dc/terms/license
IRI: http://xmlns.com/foaf/0.1/logo
IRI: http://purl.org/dc/terms/modified
IRI: http://www.w3.org/2004/02/skos/core#note
IRI: http://purl.org/vocab/vann/preferredNamespacePrefix
IRI: http://purl.org/vocab/vann/preferredNamespaceUri
IRI: http://purl.org/dc/terms/publisher
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
dc:rights a owl:AnnotationProperty .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://purl.org/dc/elements/1.1/rights">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/dc/elements/1.1/rights",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
}
]<http://purl.org/dc/elements/1.1/rights> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
rdfs:seeAlso a owl:AnnotationProperty .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
}
]<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
IRI: http://purl.org/dc/terms/source
IRI: http://purl.org/ontology/bibo/status
IRI: http://www.w3.org/2003/06/sw-vocab-status/ns#term_status
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
dc:title a owl:AnnotationProperty .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://purl.org/dc/elements/1.1/title">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
}
]<http://purl.org/dc/elements/1.1/title> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
owl:versionInfo a owl:AnnotationProperty .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://www.w3.org/2002/07/owl#versionInfo">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://www.w3.org/2002/07/owl#versionInfo",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
}
]<http://www.w3.org/2002/07/owl#versionInfo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .