Skip to content

Commit

Permalink
replaces namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mariapoveda committed Jun 12, 2019
1 parent 7796868 commit 8fb0360
Showing 1 changed file with 20 additions and 14 deletions.
34 changes: 20 additions & 14 deletions ontology/core.ttl
@@ -1,3 +1,4 @@
@prefix : <http://www.semanticweb.org/owl/owlapi/turtle#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
Expand Down Expand Up @@ -72,7 +73,6 @@ vann:preferredNamespaceUri rdf:type owl:AnnotationProperty .
owl:cardinality 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 .

Expand All @@ -86,7 +86,7 @@ owl:cardinality rdf:type owl:AnnotationProperty .
rdfs:domain <http://www.w3.org/2004/02/skos/core#Concept> ;
rdfs:range <http://babelnet.org/model/babelnet#BabelGloss> ;
rdfs:comment "Points to the synset definition."@en ;
rdfs:label "Synset definition"@en .
rdfs:label "synset definition"@en .


### http://lemon-model.net/lemon#canonicalForm
Expand Down Expand Up @@ -256,57 +256,65 @@ owl:cardinality rdf:type owl:AnnotationProperty .
rdfs:domain :LinguisticExpression ;
rdfs:range :LinguisticExpressionItem ;
rdfs:comment "Denotes a component of a linguisti expression"@en ;
rdfs:label "Decomposition"@en .
rdfs:label "decomposition"@en .


### https://w3id.org/def/easytv#hasForm
:hasForm rdf:type owl:ObjectProperty ;
rdfs:domain :LinguisticExpressionItem ;
rdfs:range <http://lemon-model.net/lemon#Form> .
rdfs:range <http://lemon-model.net/lemon#Form> ;
rdfs:label "has form"@en .


### https://w3id.org/def/easytv#hasRealization
:hasRealization rdf:type owl:ObjectProperty .
:hasRealization rdf:type owl:ObjectProperty ;
rdfs:label "has realization"@en .


### https://w3id.org/def/easytv#isComponentOf
:isComponentOf rdf:type owl:ObjectProperty ;
owl:inverseOf :isComponsedBy ;
rdfs:domain :VideoFrame ;
rdfs:range :Video .
rdfs:range :Video ;
rdfs:label "is component of"@en .


### https://w3id.org/def/easytv#isComponsedBy
:isComponsedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Video ;
rdfs:range :VideoFrame .
rdfs:range :VideoFrame ;
rdfs:label "is composed by"@en .


### https://w3id.org/def/easytv#nextItem
:nextItem rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :LinguisticExpressionItem ;
rdfs:range :LinguisticExpressionItem .
rdfs:range :LinguisticExpressionItem ;
rdfs:label "next item"@en .


### https://w3id.org/def/easytv#relates
:relates rdf:type owl:ObjectProperty ;
rdfs:domain :Translation ;
rdfs:range :LinguisticExpression ;
rdfs:comment "Link to the linguistic expressions involved in a translation relationship. Model inspired by the Lemon Ontolex vartrans module (https://www.w3.org/2016/05/ontolex/#variation-translation-vartrans)"@en .
rdfs:comment "Link to the linguistic expressions involved in a translation relationship. Model inspired by the Lemon Ontolex vartrans module (https://www.w3.org/2016/05/ontolex/#variation-translation-vartrans)"@en ;
rdfs:label "relates"@en .


### https://w3id.org/def/easytv#signForm
:signForm rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://lemon-model.net/lemon#lexicalForm> ;
rdfs:domain <http://lemon-model.net/lemon#LexicalEntry> ;
rdfs:range :SignedForm .
rdfs:range :SignedForm ;
rdfs:label "sign form"@en .


### https://w3id.org/def/easytv#signedRep
:signedRep rdf:type owl:ObjectProperty ;
rdfs:domain :SignedForm ;
rdfs:range :Video .
rdfs:range :Video ;
rdfs:label "signed representation"@en .


#################################################################
Expand Down Expand Up @@ -354,7 +362,7 @@ owl:cardinality rdf:type owl:AnnotationProperty .
rdfs:domain :Translation ;
rdfs:range xsd:float ;
rdfs:comment "Percentage of correctness of a translation."@en ;
rdfs:label "Confidence"@en .
rdfs:label "confidence"@en .


### https://w3id.org/def/easytv#expertSuggestion
Expand Down Expand Up @@ -579,6 +587,4 @@ owl:cardinality rdf:type owl:AnnotationProperty .
rdfs:label "Written linguistic expression"@en .




### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

0 comments on commit 8fb0360

Please sign in to comment.