ArtResearch / artresearch.net

ArtResearch ResearchSpace application hosted at https://artresearch.net
5 stars 1 forks source link

Links to obsolete AAT/ULAN concepts #513

Open aindlq opened 7 months ago

aindlq commented 7 months ago

~ 300 links to obsolete/deprecated AAT/ULAN concepts. Correct concepts can be found by following dcterms:isReplacedBy from the obsolete ones.

Mostly generated by https://github.com/ArtResearch/InstanceMatching

Query to get all obsolete concepts:

PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
SELECT * {
  GRAPH ?g {
    ?s owl:sameAs ?o .
  }
  ?o a <http://vocab.getty.edu/ontology#ObsoleteSubject> .
}