Can we make use of the simplified and improved schema with other tools we have made.
Here is a very simple version of the tetrahedron.
Revised schema diagram. arrows
http://ward.dojo.fed.wiki/assets/pages/mock-graph-data/nav-schema.html HEIGHT 300
Above script adapted from Navigator Schema
pages/revised-navigator-schema
Problem: the node creator could not figure out how to create node properties or relations to other nodes.
http://ward.dojo.fed.wiki/assets/pages/mock-graph-data/creator.html HEIGHT 100
Above script adapted from Subgraph Creator
# Diagnosis
Problem: schema nodes have no properties. Normally it has expected keys with blank for values.
{ "type": "Ideals", "in": [ 0, 2, 3 ], "out": [ 9, 10, 11 ], "props": {} },
Problem: schema relations did not have recognizable type names. Maybe the extra colons tricked the parser into doing the wrong thing.
{ "type": "", "from": 1, "to": 0, "props": { "PRIORITIZES": "Ideals" } },