https://ontology.solveit-df.org/solveit/core/hasReference
Links a Technique, Weakness or Mitigation to a Citation. This was a datatype property carrying the citation identifier as a string; citations became resources in their own right so that the plain text and BibTeX forms have somewhere to live.
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| Blank node (see implementation) | solveit-core:hasReference | solveit-core:Citation |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix solveit-core: <https://ontology.solveit-df.org/solveit/core/> .
solveit-core:hasReference a owl:ObjectProperty ;
rdfs:label "has reference"@en ;
rdfs:comment "Links a Technique, Weakness or Mitigation to a Citation. This was a datatype property carrying the citation identifier as a string; citations became resources in their own right so that the plain text and BibTeX forms have somewhere to live."@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( solveit-core:Technique solveit-core:Weakness solveit-core:Mitigation ) ] ;
rdfs:range solveit-core:Citation .