@prefix : <https://meta.linked.archi/simple-example#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <https://meta.linked.archi/simple-example#> .

<https://meta.linked.archi/simple-example#> rdf:type owl:Ontology ;
                                             <http://creativecommons.org/ns#license> "http://creativecommons.org/licenses/by/4.0/" ;
                                             <http://purl.org/dc/elements/1.1/description> "Simplest possible Linked.Archi metamodel example."@en ;
                                             <http://purl.org/dc/elements/1.1/title> "Simple Example Ontology"@en ;
                                             owl:versionInfo "0.1.0"@en .

#################################################################
#    Annotation properties
#################################################################

###  http://creativecommons.org/ns#license
<http://creativecommons.org/ns#license> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/elements/1.1/description
<http://purl.org/dc/elements/1.1/description> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/elements/1.1/title
<http://purl.org/dc/elements/1.1/title> rdf:type owl:AnnotationProperty .


###  http://www.w3.org/2004/02/skos/core#definition
<http://www.w3.org/2004/02/skos/core#definition> rdf:type owl:AnnotationProperty .


###  http://www.w3.org/2004/02/skos/core#prefLabel
<http://www.w3.org/2004/02/skos/core#prefLabel> rdf:type owl:AnnotationProperty .


###  https://meta.linked.archi/core#domainIncludes
<https://meta.linked.archi/core#domainIncludes> rdf:type owl:AnnotationProperty .


###  https://meta.linked.archi/core#rangeIncludes
<https://meta.linked.archi/core#rangeIncludes> rdf:type owl:AnnotationProperty .


#################################################################
#    Object Properties
#################################################################

###  https://meta.linked.archi/simple-example#invokes
:invokes rdf:type owl:ObjectProperty ;
         <http://www.w3.org/2004/02/skos/core#definition> "An invocation relationship between elements."@en ;
         <http://www.w3.org/2004/02/skos/core#prefLabel> "Invokes"@en ;
         <https://meta.linked.archi/core#domainIncludes> :ExampleElement ;
         <https://meta.linked.archi/core#rangeIncludes> :ExampleElement .


#################################################################
#    Classes
#################################################################

###  https://meta.linked.archi/core#Element
<https://meta.linked.archi/core#Element> rdf:type owl:Class .


###  https://meta.linked.archi/simple-example#ExampleElement
:ExampleElement rdf:type owl:Class ;
                rdfs:subClassOf <https://meta.linked.archi/core#Element> ;
                <http://www.w3.org/2004/02/skos/core#definition> "A simple example element."@en ;
                <http://www.w3.org/2004/02/skos/core#prefLabel> "Example Element"@en .


###  Generated by the OWL API (version 5.1.18) https://github.com/owlcs/owlapi/
