WHIO v0.2-final

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

Download WHIO_v0_2.ttl

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

Version history

VersionDateDescription
0.22026-09Complete relational layer; all classes connected; transversal annotation properties; temporal dimension formalised.
0.12026-09Initial 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')));