@prefix ex: <https://example.com/localization/query/project/> .
@prefix loc: <https://ontology.inferal.com/modules/localization/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# A single sourced claim can be projected to the compact loc:Locus loc:at form
# for consumers that do not need the provenance-bearing claim node.
ex:release-date
    a loc:Locus ;
    loc:inFrame loc:UTCTimeline .

ex:release-date-fix
    a loc:Localization ;
    loc:localizes ex:release-date ;
    loc:at "2026-07-02"^^xsd:date ;
    prov:wasAttributedTo ex:release-engineering-record .

# This locus has two rival claims, so the projection query intentionally does
# not emit a direct loc:at value for it.
ex:manuscript-date
    a loc:Locus ;
    loc:inFrame loc:UTCTimeline .

ex:catalog-estimate
    a loc:Localization ;
    loc:localizes ex:manuscript-date ;
    loc:at "1200"^^xsd:gYear .

ex:lab-estimate
    a loc:Localization ;
    loc:localizes ex:manuscript-date ;
    loc:at "1180"^^xsd:gYear .
