@prefix potax: <http://base.uni-ak.ac.at/portfolio/taxonomy/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

potax:collection_architecture
  skos:prefLabel "Collection architecture"@en, "Sammlung Architektur"@de ;
  a skos:Collection ;
  skos:member potax:building_complex .

potax:building_complex
  owl:sameAs <http://vocab.getty.edu/aat/300000202> ;
  skos:topConceptOf potax:portfolio_taxonomy ;
  skos:inScheme potax:portfolio_taxonomy ;
  a skos:Concept ;
  skos:prefLabel "Gebäudekomplex"@de, "building complex"@en .

potax:portfolio_taxonomy
  skos:prefLabel "Portfolio Taxonomy"@en, "Portfolio Taxonomie"@de ;
  a skos:ConceptScheme ;
  skos:hasTopConcept potax:building_complex .

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

skos:prefLabel
  rdfs:subPropertyOf rdfs:label ;
  skos:definition "The preferred lexical label for a resource, in a given language."@en ;
  rdfs:comment """skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise
      disjoint properties."""@en, """skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise
      disjoint properties."""@en, "The range of skos:prefLabel is the class of RDF plain literals."@en, "A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag."@en ;
  rdfs:label "preferred label"@en .

rdf:type
  rdfs:comment "The subject is an instance of a class." ;
  rdfs:label "type" .

owl:sameAs
  rdfs:comment "The property that determines that two given individuals are equal." ;
  rdfs:label "sameAs" .

skos:inScheme
  skos:definition "Relates a resource (for example a concept) to a concept scheme in which it is included."@en ;
  rdfs:label "is in scheme"@en .

skos:topConceptOf
  rdfs:subPropertyOf skos:inScheme ;
  skos:definition "Relates a concept to the concept scheme that it is a top level concept of."@en ;
  rdfs:label "is top concept in scheme"@en .

