Get Started#

This ontology is used mostly for generating linked data and complying with the FAIR data guidelines (although it can also do much more!). It provides machine-readable persistent identifiers for terms and semantic relations that help describe what things are and how they are related to each other.

An easy way to get started is to use the ontology vocabulary to create semantic linked data using JSON-LD files. We recommend you follow this step-by-step guide to understand the background and make your first piece of linked data in just 5 easy steps!

Step 1: Install Protégé#

Protégé is a graphical ontology editor developed by Stanford University. It is free and one of the most widely used tools for ontology development. You can read more about it in the tools section.

Step 2: Download the pre-inferred version of the ontology#

Ontologies within the EMMO universe import many different modules to try to re-use knowledge and terms from other domains. We then run a tool called a “reasoner” to make logical inferrences about how terms from different domains are connected, and lump them into one ontology.

We make it easy for you by providing a pre-inferred version in advance. You can download it from the GitHub repository or access it at anytime using this URL:

https://raw.githubusercontent.com/emmo-repo/domain-characterisation-methodology/master/chameo-inferred.ttl

Step 3: Open and explore the ontology file in Protégé#

Within Protégé, you can explore the class hierarchy that contains all the “things” that are included in the ontology, as well as the object properties that describe how those things are related to each other. There are a few things to notice:

  1. Each item has a unique, persistent, and machine readable identifier called an IRI. An IRI (Internationalized Reference Identifier) is the official identifier for that term. It is the anchor to which all other information is linked. In the EMMO universe, IRIs usually contain some Universal Unique Identifier (UUID) character sequence that ensures their uniqueness. For example, the IRI for CharacterisationMethod is:

    https://w3id.org/emmo/domain/characterisation-methodology/chameo#CharacterisationProcedure

    Clicking the link will take you to human-readable documentation. But if the request comes from an application or if you add a trailing slash / character to the IRI, then it will take you to a machine-readable turtle file.

    As you can see, the use of UUIDs in the IRIs make it difficult for humans to read and understand. But fear not! Each term also comes with a set of human readable labels called prefLabel and altLabel.

  2. Each item has one human-readable preferred label and can have many alternative labels. The EMMO universe uses the SKOS terminology for labeling items. The main label for the term is called its prefLabel (short for preferred label) and is often expressed in the source files as skos:prefLabel. But sometimes, there can be multiple labels for the same thing. In that case we use skos:altLabel to list possible alternative labels.

  3. Each item has an elucidation, describing the meaning of the term. The elucidation is a short human-readable text that describes the conceptualization for the term. It should give some insight into what the term means and how it can be used.

  4. Many terms have links to other sources of information. For many terms, there are other authoritative sources of information available that can provide more context about its meaning. To account for that, we include annotations that point to places like the IEC Vocabulary, IUPAC Goldbook, DBpedia, WikiData, or Wikipedia where humans or machines can go to retrieve more information.

And that’s it! You did it! Check out our examples to see some more advanced topics.

We’ve provided some recommendations for tools and examples that you are free to re-use or modify for your own needs.

Tools

The right tool for the right job. Here are some tools that can help you work with ontologies, knowledge graphs, and linked data.

Resources

Here are some other resources and best practices for creating linked data on the web.

Examples

Here are some examples that demonstrate basic usage of the ontology