sdo:duration leaf node


URI

https://schema.org/duration

Label

has duration

Description

The duration of the item (program, video, audio recording, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).

Usage

DOMAINPROPERTYRANGE
sdo:Thing sdo:duration xsd:string

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sdo: <https://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

sdo:duration a rdf:Property ;
    rdfs:label "has duration"@en,
        "heeft tijdslengte"@nl ;
    rdfs:comment "The duration of the item (program, video, audio recording, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)."@en,
        "De tijdsduur van het archief item (programma, video, audio-opname, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)."@nl ;
    rdfs:domain sdo:Thing ;
    rdfs:range xsd:string .