@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
@prefix dcatlds_operatorstaxonomy: <http://www.nlpli.gr/dcat-lds#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

skos:Concept a owl:Class .
odrl:gt
  skos:topConceptOf dcatlds_operatorstaxonomy:OperatorsTaxonomy ;
  skos:definition "Indicating that a given value is greater than the right operand of the Constraint."@en ;
  rdfs:isDefinedBy odrl: ;
  skos:prefLabel "Greater than"@en ;
  skos:inScheme dcatlds_operatorstaxonomy:OperatorsTaxonomy ;
  rdfs:label "Greater than"@en ;
  a odrl:Operator, owl:NamedIndividual, skos:Concept .

owl:NamedIndividual
  rdfs:label "Named individual"@en ;
  a owl:Class .

odrl:Operator
  rdfs:label "Operator"@en ;
  a rdfs:Class, owl:Class, skos:Concept .

dcatlds_operatorstaxonomy:OperatorsTaxonomy
  rdfs:label "Operators Taxonomy"@en ;
  skos:prefLabel "Operators Taxonomy"@en ;
  a owl:NamedIndividual, skos:ConceptScheme ;
  skos:hasTopConcept odrl:gt .

