Add DSLO v0.6 taxonomy layer (drift forms, invariants, signal classes, substrate types)
Browse filesAdds 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.
- substrate_types.ttl +26 -0
substrate_types.ttl
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@prefix dlo: <https://www.tnopsi.com/dslo/> .
|
| 2 |
+
|
| 3 |
+
dlo:BiologicalSubstrate
|
| 4 |
+
a dlo:SubstrateType ;
|
| 5 |
+
dlo:hasLabel "Biological Substrate" ;
|
| 6 |
+
dlo:hasDescription "Substrates composed of living systems with organic signal ecology." .
|
| 7 |
+
|
| 8 |
+
dlo:CognitiveSubstrate
|
| 9 |
+
a dlo:SubstrateType ;
|
| 10 |
+
dlo:hasLabel "Cognitive Substrate" ;
|
| 11 |
+
dlo:hasDescription "Substrates formed by human or animal cognition and meaning‑bearing processes." .
|
| 12 |
+
|
| 13 |
+
dlo:InstitutionalSubstrate
|
| 14 |
+
a dlo:SubstrateType ;
|
| 15 |
+
dlo:hasLabel "Institutional Substrate" ;
|
| 16 |
+
dlo:hasDescription "Substrates composed of procedural, bureaucratic, or organizational meaning‑containers." .
|
| 17 |
+
|
| 18 |
+
dlo:ArtificialSubstrate
|
| 19 |
+
a dlo:SubstrateType ;
|
| 20 |
+
dlo:hasLabel "Artificial Substrate" ;
|
| 21 |
+
dlo:hasDescription "Substrates composed of machine‑native or synthetic signal‑processing systems." .
|
| 22 |
+
|
| 23 |
+
dlo:HybridSubstrate
|
| 24 |
+
a dlo:SubstrateType ;
|
| 25 |
+
dlo:hasLabel "Hybrid Substrate" ;
|
| 26 |
+
dlo:hasDescription "Substrates combining biological, cognitive, institutional, or artificial components." .
|