ns1:isCorresponding leaf node


URI

http://scigraph.springernature.com/ontologies/core/isCorresponding

Label

Property: is corresponding

Description

The :isCorresponding property marks whether a :Contribution is by a corresponding author.

Usage

DOMAINPROPERTYRANGE
ns1:Contribution ns1:isCorresponding xsd:boolean

Implementation

@prefix ns1: <http://scigraph.springernature.com/ontologies/core/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ns1:isCorresponding a owl:DatatypeProperty ;
    rdfs:label "Property: is corresponding"@en ;
    rdfs:comment "The :isCorresponding property marks whether a :Contribution is by a corresponding author."@en ;
    rdfs:domain ns1:Contribution ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range xsd:boolean .