-
Notifications
You must be signed in to change notification settings - Fork 0
/
collection.ttl
33 lines (27 loc) · 2.03 KB
/
collection.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@prefix : <http://emmo.info/datamodel#> .
@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 emmo: <http://emmo.info/emmo#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <http://emmo.info/datamodel/collection> .
<http://emmo.info/datamodel/collection> rdf:type owl:Ontology ;
owl:versionIRI <http://emmo.info/datamodel/0.0.2/collection> ;
owl:imports <http://emmo.info/datamodel/0.0.2/transaction> ;
dcterms:abstract "An extension of the metamodel adding collections."@en ;
dcterms:creator "Jesper Friis, SINTEF"@en ,
"Thomas Hagelien, SINTEF"@en ;
dcterms:license "https://creativecommons.org/licenses/by/4.0/legalcode" ;
dcterms:title "Collection module of the datamodel ontology"@en .
#################################################################
# Classes
#################################################################
### http://emmo.info/datamodel#Collection
:Collection rdf:type owl:Class ;
rdfs:subClassOf :Instance ;
rdfs:comment """A collection is a special type of instance that contains a set of (references to) other instances and relations between these instances.
In SOFT and DLite, collections are implemented as instances with a list of relations (rdf subject-predicate-object triples) as their only property. The member instances are referred to with a label that is local to the collection."""@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Collection"@en .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi