parents: My PKM Practice, My Systems
Problem
- My original note system used
type
andsubtype
to define a note’s identity.- This created a subtle logical inconsistency.
- The term
subtype
implies a strict hierarchy.- This works for
type: entity
where abook
is a subtype. - It breaks down for other cases.
- An
idea
is not a subtype ofnarration
. It is a form of it. - A
framework
is not just a subtype of aprocess
.
- An
- This works for
- This inconsistency created friction when creating notes.
Solution: Adopting kind
and form
- I replaced
type
andsubtype
withkind
andform
.- This creates a more robust and logical relationship.
kind
describes the note’s essence.- It answers, “What kind of thing is this?”
form
describes the note’s structure or manifestation.- It answers, “What form does it take?”
- The new relationship is Essence (
kind
) & Manifestation (form
).- This idea is explained in Model vs. Definition vs. Principle.
- Why
kind
and nottype
?type
is a term from computer science, suggesting a functional category.kind
is a term from philosophy, suggesting an intrinsic nature.kind
better captures the intent of human sense-making in a knowledge system.
Example
- Before
type: narration subtype: idea
- After
kind: narration form: idea