Linking Open Descriptions of Events (LODE)

LODE (Linking Open Descriptions of Events) is an ontology for publishing and interlinking structured event descriptions as Linked Data. It provides lightweight classes and properties for representing events, their time and place, and simple relationships to agents and sources. LODE is intentionally minimalistic to maximize interoperability and ease of adoption: it models events as occurrences with temporal extents and locations, and supports linking to richer event models when needed. Typical use cases include event directories, cultural heritage timelines, news event annotation, and discovery services that aggregate event records from multiple data providers. LODE emphasizes stable URIs and practical tools for populating event descriptions, enabling the creation of a searchable event directory of historical and contemporary events.

Example usage: describe a public lecture as an lode:Event with a start/end time, a dcterms:spatial property linking to a Place URI, and a dc:source pointing to a news article; link the event to authority URIs for the speaker. The ontology’s simplicity makes it a useful pivot for integrating event data across heterogeneous datasets.

Metrics & Statistics

Graph Statistics

Total Nodes

81

Total Edges

115

Root Nodes

7

Leaf Nodes

59

Knowledge Coverage Statistics

Classes

1

Individuals

0

Properties

7

Hierarchical Metrics

Maximum Depth

4

Minimum Depth

0

Average Depth

2.12

Depth Variance

1.37

Breadth Metrics

Maximum Breadth

19

Minimum Breadth

7

Average Breadth

12.00

Breadth Variance

25.60

LLMs4OL Dataset Statistics

Term Types

0

Taxonomic Relations

4

Non-taxonomic Relations

0

Average Terms per Type

0.00

Usage Example

Use the following code to import this ontology programmatically:

from ontolearner.ontology import LODE

ontology = LODE()
ontology.load("path/to/LODE-ontology.rdf")

# Extract datasets
data = ontology.extract()

# Access specific relations
term_types = data.term_typings
taxonomic_relations = data.type_taxonomies
non_taxonomic_relations = data.type_non_taxonomic_relations