Download
Obtain the ontology file and understand its provenance.
Current release
- Version
- v0.2-final · draft
- Date
- 2026-09
- Format
- Turtle / OWL 2
- SHA-256
- 242a8aedc00d980ff422fd28caf16b08ff7133e08388b95cf316f5b2152608b9
License
CC BY 4.0 — Creative Commons Attribution 4.0 International.
Full license text
You are free to share and adapt the material for any purpose, even commercially, under the following terms: you must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
Full legal code: creativecommons.org/licenses/by/4.0/legalcode
Provenance
- BFO 2020 (ISO 21838-2) — basic-formal-ontology.org
- OGMS (Ontology for General Medical Science) — OLS4 / OGMS
Version history
| Version | Date | Description |
|---|---|---|
| 0.2 | 2026-09 | Complete relational layer; all classes connected; transversal annotation properties; temporal dimension formalised. |
| 0.1 | 2026-09 | Initial public draft: four architectural levels (A–D), BFO 2020 / OGMS anchors, object properties for core relations. |
How to load
Protégé
File → Open → select WHIO_v0_2.ttl
(or Open from URL using the ontology IRI) Apache Jena (Java)
Model model = ModelFactory.createDefaultModel();
model.read("WHIO_v0_2.ttl", "TTL"); rdflib (Python)
from rdflib import Graph
g = Graph()
g.parse("WHIO_v0_2.ttl", format="turtle") n3.js (JavaScript / Node)
import { Parser, Store } from 'n3';
import { readFileSync } from 'node:fs';
const store = new Store();
const parser = new Parser();
store.addQuads(parser.parse(readFileSync('WHIO_v0_2.ttl', 'utf8')));