gold:hasLexicalItem leaf node


URI

http://purl.org/linguistics/gold/hasLexicalItem

Label

hasLexicalItem

Description

The relation between a Lexicon and its contents, instances of LexicalItem. NOTE: this could probably be replaced by the memberOf relation from set theory.

Usage

DOMAINPROPERTYRANGE
gold:Lexicon gold:hasLexicalItem gold:LexicalItem

Implementation

@prefix gold: <http://purl.org/linguistics/gold/> .
@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#> .

gold:hasLexicalItem a owl:ObjectProperty ;
    rdfs:label "hasLexicalItem"@eng ;
    rdfs:comment "The relation between a Lexicon and its contents, instances of LexicalItem. NOTE: this could probably be replaced by the memberOf relation from set theory."@eng ;
    rdfs:domain gold:Lexicon ;
    rdfs:isDefinedBy "http://purl.org/linguistics/gold"^^xsd:anyURI ;
    rdfs:range gold:LexicalItem ;
    rdfs:subPropertyOf gold:dataStructureRelation .