← Index
Wireframe In Progress

Ontology Designer (+ Browser)

Round 1 Created 2026-05-23 Section Knowledge · Ontologies Note Browser is this same page, mode toggle = read-only
Desktop
KnowledgeOntologiesmanufacturing v3 draft — Organization (entity)
Browse Edit
manufacturing.v3 · draft · Owner G. Felice · Changed 14 min ago
5 entity types · 12 edge types · 2 unsaved
Ontologies + Types
3 ont · 17 types
Ontologies 3
manufacturing.v3 (draft)17
compliance.v412
quanta.v29
Entity types 5
Organization412
Capability187
ProcessArea94
Activity1,204
Material312
++ New entity type
Edge types 12
depends_on94
enables71
implements63
part_of412
uses198
tracks14
+ 6 more…
++ New edge type
Entity type · manufacturing.v3 / Organization

Organization

Vertex 412 instances 9 properties 5 outbound · 3 inbound edges Unsaved changes

Identityrequired

Organization
A company or organizational entity that interacts with the supply chain or is tracked as an account.
Vertex (graph node)
Vertex types live as nodes in AGE. Embedded types live inline as JSONB on a parent vertex.
— · no parent type

Properties9 defined · 2 added in v3

NameTypeCard.Constraints
id string 1 required indexed unique
name string 1 required indexed
industry → Industry 1 required
sub_industry → SubIndustry 0..1
size_fte integer 0..1 ≥ 1
founded_year integer 0..1 1800..2099
region enum 0..1 8 values
opportunity_score float 0..1 0..1 indexed
embedding vector(1024) 0..1 hnsw index
+ Add property

Edges5 outbound · 3 inbound

Edge typeFromToCard.
depends_on Organization Organization 0..*
enables Organization Capability 0..*
part_of Organization Industry 1
tracks (inbound) QuantaAccount Organization 1
references (inbound) DiscoveryBrief Organization 0..*
+ Add edge
Live preview
Sample instance · acme-corp
Rendered as KV
idacme-corp nameAcme Corp industry→ Manufacturing sub_industry→ Industrial eq. size_fte12000 founded_year1947 regionUS_NE opportunity0.87 embeddingvec(1024) ✓
Edges in context
Organization part_of → Industry enables → Capability depends_on → Org ← tracks (Quanta)
Validation
Schema valid · all property types resolve all 9 props · all 5 edges
412 existing instances compatible with v3 schema no migration required
New opportunity_score field will be NULL for 412 instances consider backfill pipeline before publish
New embedding field will be empty for 412 instances queue embed-account-summaries to backfill
No downstream consumers break · 7 pipelines checked refresh-benchmarks · embed-summaries · …
Sample query
MATCH (o:Organization) WHERE o.opportunity_score > 0.7 RETURN o.name, o.industry, o.opportunity_score ORDER BY o.opportunity_score DESC