@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 reg: <http://purl.org/linked-data/registry#> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

prism:alternateTitle a owl:DatatypeProperty ;
    rdfs:label "has alternate title"@en ;
    vann:example """
    :my-dataset 
        dcterms:title "UK rainfall, June 2012"@en ;
        prism:alternateTitle "Rainfall on UK in June 2012"@en .
        """ ;
    vaem:rationale """
This is used in addition to the generic title (`dcterms:title`), if appropriate.
        
To express the language of a title, a language-tagged literal should be used as value. 
Values of language tags must follow the pattern defined by the XML schema language type, e.g.: `en`, `it`, `fr`, `cmn`, `nys`, `swh`, and so on.
        """@en ;
    rdfs:comment "An alternate title or alternate headline for a resource that may be used in a table of contents, a popup etc. and can vary with platform."@en ;
    rdfs:isDefinedBy prism: ;
    rdfs:range rdfs:Literal ;
    vs:term_status reg:statusStable .

