dcat:byteSize leaf node


URI

http://www.w3.org/ns/dcat#byteSize

Label

Distribution - byte size

Description

This property contains the size of a Distribution in bytes.

Usage

DOMAINPROPERTYRANGE
dcat:Distribution dcat:byteSize xsd:decimal

Implementation

@prefix dcat: <http://www.w3.org/ns/dcat#> .
@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#> .

dcat:byteSize a owl:DatatypeProperty ;
    rdfs:label "Distribution - byte size"@en ;
    dcterms:identifier "dcat:byteSize" ;
    vann:usageNote "Optional property. This property contains the size of a Distribution in bytes."@en ;
    rdfs:comment "This property contains the size of a Distribution in bytes."@en ;
    rdfs:domain dcat:Distribution ;
    rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/#Property:distribution_size> ;
    rdfs:range xsd:decimal .