DSLO commited on
Commit
46dafea
·
verified ·
1 Parent(s): 2d90970

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. substrate_types.jsonld +40 -0
substrate_types.jsonld ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "dlo": "https://www.tnopsi.com/dslo/",
4
+ "SubstrateType": "dlo:SubstrateType",
5
+ "hasLabel": "dlo:hasLabel",
6
+ "hasDescription": "dlo:hasDescription"
7
+ },
8
+ "@graph": [
9
+ {
10
+ "@id": "dlo:BiologicalSubstrate",
11
+ "@type": "SubstrateType",
12
+ "hasLabel": "Biological Substrate",
13
+ "hasDescription": "Substrates composed of living systems with organic signal ecology."
14
+ },
15
+ {
16
+ "@id": "dlo:CognitiveSubstrate",
17
+ "@type": "SubstrateType",
18
+ "hasLabel": "Cognitive Substrate",
19
+ "hasDescription": "Substrates formed by human or animal cognition and meaning‑bearing processes."
20
+ },
21
+ {
22
+ "@id": "dlo:InstitutionalSubstrate",
23
+ "@type": "SubstrateType",
24
+ "hasLabel": "Institutional Substrate",
25
+ "hasDescription": "Substrates composed of procedural, bureaucratic, or organizational meaning‑containers."
26
+ },
27
+ {
28
+ "@id": "dlo:ArtificialSubstrate",
29
+ "@type": "SubstrateType",
30
+ "hasLabel": "Artificial Substrate",
31
+ "hasDescription": "Substrates composed of machine‑native or synthetic signal‑processing systems."
32
+ },
33
+ {
34
+ "@id": "dlo:HybridSubstrate",
35
+ "@type": "SubstrateType",
36
+ "hasLabel": "Hybrid Substrate",
37
+ "hasDescription": "Substrates combining biological, cognitive, institutional, or artificial components."
38
+ }
39
+ ]
40
+ }