klms:numDistinctWords leaf node


URI

http://stelar-project.eu/klms#numDistinctWords

Label

Text - Number of distinct words

Description

The number of distinct words in a textual dataset.

Usage

DOMAINPROPERTYRANGE
klms:Text klms:numDistinctWords xsd:int

Implementation

@prefix : <http://stelar-project.eu/klms#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:numDistinctWords a owl:DatatypeProperty ;
    rdfs:label "Text - Number of distinct words"@en ;
    dcterms:identifier "klms:numDistinctWords" ;
    vann:usageNote "Optional property. This property describes the number of distinct words in a textual dataset."@en ;
    rdfs:comment "The number of distinct words in a textual dataset."@en ;
    rdfs:domain :Text ;
    rdfs:range xsd:int .