Ontology

An ontology is an explicit specification of a conceptualization. [Gruber, 1993]

Conceptualisation: abstract model (of a domain, with relevant concepts and relations) Explicit: the meaning of all concepts is defined.

In computer science context, the specification has to be formal i.e. machine readable.

It’s possible to view ontology as a directed graph with classes (concepts) as nodes, and the properties (roles) as edges. In such a view, a taxonomy is a specific case of the abovementioned graph, with edges only of the type : “IS-A” (subClassOF)

To add semantic expressevity, in addition to "IS-A" property, it is possible to add other properties to express relationships between classes from the taxonomy. For example: “WindTurbine HAS Blade” or “ Sensor MEASURES PhysicalQuantity.

It is a way of showing the properties of a subject and how they are related. Metadata ontologies capture how data sets are connected.

Therefore for the purpose of knowledge representation in the context of metadata: An ontology is a formal explicit description of concepts in a domain of discourse (classes (sometimes called concepts)), properties of each concept describing various features and attributes of the concept (slots, sometimes called roles or properties), and restrictions on slots (facets, sometimes called role restrictions). [See Ontology 101]

Types of Ontologies:

  • Based on Level of generality [Guarino,1998]:

    • Top Level Ontology

    • Domain Ontology

    • Task Ontology

    • Application Ontology

  • Based on Level of Semantic Expressivity [Lassila,2001]

    • Controlled Vocabulary (Terms)

    • Glossary (Data Dictionary)

    • Formal “IS-A” (Formal Taxonomy)

    • Description Logics

    • First Order Logics

Example: OWL Ontology Language is based on Description Logics, OWL Ontology consists of : Classes, Properties (Roles), Individuals (Instances of classes) OWL OntologyAssumptions: open world (absence of information is NOT valued as False), and No unique names (ex. WIndTurbineA can be same as WIndTurbineB, unless expressed explicitly)

*Note

It can be useful to classify ontologies as being designed to deal with an open world or closed world. In other words, whether or not the content of the ontology is modular.

Formally, the open and closed world ontologies can be described as "assertion box" [Reiter, 1980] [Brodie, 2012 and "terminology box" [Lutz, 2012. The assertion box is essentially a database, which expresses member assertions. The terminology box is designed for modular schema, specifying concepts and relations. Using this encoded knowledge many diverse databases can be queried using the same semantics. It is possible to represent subclass relationships ($\subseteq$) and equivalence ($\equiv$), conjunction ($\cap$), disjunction ($\cup$), negation ($\neg$), property restrictions ($\forall$, $\exists$), tautology ($\top$), and contradiction ($\bot$).

Last updated