invitation status
- CURIE:
gmeow:invitationStatus - IRI: https://blackcatinformatics.ca/gmeow/invitationStatus
- Category: property
- Defined by:
gmeow:slices/calendar - Box roles: RBox role (What is this?)
The current status of the invitation as set by the organizer — needs-action, accepted, declined, tentative.
Structure
Property shape: object property; gmeow:EventInvitation -> gmeow:InvitationStatus
Practical Pattern
Use gmeow:invitationStatus from gmeow:EventInvitation to gmeow:InvitationStatus 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.
Recurring Meeting
- Source:
slices/core/calendar/examples/recurring-meeting.ttl - Examples catalog: open in catalog#example-slices-core-calendar-examples-recurring-meeting
# SPDX-FileCopyrightText: 2026 Blackcat Informatics® Inc. <paudley@blackcatinformatics.ca>
# SPDX-License-Identifier: CC-BY-4.0
#
# Worked example: a recurring meeting with invitations. A gmeow:EventSchedule
# repeats a TEMPLATE event by a gmeow:RecurrenceRule (an RFC 5545 RRULE string),
# all anchored in an explicit gmeow:TimeZone (IANA id) — so "every Monday 09:00"
# is unambiguous across DST. Invitations are reified gmeow:EventInvitations
# carrying both the organiser-side gmeow:invitationStatus and the invitee's own
# gmeow:rsvpStatus. The event's kind is an open vocabulary: there is no seed
# "meeting" EventType, so one is minted (the custom-value idiom, P9).
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/calendar/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# --- A reified invitation: organiser status AND the invitee's own RSVP.
ex:invite a gmeow:EventInvitation ;
gmeow:invitationEvent ex:standup ;
gmeow:invitationInvitee ex:dana ;
gmeow:invitationStatus gmeow:invitationStatusAccepted ;
gmeow:rsvpStatus gmeow:rsvpStatusAccepted .
Common Companion Terms
gmeow:EventInvitation, gmeow:InvitationStatus
Projects To
| Profile | External Targets |
|---|---|
ical |
ical |
External Equivalences
Equivalent or closely aligned targets: ical
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:invitationStatus |
equivalence | - |
skos:closeMatch | ical:partstat | gmeow-calendar.sssom.tsv; gmeow:eqCalendar015; confidence 0.8 |
Projection Coverage
| Source | Kind | Profile | Predicate/Relation | Target | Evidence |
|---|---|---|---|---|---|
gmeow:invitationStatus |
projection | ical |
projects to / <= | ical:attendee | gmeow:mapIcalInvitationPartstat; confidence 0.7; lossy: the reified invitation (agreement/period/confidence/standpoint) collapses to a bare ATTENDEE with PARTSTAT |
Usage Advice
Use when
- Use to record the ORGANIZER's view of an invitation's state — the iTIP PARTSTAT the calendar owner tracks for each invitee.
Avoid when
- Avoid using it for the invitee's own response (that is
gmeow:rsvpStatus) — the two views may disagree and both coexist; never collapse them onto one property.
How to use
- Set a
gmeow:InvitationStatusvalue for the organizer's record; carry the invitee's parallel claim ongmeow:rsvpStatusand standpoint-index either when contested.
Examples
- ex:standupInvite
gmeow:invitationStatusgmeow:invitationStatusAccepted.