Key-Entity Pair
Class
http://www.w3.org/ns/prov#KeyEntityPair
Class Hierarchy
- Key-Entity Pair
Definition
A key-entity pair. Part of a prov:Dictionary through prov:hadDictionaryMember. The key is any RDF Literal, the value is a prov:Entity.
Properties
Category
collections
Component
collections
Relationships
Asserted object-property edges to other entities. Logical class axioms such as
owl:disjointWith are shown separately below.
constraints
dictionary-constraints
Property Structure
1 · Object and Data Properties
rdfs:domain on this class or ancestor
| Property | Range | Description |
|---|---|---|
| pairEntity | Entity | |
| pairKey | Literal |
2 · Referenced By
rdfs:range on this class or ancestor
| From | Property | Description |
|---|---|---|
| Dictionary | hadDictionaryMember | |
| Insertion | insertedKeyEntityPair |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
prov:KeyEntityPair a owl:Class ;
rdfs:label "Key-Entity Pair" ;
rdfs:isDefinedBy prov: ;
rdfs:subClassOf [ a owl:Restriction ;
owl:cardinality "1"^^xsd:int ;
owl:onProperty prov:pairKey ],
[ a owl:Restriction ;
owl:cardinality "1"^^xsd:int ;
owl:onProperty prov:pairEntity ] ;
prov:category "collections" ;
prov:component "collections" ;
prov:constraints "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
prov:definition "A key-entity pair. Part of a prov:Dictionary through prov:hadDictionaryMember. The key is any RDF Literal, the value is a prov:Entity." ;
prov:dm "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership"^^xsd:anyURI ;
prov:n "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership"^^xsd:anyURI .