Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ members = [
"crates/ogar-from-schema",
"crates/ogar-class-view",
"crates/ogar-render-askama",
"crates/ogar-fma-skeleton",
]

[workspace.package]
Expand Down
25 changes: 15 additions & 10 deletions crates/ogar-class-view/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,16 @@ use lance_graph_contract::{
ontology::{DisplayTemplate, FieldRef, ObjectView},
};
use ogar_vocab::{
accounting_account, auth_ory_keto, auth_store, auth_zanzibar, auth_zitadel,
billable_work_entry, billing_party, canonical_concept_id, commercial_document,
commercial_line_item, currency_policy, diagnosis, lab_value, medication, patient,
payment_record, priority, product, project, project_actor, project_attachment,
project_changeset, project_comment, project_custom_field, project_custom_value,
project_enabled_module, project_forum, project_journal, project_member_role,
project_membership, project_message, project_news, project_query, project_relation,
project_repository, project_role, project_status, project_type, project_version,
project_watcher, project_wiki_page, project_work_item, tax_policy, treatment, visit,
vital_sign, Class,
Class, accounting_account, anatomical_structure, auth_ory_keto, auth_store, auth_zanzibar,
auth_zitadel, billable_work_entry, billing_party, bone, canonical_concept_id,
commercial_document, commercial_line_item, currency_policy, diagnosis, joint, lab_value,
medication, patient, payment_record, priority, product, project, project_actor,
project_attachment, project_changeset, project_comment, project_custom_field,
project_custom_value, project_enabled_module, project_forum, project_journal,
project_member_role, project_membership, project_message, project_news, project_query,
project_relation, project_repository, project_role, project_status, project_type,
project_version, project_watcher, project_wiki_page, project_work_item, skeleton, tax_policy,
treatment, visit, vital_sign,
};

/// All promoted canonical concepts: `(canonical_concept_name, Class)`.
Expand Down Expand Up @@ -128,6 +128,11 @@ fn all_canonical_classes() -> Vec<(&'static str, Class)> {
("treatment", treatment()),
("visit", visit()),
("vital_sign", vital_sign()),
// ── 0x0AXX — anatomy (FMA reference kinds) ──
("anatomical_structure", anatomical_structure()),
("skeleton", skeleton()),
("bone", bone()),
("joint", joint()),
// ── 0x0BXX — auth (the AuthStore class family, keystone §7) ──
("auth_store", auth_store()),
("auth_zitadel", auth_zitadel()),
Expand Down
17 changes: 17 additions & 0 deletions crates/ogar-fma-skeleton/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "ogar-fma-skeleton"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
rust-version.workspace = true
description = "FMA skeletal spine — the hand-curated, clamped convergence-anchor atlas: bones as immutable 16×8-bit Morton-tile family-node addresses (partonomy = spatial prefix), the rigid reference frame every imaging modality (ViT / X-ray / ultrasound × Doppler) registers against."

[features]
default = []
serde = ["dep:serde", "ogar-vocab/serde"]

[dependencies]
ogar-vocab = { path = "../ogar-vocab" }
serde = { workspace = true, optional = true }
Loading
Loading