citation intent
- CURIE:
gmeow:citationIntent - IRI: https://blackcatinformatics.ca/gmeow/citationIntent
- Category: property
- Defined by:
gmeow:slices/citations - Box roles: RBox role (What is this?)
The intent with which the citation is made — a value from the open gmeow:CitationIntent vocabulary. Functional per relator: one intent per CitationAct.
Structure
Property shape: object property; gmeow:CitationAct -> gmeow:CitationIntent; functional
Practical Pattern
Use gmeow:citationIntent from gmeow:CitationAct to gmeow:CitationIntent when the relationship itself belongs in the native GMEOW graph.
Example Snippets
These snippets are generated from canonical slice examples and trimmed to the Turtle blocks where this term appears.
Citation Act
- Source:
slices/core/citations/examples/citation-act.ttl - Examples catalog: open in catalog#example-slices-core-citations-examples-citation-act
# SPDX-FileCopyrightText: 2026 Blackcat Informatics® Inc. <paudley@blackcatinformatics.ca>
# SPDX-License-Identifier: CC-BY-4.0
#
# Worked example: citation is flat-first, reified on demand ( P4 — the same
# promotion pattern as rights). A bare gmeow:cites edge covers "A references B".
# When the citation's INTENT and exact LOCATION matter, it is promoted to a
# gmeow:CitationAct relator binding gmeow:citingEntity × gmeow:citedEntity ×
# gmeow:citationIntent, pinned to a precise gmeow:Selector (page + verbatim quote)
# via gmeow:viaSelector. gmeow:cites pairsWith gmeow:CitationAct: the flat edge
# and its reification name the same fact at two levels of detail.
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/citations/> .
# --- The reified act: not just THAT it cites, but WHY (uses a method from it)
# and WHERE (the exact passage the method appears in).
ex:cite1 a gmeow:CitationAct ;
gmeow:citingEntity ex:myPaper ;
gmeow:citedEntity ex:citedPaper ;
gmeow:citationIntent gmeow:intentUsesMethodIn ;
gmeow:viaSelector ex:sel1 .
Notability Assessment
- Source:
slices/core/evidence/examples/notability-assessment.ttl - Examples catalog: open in catalog#example-slices-core-evidence-examples-notability-assessment
# --- Strong evidence: an independent trade-press feature with depth → supports.
# The subject (citingEntity, generic Entity) is supported by the cited work
# (citedEntity, a CreativeWork): gmeow:intentSupports reads "the cited work
# supports the citing entity", and the evidence dimensions grade that support.
ex:goodCite a gmeow:CitationAct ;
gmeow:citingEntity ex:subject ;
gmeow:citedEntity ex:feature ;
gmeow:citationIntent gmeow:intentSupports ;
gmeow:hasEvidenceClass gmeow:evidenceIndependentTradePress ;
gmeow:sourceTier gmeow:sourceTierSecondary ;
gmeow:sourceIndependence gmeow:sourceIndependenceIndependent ;
gmeow:coverageDepth gmeow:coverageDepthSignificantCoverage ;
gmeow:supportsNotability true .
# --- Weak evidence: the subject's own press release, a passing routine notice →
# same predicate, graded the other way: does NOT support notability.
ex:weakCite a gmeow:CitationAct ;
gmeow:citingEntity ex:subject ;
gmeow:citedEntity ex:pressRelease ;
gmeow:citationIntent gmeow:intentSupports ;
gmeow:hasEvidenceClass gmeow:evidenceSelfControlledSite ;
gmeow:sourceTier gmeow:sourceTierPrimary ;
gmeow:sourceIndependence gmeow:sourceIndependenceSelfOrIssuerOriginated ;
gmeow:coverageDepth gmeow:coverageDepthRoutineFiling ;
gmeow:supportsNotability false .
Common Companion Terms
gmeow:CitationAct, gmeow:CitationIntent
Usage Advice
Use when
- Use to type WHY a
gmeow:CitationActcites — data source, method, extension, agreement, disagreement — by referencing agmeow:CitationIntentvalue, the axis that projects to CiTO sub-properties.
Avoid when
- Avoid giving one citation act two intents (it is functional — mint a second
CitationActfor a second intent) and avoid a free-text intent; reference or mint agmeow:CitationIntentindividual.
How to use
- Set
gmeow:citationIntentonce perCitationAct(functional) to agmeow:CitationIntentindividual; if the needed intent is missing, mint a new value individual aligned to a CiTO sub-property by reference (Principle 5).
Examples
- ex:citeAct
gmeow:citationIntentgmeow:intentCitesAsDataSource.