A vocabulary for representing markdown-based personal knowledge management systems in RDF.
- Document-centric model with rich context preservation
- Meeting notes, todos, and relationship tracking
- Hierarchical tagging with SKOS
- Built on established vocabularies (FOAF, Schema.org, Dublin Core)
@prefix kb: <http://example.org/kb/vocab#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
:timeline/2024/11/15/team-meeting a kb:GroupMeeting ;
dcterms:title "Team Standup" ;
kb:hasTag :tag/meetings/standup ;
kb:hasAttendee :person/John_Smith .See documentation/quick-start.md for more.
@prefix kb: <http://example.org/kb/vocab#> .
# Your RDF herefrom rdflib import Namespace
KB = Namespace("http://example.org/kb/vocab#")[Choose: MIT / Apache 2.0 / CC BY 4.0]
See CONTRIBUTING.md for guidelines.