prism:wordCount leaf node


URI

http://prismstandard.org/namespaces/basic/2.0/wordCount

Label

has word count

Description

The count of the number of words in a textual resource.

Inherits from

Usage

DOMAINPROPERTYRANGE
frbr:Endeavour prism:wordCount xsd:positiveInteger

Implementation

@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prism: <http://prismstandard.org/namespaces/basic/2.0/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

prism:wordCount a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "has word count"@en ;
    rdfs:comment "The count of the number of words in a textual resource."@en ;
    rdfs:domain frbr:Endeavour ;
    rdfs:range xsd:positiveInteger ;
    rdfs:subPropertyOf owl:topDataProperty .