schema:description leaf node


URI

http://schema.org/description

Label

hasDescription

Description

This property is used to denote a short textual description of: (i) the output of the Thematic Network; (ii) the Thematic Netework (i.e. what the Thematic Network is about); (iii) the Domain of the Thematic Network; and (iv) the topic of the output of a Thematic Network; (v) the creator of the output of a Thematic Network; and (vi) the type of the end user that could potentially use the output of a Thematic Network.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) schema:description xsd:string

Implementation

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

schema:description a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "hasDescription"@en ;
    rdfs:comment "This property is used to denote a short textual description of: (i) the output of the Thematic Network; (ii) the Thematic Netework (i.e. what the Thematic Network is about); (iii) the Domain of the Thematic Network; and (iv) the topic of the output of a Thematic Network; (v) the creator of the output of a Thematic Network; and (vi) the type of the end user that could potentially use the output of a Thematic Network."@en ;
    rdfs:range xsd:string .