@base . @prefix rdf: . @prefix owl: . @prefix adms: . @prefix dcterms: <../dc/terms/> . @prefix xsd: . @prefix vann: <../vocab/vann/> . @prefix foaf: . @prefix void: . @prefix rdfs: . @prefix voidext: <#> . @prefix sd: . @prefix mex-perf: . @prefix prov: . mex-perf:ClassificationMeasure a owl:Class ; rdfs:subClassOf mex-perf:PerformanceMeasure . mex-perf:PerformanceMeasure a owl:Class ; rdfs:subClassOf prov:Entity . dcterms:ProvenanceStatement a rdfs:Class ; rdfs:isDefinedBy dcterms:ProvenanceStatement ; rdfs:label "Provenance Statement" . a foaf:Person ; foaf:homepage ; foaf:mbox ; foaf:name "Tarcisio Mendes de Farias" . <> dcterms:created "2019-01-30"^^xsd:date ; dcterms:creator ; dcterms:description "The Extension of the Vocabulary of Interlinked Datasets (VoID) RDF Schema that includes the concept of virtual links. This extension enhances interoperability among heterogeneous and distributed RDF data sets by bridging them through explicitly defined virtual links." ; dcterms:isVersionOf ; dcterms:license ; dcterms:modified "2019-06-30"^^xsd:date ; dcterms:publisher ; dcterms:title "Extended Vocabulary of Interlinked Datasets (VoIDext)" ; dcterms:type <../adms/assettype/Ontology> ; vann:preferredNamespacePrefix "voidext" ; vann:preferredNamespaceUri "http://purl.org/query/voidext#" ; a owl:Ontology ; foaf:homepage <> . voidext:ComplexLinkSet voidext:queryLinkset """prefix void: prefix voidext: prefix dcterms: SELECT distinct ?links ?source_dataset1_name ?target_dataset2_name ?predicate ?intersection_type ?subj_type ?obj_type ?source_endpoint ?target_endpoint ?resourceMapping { #values(?dataset1){ (bioquery:EBI_ORDO) } #values(?dataset2){ (bioquery:DRUGBANK) } ?links a voidext:ComplexLinkSet. ?links voidext:intersectAt ?set2; voidext:intersectionType/rdfs:label ?intersection_type. ?set2 voidext:isSubsetOf ?target_db. ?target_db dcterms:title ?target_dataset2_name; void:sparqlEndpoint ?target_endpoint. ?set2 void:linkPredicate ?predicate2 . ?links voidext:intersectAt ?set1. ?set1 void:linkPredicate ?predicate . ?set1 voidext:isSubsetOf ?source_db . ?source_db dcterms:title ?source_dataset1_name; void:sparqlEndpoint ?source_endpoint. optional{ ?set1 voidext:linkPredicateDomain ?subj_type} optional{ ?set1 voidext:linkPredicateRange ?obj_type.} optional{ ?links voidext:recommendedMapping ?set1. ?set1 voidext:resourceMapping ?resourceMapping} filter(?source_db != ?target_db) } order by ?links"""^^rdfs:Literal ; voidext:querySharedInstanceSet """prefix void: prefix voidext: prefix dcterms: SELECT distinct ?links ?source_dataset1_name ?target_dataset2_name ?sharedType ?resourceMapping ?source_endpoint ?target_endpoint{ #values(?source_db){ (bioquery:EBI) } #values(?target_db){ (bioquery:UNIPROT) } ?links a voidext:ComplexLinkSet. ?links voidext:intersectAt ?set1; voidext:intersectAt ?set2. ?set1 voidext:isSubsetOf ?target_db. ?target_db dcterms:title ?target_dataset2_name; void:sparqlEndpoint ?target_endpoint. ?set2 voidext:sharedInstanceType ?sharedType . ?set2 voidext:isSubsetOf ?source_db . ?source_db dcterms:title ?source_dataset1_name; void:sparqlEndpoint ?source_endpoint. optional{ ?links voidext:recommendedMapping ?set2. ?set2 voidext:resourceMapping ?resourceMapping} filter(?target_db != ?source_db) } order by ?links"""^^rdfs:Literal ; a rdfs:Class, owl:Class ; rdfs:comment "It is a complex virtual link set. A complex link set is composed of exactly two link sets xor two shared instance sets where xor is the exclusive or. For example, two link sets that intersects at some graph node (e.g. the object nodes of link predicates)."@en ; rdfs:label "Complex link set"@en ; rdfs:subClassOf voidext:VirtualLinkSet ; owl:disjointWith void:Dataset ; owl:equivalentClass [ a owl:Class ; owl:intersectionOf ([ a owl:Class ; owl:unionOf ([ a owl:Restriction ; owl:onClass voidext:SharedInstanceSet ; owl:onProperty voidext:intersectAt ; owl:qualifiedCardinality "2"^^xsd:nonNegativeInteger ] [ a owl:Restriction ; owl:onClass void:Linkset ; owl:onProperty voidext:intersectAt ; owl:qualifiedCardinality "2"^^xsd:nonNegativeInteger ] ) ] [ a owl:Class ; owl:complementOf voidext:SimpleLinkSet ] ) ] . voidext:LINK_SHAREDINSTANCE_SET a owl:Class ; owl:unionOf (void:Linkset voidext:SharedInstanceSet ) . voidext:LinkSetIntersection a rdfs:Class, owl:Class ; rdfs:comment "The possible intersection types between the RDF graph nodes in different void:Dataset(s) (i.e. either the subject or the object node of a link predicate). The instances of this class are exclusively voidext:OBJECT_OBJECT, voidext:OBJECT_SUBJECT, and voidext:SUBJECT_SUBJECT."@en ; rdfs:label "Linkset intersection"@en . voidext:MODIFIED_TARGET_1 dcterms:creator ; dcterms:description "The void:target property domain was modified in voidext schema to be the union of the classes: void:Linkset, and voidext:SharedInstanceSet instead of only the void:Linkset class from the original VoID vocabulary." ; dcterms:issued "2019-06-30"^^xsd:date ; a dcterms:ProvenanceStatement ; rdfs:label "modified void:target domain" . voidext:OBJECT_OBJECT a voidext:LinkSetIntersection ; rdfs:comment "The intersection between two void:Dataset(s) (i.e. knowledge graphs) occurs at the object node in both datasets."@en ; rdfs:label "Object-object intersection"@en . voidext:SUBJECT_OBJECT a voidext:LinkSetIntersection ; rdfs:comment "The intersection between two void:Dataset(s) (i.e. knowledge graphs) occurs at the object node of one data set (graph) and the subject node of another data set (graph)."@en ; rdfs:label "Subject-object intersection"@en . voidext:SUBJECT_SUBJECT a voidext:LinkSetIntersection ; rdfs:comment "The intersection between two void:Dataset(s) (i.e. knowledge graphs) occurs at the subject node in both datasets."@en ; rdfs:label "Subject-subject intersection"@en . voidext:SharedInstanceSet a rdfs:Class, owl:Class ; rdfs:comment "A shared instance set between exactly two datasets. For example, two datasets that contain the same OWL/RDFS class instances."@en ; rdfs:label "Shared instance set"@en ; rdfs:subClassOf void:Dataset . voidext:SimpleLinkSet voidext:queryLinkset """prefix void: prefix voidext: prefix dcterms: SELECT distinct ?links ?source ?predicate_from_endpoint ?subj_from ?subj_type ?predicate ?obj_type ?obj_from ?resourceMapping { ###if we want to specify the target datasets that contain one of the resources ###related with a virtual link. #values(?dataset_link_subj){ (bioquery:OMA) } #values(?dataset_link_obj){ (bioquery:UNIPROT) } ?links a void:Linkset. { ?links void:subjectsTarget ?dataset_link_subj . ?links void:objectsTarget ?dataset_link_obj. } UNION { ?links void:target ?dataset_link_subj. ?links void:target ?dataset_link_obj .} ?links void:linkPredicate ?predicate; voidext:isSubsetOf ?source_db. ?dataset_link_subj void:sparqlEndpoint ?subj_from. ?dataset_link_obj void:sparqlEndpoint ?obj_from. ?source_db dcterms:title ?source; void:sparqlEndpoint ?predicate_from_endpoint. optional {?links voidext:linkPredicateRange ?obj_type}. optional {?links voidext:linkPredicateDomain ?subj_type. } optional{ ?links voidext:resourceMapping ?resourceMapping} filter not exists { ?complexLink voidext:intersectAt ?links.} filter ( ?dataset_link_subj != ?dataset_link_obj ) } order by ?links"""^^rdfs:Literal ; voidext:querySharedInstanceSet """prefix void: prefix voidext: prefix dcterms: SELECT distinct ?links ?dataset1_name ?dataset2_name ?sharedType ?dataset1_endpoint ?dataset2_endpoint { #values(?dataset1){ (bioquery:BGEE) } #values(?dataset2){ (bioquery:OMA) } ?links a voidext:SharedInstanceSet. ?links void:target ?dataset1. ?links void:target ?dataset2. ?links voidext:sharedInstanceType ?sharedType. ?dataset1 dcterms:title ?dataset1_name; void:sparqlEndpoint ?dataset1_endpoint. ?dataset2 dcterms:title ?dataset2_name; void:sparqlEndpoint ?dataset2_endpoint. filter not exists { ?complexLink voidext:intersectAt ?links .} filter(?dataset1 != ?dataset2) } order by ?links"""^^rdfs:Literal ; a rdfs:Class, owl:Class ; rdfs:comment "A simple link set must be a linkset that does not target another linkset (i.e. it has exactly one link predicate) or a set with exactly the same shared instances of the same type (i.e. class) in both datasets. The instances of this class must be also instances of either void:Linkset or voidext:SharedInstanceSet."@en ; rdfs:label "Simple link set"@en ; rdfs:subClassOf voidext:VirtualLinkSet ; owl:equivalentClass [ a owl:Class ; owl:unionOf ([ a owl:Class ; owl:intersectionOf (voidext:SharedInstanceSet [ a owl:Class ; owl:complementOf [ a owl:Restriction ; owl:onClass void:Dataset ; owl:onProperty voidext:isSubsetOf ; owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ] ] ) ] [ a owl:Class ; owl:intersectionOf (void:Linkset [ a owl:Class ; owl:complementOf [ a owl:Restriction ; owl:onProperty void:target ; owl:someValuesFrom void:Linkset ] ] ) ] ) ] . voidext:VirtualLinkSet a rdfs:Class, owl:Class ; rdfs:comment "A set of virtual links between two datasets. A virtual link is a connection between resources such as literals and instances with some commonality. Each of these resources is from a different RDF dataset. A resource mapping can be also considered when defining common resources between datasets. For example, the datasets uses different prefix namespaces for similar instances in a given domain scope. A virtual link can be interpreted as an intersection data point between two datasets. In addition, a virtual link is not concretely stored. The link may be physically established during a federated query execution, for example. This class must only have instances of its subclasses. It is recommendable to comment (rdfs:comment) the scope of the virtual link set."@en ; rdfs:label "Virtual link set"@en . voidext:hasPerformanceMeasure a rdf:Property, owl:ObjectProperty ; rdfs:comment "This property assings the performance of the virtual link set, for example, in terms of recall and precision. The values to be assigned (property range) are represented with the ontology MEX Performance Ontology."@en ; rdfs:domain voidext:VirtualLinkSet ; rdfs:label "has performance measure"@en ; rdfs:range mex-perf:PerformanceMeasure . voidext:intersectAt a rdf:Property, owl:ObjectProperty ; rdfs:comment "This property is used to assign exactly either two shared instance sets (voidext:SharedInstanceSet) or two link sets (void:Linkset) to compose a complex link set (voidext:ComplexLinkSet). For each void:Linkset, either the subject or the object node of its link predicate intersects an RDF node of the link predicate from the other link set. In other words, the subject xor the object of a link predicate matches the subject xor the object of the other link predicate, where xor is the exclusive or. These link predicates must be from different datasets."@en ; rdfs:domain voidext:ComplexLinkSet ; rdfs:label "intersects at"@en ; rdfs:range voidext:LINK_SHAREDINSTANCE_SET . voidext:intersectionType a rdf:Property, owl:ObjectProperty ; rdfs:comment "This property assigns the intersection type of two RDF triples in different datasets (void:Dataset). In other words, if the intersection occurs at the subject xor the object node of a link predicate."@en ; rdfs:domain voidext:ComplexLinkSet ; rdfs:label "intersection type"@en ; rdfs:range voidext:LinkSetIntersection . voidext:isSubsetOf a rdf:Property, owl:ObjectProperty ; rdfs:domain void:Dataset ; rdfs:label "is subset of" ; rdfs:range void:Dataset ; owl:inverseOf void:subset . voidext:linkPredicateDomain a rdf:Property ; rdfs:comment "The link predicate's subject type (i.e. class), if any. Moreover, in the case of a void:Linkset that is classified as a simple link set (voidext:SimpleLinkSet), if the two datasets are linked through the link predicate's subject then the link predicate domain must be specified. Indeed, this subject matches a second resource in an external dataset. Therefore, the type of this second resource is asserted as the link predicate domain."@en ; rdfs:domain void:Linkset ; rdfs:label "link predicate domain"@en ; rdfs:range rdfs:Class . voidext:linkPredicateRange a rdf:Property ; rdfs:comment "The link predicate's object type (i.e. class), if any. Moreover, in the case of a void:Linkset that is not classified as a simple link set, if the two datasets are linked through the link predicate's object then the link predicate range must be specified. Indeed, this object matches a second resource in an external dataset. Therefore, the type of this second resource is asserted as the link predicate range."@en ; rdfs:domain void:Linkset ; rdfs:label "link predicate range"@en ; rdfs:range rdfs:Class . voidext:queryLinkset a rdf:Property, owl:AnnotationProperty ; rdfs:comment "This property must only assign one standard SPARQL query per category (i.e. subclass) of VirtualLinkSet to retrieve the formal definition of linkset (i.e. query projection) as presented in the voidext specification."@en ; rdfs:label "query for linkset"@en ; rdfs:range rdfs:Literal . voidext:querySharedInstanceSet a rdf:Property, owl:AnnotationProperty ; rdfs:comment "This property must only assign one standard SPARQL query per category (i.e. subclass) of VirtualLinkSet to retrieve the formal definition of shared instance set (i.e. query projection) as presented in the voidext specification."@en ; rdfs:label "query for shared instance set"@en ; rdfs:range rdfs:Literal . voidext:recommendedMapping a rdf:Property, owl:FunctionalProperty, owl:ObjectProperty ; rdfs:comment "If more than one mapping is defined in the different void:Linkset(s) that are part of a voidext:ComplexLinkSet, one of the resource mappings may be recommended by asserting this property. The recommended mapping is the one stated to the void:Linkset assigned as the value of this property. If no mapping is explicitly recommended, solely one of them must arbitrarily be applied to establish a virtual link. At most one mapping function can be defined either per linkset or per shared instance set."@en ; rdfs:domain voidext:ComplexLinkSet ; rdfs:label "recommended mapping from"@en ; rdfs:range voidext:LINK_SHAREDINSTANCE_SET . voidext:resourceMapping dcterms:description """Example of a value assigned with this property is the following \"?objectsTarget a . BIND(IF(contains(?objectsTarget, \"Example:\" ), IRI(concat(\"http://example.org/uniprot:\",strafter(?objectsTarget,\"Example:\"))), ?objectsTargetConverted) as ?converted_object) FILTER(BOUND(?obj_converted))\". This will convert strings that contains \"Example:\" into IRIs defined in http://example.org/ namespace.""" ; a rdf:Property, owl:DatatypeProperty, owl:FunctionalProperty ; rdfs:comment """The preprocessing of a resource (i.e. IRI or literal) in a source void:Dataset in order to match another resource in the target void:Dataset. A resource is either the subject or the object of an RDF triple. The resource preprocessing (i.e. the resource mapping) must be defined with the SPARQL language by mainly using SPARQL built-ins for assignments (e.g. BIND), and expression and testing values (e.g. IF and FILTER). BIND is used to assign the output of a function.""" ; rdfs:domain voidext:LINK_SHAREDINSTANCE_SET ; rdfs:label "resource mapped with"@en ; rdfs:range rdfs:Literal . voidext:sharedInstanceType a rdf:Property ; rdfs:comment "This property assings the type (i.e. class) of the shared instances from a given void:Dataset. Shared instances implies equivalent or similar instance IRIs that belong to different datasets."@en ; rdfs:domain voidext:SharedInstanceSet ; rdfs:label "shared instance type"@en ; rdfs:range rdfs:Class . voidext:supportFederatedQuery a rdf:Property, owl:DatatypeProperty ; rdfs:comment "This property should be used to explicitly assert that a void:Dataset supports SPARQL 1.1. federated queries to be able to access the dataset with the SERVICE keyword and perform federated join queries."@en ; rdfs:domain void:Dataset ; rdfs:label "supports SPARQL 1.1 federated query"@en ; rdfs:range xsd:boolean . void:Dataset dcterms:creator , , , ; a rdfs:Class, owl:Class ; rdfs:comment "A set of RDF triples that are published, maintained or aggregated by a single provider." ; rdfs:isDefinedBy ; rdfs:label "dataset" . void:DatasetDescription dcterms:creator , , , ; a rdfs:Class, owl:Class ; rdfs:comment "A web resource whose foaf:primaryTopic or foaf:topics include void:Datasets." ; rdfs:isDefinedBy ; rdfs:label "dataset description" ; rdfs:subClassOf foaf:Document . void:Linkset dcterms:created "2010-01-26"^^xsd:date ; dcterms:creator , , , ; a rdfs:Class, owl:Class ; rdfs:comment "A collection of RDF links between two void:Datasets." ; rdfs:label "linkset" ; rdfs:subClassOf void:Dataset . void:TechnicalFeature dcterms:creator , , , ; a rdfs:Class, owl:Class ; rdfs:comment "A technical feature of a void:Dataset, such as a supported RDF serialization format." ; rdfs:isDefinedBy ; rdfs:label "technical feature" . void:class dcterms:creator , , , ; a rdf:Property, owl:FunctionalProperty ; rdfs:comment "The rdfs:Class that is the rdf:type of all entities in a class-based partition." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "class" ; rdfs:range rdfs:Class . void:classPartition dcterms:creator , , , ; a rdf:Property ; rdfs:comment "A subset of a void:Dataset that contains only the entities of a certain rdfs:Class." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "class partition" ; rdfs:range void:Dataset ; rdfs:subPropertyOf void:subset . void:classes dcterms:creator , , , ; a rdf:Property, owl:DatatypeProperty ; rdfs:comment "The total number of distinct classes in a void:Dataset. In other words, the number of distinct resources occuring as objects of rdf:type triples in the dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "classes" ; rdfs:range xsd:integer . void:dataDump dcterms:creator , , , ; a rdf:Property ; rdfs:comment "An RDF dump, partial or complete, of a void:Dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "Data Dump" ; rdfs:range rdfs:Resource . void:distinctObjects dcterms:creator , , , ; a rdf:Property, owl:DatatypeProperty ; rdfs:comment "The total number of distinct objects in a void:Dataset. In other words, the number of distinct resources that occur in the object position of triples in the dataset. Literals are included in this count." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "distinct objects" ; rdfs:range xsd:integer . void:distinctSubjects dcterms:creator , , , ; a rdf:Property, owl:DatatypeProperty ; rdfs:comment "The total number of distinct subjects in a void:Dataset. In other words, the number of distinct resources that occur in the subject position of triples in the dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "distinct subjects" ; rdfs:range xsd:integer . void:documents dcterms:creator , , , ; a rdf:Property, owl:DatatypeProperty ; rdfs:comment "The total number of documents, for datasets that are published as a set of individual documents, such as RDF/XML documents or RDFa-annotated web pages. Non-RDF documents, such as web pages in HTML or images, are usually not included in this count. This property is intended for datasets where the total number of triples or entities is hard to determine. void:triples or void:entities should be preferred where practical." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "number of documents" ; rdfs:range xsd:integer . void:entities dcterms:creator , , , ; a rdf:Property, owl:DatatypeProperty ; rdfs:comment "The total number of entities that are described in a void:Dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "number of entities" ; rdfs:range xsd:integer . void:exampleResource dcterms:creator , , , ; a rdf:Property ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "example resource of dataset" ; rdfs:range rdfs:Resource . void:feature dcterms:creator , , , ; a rdf:Property ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "feature" ; rdfs:range void:TechnicalFeature . void:inDataset dcterms:creator , , , ; a rdf:Property ; rdfs:comment "Points to the void:Dataset that a document is a part of." ; rdfs:domain foaf:Document ; rdfs:isDefinedBy ; rdfs:label "in dataset" ; rdfs:range void:Dataset . void:linkPredicate dcterms:creator , , , ; a rdf:Property ; rdfs:comment "It specifies the RDF predicate in a given dataset that relates to another dataset. In other words, the link predicate is the RDF property in the predicate position of an RDF triple that links two datasets." ; rdfs:domain void:Linkset ; rdfs:isDefinedBy ; rdfs:label "a link predicate" ; rdfs:range rdf:Property . void:objectsTarget dcterms:created "2010-01-26"^^xsd:date ; dcterms:creator , , , ; a rdf:Property, owl:FunctionalProperty ; rdfs:comment "The dataset describing the objects of the triples contained in the Linkset." ; rdfs:domain void:Linkset ; rdfs:label "Objects Target" ; rdfs:range void:Dataset ; rdfs:subPropertyOf void:target . void:openSearchDescription dcterms:creator , , , ; a rdf:Property ; rdfs:comment "An OpenSearch description document for a free-text search service over a void:Dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "open search description" ; rdfs:range foaf:Document . void:properties dcterms:creator , , , ; a rdf:Property, owl:DatatypeProperty ; rdfs:comment "The total number of distinct properties in a void:Dataset. In other words, the number of distinct resources that occur in the predicate position of triples in the dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "number of properties" ; rdfs:range xsd:integer . void:property dcterms:creator , , , ; a rdf:Property, owl:FunctionalProperty ; rdfs:comment "The rdf:Property that is the predicate of all triples in a property-based partition." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "property" ; rdfs:range rdf:Property . void:propertyPartition dcterms:creator , , , ; a rdf:Property ; rdfs:comment "A subset of a void:Dataset that contains only the triples of a certain rdf:Property." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "property partition" ; rdfs:range void:Dataset ; rdfs:subPropertyOf void:subset . void:rootResource dcterms:creator , , , ; a rdf:Property ; rdfs:comment "A top concept or entry point for a void:Dataset that is structured in a tree-like fashion. All resources in a dataset can be reached by following links from its root resources in a small number of steps." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "root resource" . void:sparqlEndpoint dcterms:creator , , , ; a rdf:Property ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "has a SPARQL endpoint at" . void:subjectsTarget dcterms:created "2010-01-26"^^xsd:date ; dcterms:creator , , , ; a rdf:Property, owl:FunctionalProperty ; rdfs:comment "The dataset describing the subjects of triples contained in the Linkset." ; rdfs:domain void:Linkset ; rdfs:label "Subjects Target" ; rdfs:range void:Dataset ; rdfs:subPropertyOf void:target . void:subset dcterms:creator , , , ; a rdf:Property ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "has subset" ; rdfs:range void:Dataset . void:target dcterms:contributor ; dcterms:created "2010-01-26"^^xsd:date ; dcterms:creator , , , ; dcterms:modified "2019-06-30"^^xsd:date ; dcterms:provenance voidext:MODIFIED_TARGET_1 ; a rdf:Property ; rdfs:comment "One of the two datasets linked by the Linkset or the Shared instance set." ; rdfs:domain voidext:LINK_SHAREDINSTANCE_SET ; rdfs:label "Target" ; rdfs:range void:Dataset . void:triples dcterms:creator , , , ; a rdf:Property, owl:DatatypeProperty ; rdfs:comment "The total number of triples contained in a void:Dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "number of triples" ; rdfs:range xsd:integer . void:uriLookupEndpoint dcterms:creator , , , ; a rdf:Property ; rdfs:comment "Defines a simple URI look-up protocol for accessing a dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "has an URI look-up endpoint at" . void:uriRegexPattern dcterms:creator , , , ; a rdf:Property ; rdfs:comment "Defines a regular expression pattern matching URIs in the dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "has URI regular expression pattern" . void:uriSpace dcterms:creator , , , ; a rdf:Property, owl:DatatypeProperty ; rdfs:comment "A URI that is a common string prefix of all the entity URIs in a void:Dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "URI space" ; rdfs:range rdfs:Literal . void:vocabulary dcterms:creator , , , ; a rdf:Property ; rdfs:comment "A vocabulary that is used in the dataset." ; rdfs:domain void:Dataset ; rdfs:isDefinedBy ; rdfs:label "vocabulary" . a dcterms:Agent ; foaf:homepage ; foaf:member ; foaf:name "Department of Zoology, University of Oxford" . a dcterms:Agent ; foaf:homepage ; foaf:member ; foaf:name "Digital Enterprise Research Institute, NUI Galway" . a dcterms:Agent ; foaf:homepage ; foaf:member ; foaf:name "LiDRC" . a foaf:Person ; foaf:homepage ; foaf:mbox ; foaf:name "Michael Hausenblas" . a dcterms:Agent ; foaf:homepage ; foaf:member ; foaf:name "Talis" . a foaf:Person ; foaf:homepage ; foaf:mbox ; foaf:name "Richard Cyganiak" . a foaf:Person ; foaf:homepage ; foaf:mbox ; foaf:name "Jun Zhao" . a foaf:Person ; foaf:homepage ; foaf:mbox ; foaf:name "Keith Alexander" . prov:Entity a owl:Class . sd:Dataset rdfs:subClassOf void:Dataset . sd:Graph rdfs:subClassOf void:Dataset . a dcterms:Agent ; foaf:homepage ; foaf:member ; foaf:name "SIB Swiss Institute of Bioinformatics" .