Contact email leaf node


URI

https://w3id.org/icare4cvd/email

Label

Contact email

Description

Email of the contact for this cohort

Usage

DOMAINPROPERTYRANGE
Cohort Contact email string

Implementation

@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix icare: <https://w3id.org/icare4cvd/> .
@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#> .

icare:email a owl:DatatypeProperty ;
    rdfs:label "Contact email"@en ;
    rdfs:comment "Email of the contact for this cohort"@en ;
    rdfs:domain icare:Cohort ;
    rdfs:isDefinedBy icare: ;
    rdfs:range xsd:string ;
    owl:sameAs dcat:contactPoint .