File size: 979 Bytes
86c8554 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | {
"$schema": "https://www.tnopsi.com/dslo/schema",
"title": "DSLO Semantic Substrate Schema v0.1",
"description": "Canonical minimal schema for DSLO substrate primitives.",
"version": "0.1",
"type": "object",
"properties": {
"state": {
"type": "string",
"description": "Localized, moment‑bound position (x)."
},
"transition": {
"type": "string",
"description": "Lawful movement between states (τ)."
},
"orientation": {
"type": "string",
"description": "Contextual routing and alignment (o)."
},
"correction": {
"type": "string",
"description": "Invariant‑preserving fallback structure (c)."
},
"meaning_status": {
"type": "string",
"enum": ["meaning-bearing", "synthetic", "drifted", "stabilized"],
"description": "Meaning status (κ)."
}
},
"required": [
"state",
"transition",
"orientation",
"correction",
"meaning_status"
]
} |