sdo:alternativeHeadline leaf node


URI

https://schema.org/alternativeHeadline

Label

has sub title

Description

A secondary title of the CreativeWork.

Usage

DOMAINPROPERTYRANGE
sdo:CreativeWork sdo:alternativeHeadline 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:alternativeHeadline a rdf:Property ;
    rdfs:label "has sub title"@en,
        "heeft tweede titel"@nl ;
    rdfs:comment "A secondary title of the CreativeWork."@en,
        "Een tweede of alternatieve titel voor het programma of media object."@nl ;
    rdfs:domain sdo:CreativeWork ;
    rdfs:range xsd:string .