ingested at
- CURIE:
gmeow:ingestedAt - IRI: https://blackcatinformatics.ca/gmeow/ingestedAt
- Category: property
- Defined by:
gmeow:slices/provenance - Box roles: CBox role, RBox role (What is this?)
When an import activity recorded its claims into the system — the transaction time. Distinct from gmeow:assertedAt (observation) and gmeow:validFrom/validUntil (validity).
Structure
Property shape: datatype property; gmeow:ImportActivity -> xsd:dateTime; functional
Practical Pattern
Use gmeow:ingestedAt from gmeow:ImportActivity to xsd:dateTime 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.
Import Lineage
- Source:
slices/core/provenance/examples/import-lineage.ttl - Examples catalog: open in catalog#example-slices-core-provenance-examples-import-lineage
# --- The activity and the agent that performed it (the importer self-records).
ex:import a gmeow:ImportActivity ;
gmeow:ingestedAt "2026-06-14T09:30:00Z"^^xsd:dateTime ;
gmeow:wasAssociatedWith ex:importer .
Lillith Dataset
- Source:
slices/extensions/graphrag/examples/lillith-dataset.ttl - Examples catalog: open in catalog#example-slices-extensions-graphrag-examples-lillith-dataset
# The ingest provenance the catalog projections flatten to PROV.
ex:lillith-ingest a gmeow:ImportActivity ;
rdfs:label "lillith corpus ingest"@en ;
gmeow:ingestedAt "2026-06-01T09:00:00Z"^^xsd:dateTime ;
gmeow:eventTemporalFrame gmeow:temporalFrameUTCGregorian .
Common Companion Terms
Projects To
| Profile | External Targets |
|---|---|
dcat |
prov, rdf |
External Equivalences
Equivalent or closely aligned targets: prov
Linkages
Generated from the canonical mapping DSL. SSSOM files are the generated public interchange form for term equivalences.
Term Equivalences
| Source | Kind | Profile | Predicate/Relation | Target | Evidence |
|---|---|---|---|---|---|
gmeow:ingestedAt |
equivalence | - |
skos:closeMatch | prov:endedAtTime | gmeow-provenance.sssom.tsv; gmeow:eqProvenance008; confidence 0.85 |
Projection Coverage
| Source | Kind | Profile | Predicate/Relation | Target | Evidence |
|---|---|---|---|---|---|
gmeow:ingestedAt |
projection | dcat |
projects to / <= | prov:Activity, prov:endedAtTime, rdf:type | gmeow:mapDcatImportActivity; confidence 0.9; lossy: transaction time flattens to prov:endedAtTime; the assertion/validity clocks are dropped |
Usage Advice
Use when
- Use to stamp a
gmeow:ImportActivitywith its transaction time — the instant the system learned the claims — so bitemporal queries can separate when-learned from when-asserted and when-valid.
Avoid when
- Avoid for the observation time of a claim (statement-level
gmeow:assertedAt) or the time a fact holds in the world (gmeow:validFrom/gmeow:validUntil); collapsing the three temporal axes defeats the bitemporal model.
How to use
- Attach exactly one xsd:dateTime to the
gmeow:ImportActivity(it is functional); pair it withgmeow:wasAssociatedWithfor the importing agent, and let the ingested claims carry their owngmeow:assertedAton the statement layer.
Examples
- ex:import2026
gmeow:ingestedAt"2026-06-15T09:00:00Z"^^xsd:dateTime.