issued at
- CURIE:
gmeow:issuedAt - IRI: https://blackcatinformatics.ca/gmeow/issuedAt
- Category: property
- Defined by:
gmeow:slices/attestation - Box roles: CBox role, RBox role (What is this?)
The instant an attestation was issued. Functional: the issue time is constitutive of the attestation's identity.
Structure
Property shape: datatype property; gmeow:Attestation -> xsd:dateTime; functional
Practical Pattern
Use gmeow:issuedAt from gmeow:Attestation 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.
Software Release
- Source:
slices/core/attestation/examples/software-release.ttl - Examples catalog: open in catalog#example-slices-core-attestation-examples-software-release
# --- The attestation: the CI system vouches for the release as SLSA provenance.
ex:slsaAttestation a gmeow:Attestation ;
gmeow:attester ex:ciSystem ;
gmeow:attestedSubject ex:release ;
gmeow:attestationType gmeow:attestationTypeSLSAProvenance ;
gmeow:issuedAt "2026-06-14T12:00:00Z"^^xsd:dateTime ;
gmeow:attestationArtifact ex:artifact ;
gmeow:hasSignature ex:sig ;
gmeow:verificationResult ex:verifyResult .
Skill Proficiency
- Source:
slices/core/expertise/examples/skill-proficiency.ttl - Examples catalog: open in catalog#example-slices-core-expertise-examples-skill-proficiency
ex:certAttestation a gmeow:Attestation ;
gmeow:attester ex:psf ;
gmeow:attestedSubject ex:cert ;
gmeow:attestationType gmeow:attestationTypeVerifiableCredential ;
gmeow:issuedAt "2025-09-01T00:00:00Z"^^xsd:dateTime .
Common Companion Terms
External Equivalences
Equivalent or closely aligned targets: vc
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:issuedAt |
equivalence | - |
skos:closeMatch | vc:issuanceDate | gmeow-attestation.sssom.tsv; gmeow:eqAttestation011; confidence 0.85 |
Usage Advice
Use when
- Use to stamp the single instant a vouching act was issued — the wall-clock moment the attester signed and released the envelope.
Avoid when
- Avoid for the validity window (use
gmeow:validFrom/gmeow:validUntil) or the verification time (that lives on thegmeow:VerificationResult); and because it is functional, a different issue time is a different attestation.
How to use
- Set one xsd:dateTime issue instant; bound usability separately with gmeow:validFrom/validUntil (revocation sets
validUntil), and let transparency-log inclusion time ride on thegmeow:TransparencyLogEntryrather than here.
Examples
- ex:provAtt
gmeow:issuedAt"2026-06-15T10:00:00Z"^^xsd:dateTime.