tagging scheme
- CURIE:
gmeow:taggingScheme - IRI: https://blackcatinformatics.ca/gmeow/taggingScheme
- Category: property
- Defined by:
gmeow:slices/tags - Box roles: RBox role (What is this?)
The tag scheme within which the tagging act is performed. Functional per relator: one scheme per Tagging (the tag itself may belong to multiple schemes).
Structure
Property shape: object property; gmeow:Tagging -> gmeow:TagScheme; functional
Practical Pattern
Use gmeow:taggingScheme from gmeow:Tagging to gmeow:TagScheme 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.
Folksonomy
- Source:
slices/core/tags/examples/folksonomy.ttl - Examples catalog: open in catalog#example-slices-core-tags-examples-folksonomy
ex:taggingNLP a gmeow:Tagging ;
gmeow:taggingTagged ex:paper ;
gmeow:taggingTag ex:tagNLP ;
gmeow:taggingTagger ex:alice ;
gmeow:taggingScheme ex:scheme .
Named Profile Membership
- Source:
slices/core/profiles/examples/named-profile-membership.ttl - Examples catalog: open in catalog#example-slices-core-profiles-examples-named-profile-membership
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/profiles/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
# --- The Profile: a closed descriptor schema for a tagging. It SELF-DESCRIBES —
# naming the class it governs (profileAppliesTo gmeow:Tagging), the
# descriptor properties (profileDescriptor), and the open value class
# (profileOpenValue gmeow:Tag) — so tooling reads the graph, not code. A
# Profile MUST carry a skos:definition.
ex:profileTagging a gmeow:Profile ;
rdfs:label "Tagging Profile"@en ;
skos:definition "The closed descriptor schema for a reified tagging: the entity tagged, the tag applied (drawn from the open gmeow:Tag vocabulary), the agent who applied it, and the scheme it belongs to. New tags extend the facet as data added to the open value class, with this descriptor set unchanged."@en ;
gmeow:profileAppliesTo gmeow:Tagging ;
gmeow:profileDescriptor
gmeow:taggingTagged ,
gmeow:taggingTag ,
gmeow:taggingTagger ,
gmeow:taggingScheme ;
gmeow:profileOpenValue gmeow:Tag .
# --- A concrete Tagging that CLAIMS CONFORMANCE: it carries gmeow:hasProfile
# pointing at the Profile whose descriptor schema governs it, and supplies
# descriptor values — including the open-vocabulary tag as the value of
# gmeow:taggingTag. A consumer can now validate this tagging's shape by
# dereferencing the Profile alone.
ex:taggingML a gmeow:Tagging ;
gmeow:hasProfile ex:profileTagging ;
gmeow:taggingTagged ex:paper ;
gmeow:taggingTag ex:tagML ;
gmeow:taggingTagger ex:alice ;
gmeow:taggingScheme ex:scheme .
Common Companion Terms
gmeow:Tagging, gmeow:TagScheme
Usage Advice
Use when
- Use to record the single scheme under which a reified
gmeow:Taggingact was performed — the vocabulary context of this particular application.
Avoid when
- Avoid confusing it with a tag's scheme membership (use
gmeow:tagInScheme, which is many-valued); theTaggingact names exactly one scheme even though the tag may belong to several.
How to use
- Point this functional role at one
gmeow:TagSchemeon theTaggingnode; record the tag's broader cross-listing separately viagmeow:tagInScheme.
Examples
- ex:t1
gmeow:taggingSchemeex:projectVocab.