schema1:genre leaf node


URI

http://schema.org/genre

Label

genre

Description

Genre of the creative work, broadcast channel or group.

Usage

DOMAINPROPERTYRANGE
schema1:CreativeWork schema1:genre xsd:string , sh:IRI , rdf:langString

Implementation

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

schema1:genre a rdf:Property ;
    rdfs:label "genre" ;
    schema1:domainIncludes schema1:CreativeWork ;
    schema1:rangeIncludes rdf:langString,
        xsd:string,
        sh:IRI ;
    rdfs:comment "Genre of the creative work, broadcast channel or group." .