http://scigraph.springernature.com/ontologies/core/description
The :description property specifies a description for a Scigraph entity as a language string.
DOMAIN | PROPERTY | RANGE |
---|---|---|
ns1:Thing | ns1:description | rdf:langString |
@prefix ns1: <http://scigraph.springernature.com/ontologies/core/> .
@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#> .
ns1:description a owl:DatatypeProperty ;
rdfs:label "Property: description"@en ;
rdfs:comment "The :description property specifies a description for a Scigraph entity as a language string."@en ;
rdfs:domain ns1:Thing ;
rdfs:isDefinedBy ns1: ;
rdfs:range rdf:langString .