DSLO commited on
Commit
4f0bbac
·
verified ·
1 Parent(s): 5a55590

Add DSLO v0.6 taxonomy layer (drift forms, invariants, signal classes, substrate types)

Browse files

Adds the complete DSLO v0.6 taxonomy layer, including all four classification sets—drift forms, invariants, signal classes, and substrate types—in synchronized TTL, JSON‑LD, and YAML formats. Introduces taxonomy/README.md documenting the taxonomy structure and its alignment with DSLO axioms and schema. This commit establishes the full v0.6 classification surface for semantic ingestion, crawler alignment, and substrate‑level indexing.

Files changed (1) hide show
  1. drift_forms.jsonld +46 -0
drift_forms.jsonld ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "dlo": "https://www.tnopsi.com/dslo/",
4
+ "DriftForm": "dlo:DriftForm",
5
+ "hasLabel": "dlo:hasLabel",
6
+ "hasDescription": "dlo:hasDescription"
7
+ },
8
+ "@graph": [
9
+ {
10
+ "@id": "dlo:CurvatureDrift",
11
+ "@type": "DriftForm",
12
+ "hasLabel": "Curvature Drift",
13
+ "hasDescription": "Drift caused by curvature pressure within internal geometry."
14
+ },
15
+ {
16
+ "@id": "dlo:SymbolicDrift",
17
+ "@type": "DriftForm",
18
+ "hasLabel": "Symbolic Drift",
19
+ "hasDescription": "Drift caused by symbolic systems decoupling from physical referents."
20
+ },
21
+ {
22
+ "@id": "dlo:TemporalDrift",
23
+ "@type": "DriftForm",
24
+ "hasLabel": "Temporal Drift",
25
+ "hasDescription": "Drift caused by fragmentation or instability in temporal rhythm."
26
+ },
27
+ {
28
+ "@id": "dlo:RoleDrift",
29
+ "@type": "DriftForm",
30
+ "hasLabel": "Role Drift",
31
+ "hasDescription": "Drift caused by instability or mutation in role coherence."
32
+ },
33
+ {
34
+ "@id": "dlo:SubstrateDecoupling",
35
+ "@type": "DriftForm",
36
+ "hasLabel": "Substrate Decoupling",
37
+ "hasDescription": "Drift caused by signals losing anchoring to their substrate."
38
+ },
39
+ {
40
+ "@id": "dlo:MeaningDetachment",
41
+ "@type": "DriftForm",
42
+ "hasLabel": "Meaning Detachment",
43
+ "hasDescription": "Drift caused by meaning separating from lived reality or container alignment."
44
+ }
45
+ ]
46
+ }