.owl file (e.g. dbo.owl).
.owl file. In the “Active ontology” tab, in the “Ontology metrics” panel, you should see statistics about DBO (~1400 classes, ~800 object properties and ~1100 datatype properties, among others).
As shown in this panel, OWL definitions are called axioms. Axioms can apply to classes or properties. In OWL, a difference is made between object properties and data properties. Object properties are properties with a URI as value; data properties are properties with a literal as value. For instance, in the following two triples, op is an object property and dp is a data property: <s> <op> <o> ; <dp> "o" .
.ttl file.
dbo:University. After clicking on the correct entity, you should see information about this class in the right panels ("Annotations", "Description").
dbo:University is aligned with concepts from Wikidata and schema.org. Give the URI of these external concepts. Is the Wikidata concept ontologically equivalent to the schema.org concept?
rdfs:label) and provenance data (prov:wasDerivedFrom). Give the Turtle equivalent of these key/value pairs. You can look up the answer in the .ttl file you previously created or click on the rightmost button next to the key/value pair (dbo:University class was automatically generated from a Wikipedia template (University infobox). The mapping, documented here, specifies that universities can have a president. With the "Search..." button, navigate to the corresponding DBO property. Is it an object or a data property?
dbo:president, you should see that the range of this property is dbo:Person. Give the Turtle equivalent of this definition.
dbo:University. Why is the class not appearing as domain of dbo:president?
OWL is expressive enough to capture UML class diagrams and entity-relationship (ER) diagrams. In this part, you will translate an ER diagram to OWL. If you have doubts about the different OWL constructs, refer to the OWL 2 primer document.
subOrganizationOf and subOrganization are in fact the same relationship (the diagram has a typo). Define them as equivalent properties in OWL.
*DegreeFrom have the same structure: their range is a university. Add a new super-property in your ontology to properly capture this structure.