Context Edge expresses “in which worldview/context is this Claim true.”

It corresponds to the concept of possible worlds in Modal Logic, where different facts can exist about the same Subject depending on the worldview.

Context "Reality":         (Earth, age, 4.6 billion years)
Context "Young Earth":     (Earth, age, 6000 years)
Context "Harry Potter":    (magic, exists, true)

Packet Structure (3 words, 48 bits)

1st WORD (16 bits):
┌─────────────────────┬─────────────────┐
│       Prefix        │  Context Type   │
│       10 bits       │     6 bits      │
└─────────────────────┴─────────────────┘
 [1100 000 100]        [TTTTTT]

2nd WORD: Context TID (16 bits)
3rd WORD: Target TID (16 bits)
FieldBitsDescription
Prefix101100 000 100
Context Type60=unspecified, 1~62=type, 63=extended (reserved)
Context TID16Unique identifier for this Context
Target TID16Target Claim (Triple/Verb/Event6/Clause TID)

Context Type (6 bits = 64)

Source – Code 1~20

CodeTypeDescriptionExample
1SYSTEMSystem-generatedWikidata sync
2USERUser-enteredManual creation
3DOCUMENTGeneral documentPDF, Word
4NEWSNews articleReuters, AP
5ACADEMICAcademic paperarXiv, Nature
6GOVERNMENTGovernment/public agencySEC, census bureau
7WIKIWikipedia/WikidataQ42, P31
8APIExternal APIFinance, weather
9ORGOrganization announcementCorporate IR
10BOOKBookISBN-based
11INTERVIEWInterview/testimonyDirect quote
12DATASETDatasetKaggle
13SOCIALSocial mediaTwitter
14LEGALLaw/case lawCourt ruling
15ARCHIVEArchivearchive.org
16MULTIMEDIAVideo/audioYouTube
17DATABASEDatabaseIMDB, Freebase
18ENCYCLOPEDIAEncyclopediaBritannica
19MANUALManual/guideTechnical docs
20STANDARDStandard documentISO, RFC

Derived/Inference – Code 21~30

CodeTypeDescriptionExample
21MODELAI model generationGPT, Claude
22INFERENCELogical inferenceRule-based
23AGGREGATIONAggregation/integrationMulti-source synthesis
24CALCULATIONCalculation resultFormula application
25TRANSLATIONTranslationSource → translation
26EXTRACTIONExtractionNER, RE
27CORRECTIONCorrection/amendmentError correction
28HEARSAYHearsay/rumorUnverified
29ESTIMATIONEstimationApproximate value
30PREDICTIONPredictionFuture forecast

Worldview/Belief – Code 31~45

CodeTypeDescriptionExample
31RELIGIONReligious worldviewProtestantism, Buddhism
32PHILOSOPHYPhilosophical perspectiveExistentialism
33SCIENCEScientific consensusModern physics
34POLITICSPolitical perspectiveConservative, progressive
35CULTURECultural perspectiveEastern, Western
36MYTHOLOGYMythological systemGreek mythology
37FOLKLOREFolklore/traditionLocal tales
38IDEOLOGYIdeological systemCapitalism
39THEORYTheoryTheory of relativity
40HYPOTHESISHypothesisPre-verification
41TRADITIONTradition/customConfucian tradition
42CONSENSUSConsensus/accepted viewAcademic consensus
43MAINSTREAMMainstream viewMajority opinion
44ALTERNATIVEAlternative viewMinority opinion
45FRINGEFringe/heterodoxPseudoscience

Fiction/Creative – Code 46~55

CodeTypeDescriptionExample
46NOVELNovel universeLord of the Rings
47FILMFilm universeMCU
48GAMEGame universeZelda
49COMICSComics universeDC Universe
50ANIMATIONAnimation universeStudio Ghibli
51DRAMADrama universeGame of Thrones
52THEATERTheater universeHamlet
53FANFICFan creationFan fiction
54LEGENDLegendKing Arthur
55FAIRYTALEFairy taleCinderella

Perspective/Speaker – Code 56~62

CodeTypeDescriptionExample
56NARRATORNarrator perspectiveOmniscient narrator
57PROTAGONISTProtagonist perspectiveHero’s viewpoint
58ANTAGONISTAntagonist perspectiveVillain’s viewpoint
59AUTHORAuthor intentAuthor’s commentary
60EXPERTExpert opinionScholar’s opinion
61LAYMANLayperson perceptionPublic perception
62SATIRICALSatire/ironyIronic expression

Code 0 is UNSPECIFIED, and Code 63 is EXTENDED (reserved).

Metadata Extension

Additional information about the Context itself (source, confidence, worldview name) is expressed via Triple Edge.

(Context TID, P:source_entity, Reuters_Entity)  - Source organization
(Context TID, P:confidence, 0.95)               - Confidence
(Context TID, P:universe_name, "Harry Potter")   - Universe name
(Context TID, P:perspective_holder, Villain_Entity)  - Perspective holder

Examples

Source: “Reuters report”

Context Edge:
  1st: [1100 000 100] + [000100]  - NEWS (4)
  2nd: [0x0300]                   - Context TID
  3rd: [0x0001]                   - Target: Triple "Apple acquired Tesla"

Additional Triples:
  (0x0300, P:source_entity, Reuters)
  (0x0300, P:date, 2026-01-29)

Fiction: “Harry Potter universe”

Context Edge:
  1st: [1100 000 100] + [101110]  - NOVEL (46)
  2nd: [0x0302]                   - Context TID
  3rd: [0x0003]                   - Target: Triple "Hogwarts is_a school"

Additional Triples:
  (0x0302, P:universe_name, "Harry Potter")
  (0x0302, P:author, J.K. Rowling)

AI Inference: “Claude’s inference”

Context Edge:
  1st: [1100 000 100] + [010101]  - MODEL (21)
  2nd: [0x0304]                   - Context TID
  3rd: [0x0005]                   - Target: Triple "X causes Y"

Additional Triples:
  (0x0304, P:model, Claude_Entity)
  (0x0304, P:confidence, 0.75)

Design Rationale

  • Context Edge as a separate type: Worldviews are a meta-layer distinct from Triple/Clause. Corresponds to the G (Graph) in RDF Quads.
  • 6-bit Context Type: Enables immediate classification without separate Triples. 62 types cover most use cases.
  • 3-word lightweight structure: Context links occur in large volumes, so minimal size ensures storage efficiency.