http://purl.org/dc/elements/1.1/identifier
A variable or cohort identifier
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) | Identifier | string |
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix icare: <https://w3id.org/icare4cvd/> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
dc:identifier a owl:DatatypeProperty ;
rdfs:label "Identifier"@en ;
rdfs:comment "A variable or cohort identifier"@en ;
rdfs:domain [ owl:unionOf ( icare:Variable icare:Cohort ) ] ;
rdfs:range xsd:string .