Academic Meta Tool Ontology

Authors: Florian Thiery (i3mainz, RGZM) & Martin Unold (i3mainz)

Version: Leonard Edition

Date: 2018-01-19

Abstract: The Academic Meta Tool ontology / datamodel.

Copyright: This work is licensed under a Creative Commons Attribution 4.0 International License.

About this Document: This document is based on the GEOJSON-LD VOCABULARY by Sean Gillies (Mapbox) with a CC BY 4.0 license.

Vocabulary

The Academic Meta Tool Ontology is based on the AMT Vocabulary.

Have a deeper look in an interactive visualisation using WebVOWL.

Visualisation of a AMT Ontology

Have a deeper look in an interactive visualisation using visjs.

The Ontology

Instance Definition

amt:Concept


Model

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
          @prefix example: <http://example.com/> .
          example:c rdf:type amt:Concept .
          example:c rdfs:label rdfs:Literal .
          example:c amt:placeholder rdfs:Literal .
    

Example Class

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
          @prefix example: <http://example.com/> .
          example:Person rdf:type amt:Concept .
          example:Person rdfs:label "Person" .
          example:Person amt:placeholder "Nachname, Vorname" .
    

Example Individual

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
          @prefix example: <http://example.com/> .
          example:Leonard amt:instanceOf amt:Concept .
          example:Leonard rdfs:label "Leonard Hofstadter" .
    

amt:Role


Model

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
          @prefix example: <http://example.com/> .
          example:r rdf:type amt:Role .
          example:r rdfs:label rdfs:Literal .
          example:r rdfs:domain amt:Concept .
          example:r rdfs:range amt:Concept .
    

Example

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
          @prefix example: <http://example.com/> .
          example:connectedWith rdf:type amt:Role .
          example:connectedWith rdfs:label "is connected with" .
          example:connectedWith rdfs:domain example:Person .
          example:connectedWith rdfs:range example:Person .
    

amt:RoleChainAxiom


Model

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          @prefix example: <http://example.com/> .
          amt:rca rdf:type amt:RoleChainAxiom .
          amt:rca amt:antecedent1 amt:Role .
          amt:rca amt:antecedent2 amt:Role .
          amt:rca amt:consequent amt:Role .
          amt:rca amt:logic amt:Logic .
    

Example

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          @prefix example: <http://example.com/> .
          example:RCA rdf:type amt:RoleChainAxiom .
          example:RCA amt:antecedent1 example:connectedWith .
          example:RCA amt:antecedent2 example:connectedWith .
          example:RCA amt:consequent example:connectedWith .
          example:RCA amt:logic amt:ProductLogic .
    

amt:InverseAxiom


Model

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          @prefix example: <http://example.com/> .
          amt:ia rdf:type amt:InverseAxiom .
          amt:ia amt:antecedent amt:Role .
          amt:ia amt:inverse amt:Role .
    

Example

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          @prefix example: <http://example.com/> .
          example:IA rdf:type amt:InverseAxiom .
          example:IA amt:antecedent example:interestOf .
          example:IA amt:inverse example:interestedIn .
    

amt:DisjointAxiom


Model

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          @prefix example: <http://example.com/> .
          amt:da rdf:type amt:DisjointAxiom .
          amt:da amt:role1 amt:Role .
          amt:da amt:role2 amt:Role .
    

Example

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          @prefix example: <http://example.com/> .
          example:DA rdf:type amt:DisjointAxiom .
          example:DA amt:role1 example:istEinMusikinstrument .
          example:DA amt:role1 example:istEinBuch .
    

amt:SelfDisjointAxiom


Model

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          @prefix example: <http://example.com/> .
          amt:sda rdf:type amt:SelfDisjointAxiom .
          amt:sda amt:role amt:Role .
    

Example

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          @prefix example: <http://example.com/> .
          example:SDA rdf:type amt:SelfDisjointAxiom .
          example:SDA amt:role example:superInterestOf .
    

Quadruple


Model

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          _:123 rdf:subject amt:Concept .
          _:123 rdf:predicate amt:Role .
          _:123 rdf:object amt:Concept .
          _:123 amt:weight rdfs:Literal .
    

Example Quadruple

        
          @prefix amt: <http://academic-meta-tool.xyz/vocab#> .
          @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          _:123 rdf:subject example:Person .
          _:123 rdf:predicate example:connectedWith .
          _:123 rdf:object example:Person .
          _:123 amt:weight "0.80" .