@prefix :      <#> .
@prefix dct:   <http://purl.org/dc/terms/> .
@prefix hydra: <http://www.w3.org/ns/hydra/core#> .
@prefix skos:  <http://www.w3.org/2004/02/skos/core#> .

<#SearchEngine>
  a skos:Concept ;
  skos:prefLabel "Search Engines" .

:ddg
  a hydra:IriTemplate ;
  dct:title "DuckDuckGo" ;
  hydra:template "https://duckduckgo.com/?q={query}" ;
  dct:subject <#SearchEngine> .

:google
  a hydra:IriTemplate ;
  dct:title "Google" ;
  hydra:template "https://www.google.com/search?q={query}" ;
  dct:subject <#SearchEngine> .

:wp
  a hydra:IriTemplate ;
  dct:title "Wikipedia" ;
  hydra:template "https://en.wikipedia.org/w/index.php?search={query}" ;
  dct:subject <#SearchEngine> .

:prefix
  a hydra:IriTemplate ;
  dct:title "prefix.cc" ;
  hydra:template "https://prefix.cc/{query}" ;
  dct:subject <#SearchEngine> .

:lov
  a hydra:IriTemplate ;
  dct:title "LOV" ;
  hydra:template "https://lov.linkeddata.es/dataset/lov/terms?q={query}" ;
  dct:subject <#SearchEngine> .

:ety
  a hydra:IriTemplate ;
  dct:title "Etymology" ;
  hydra:template "https://www.etymonline.com/search?q={query}" ;
  dct:subject <#SearchEngine> .

:yt
  a hydra:IriTemplate ;
  dct:title "YouTube" ;
  hydra:template "https://www.youtube.com/results?search_query={query}" ;
  dct:subject <#SearchEngine> .

:archive
  a hydra:IriTemplate ;
  dct:title "Wayback" ;
  hydra:template "https://web.archive.org/web/*/{query}" ;
  dct:subject <#SearchEngine> .

:dbpedia
  a hydra:IriTemplate ;
  dct:title "DBpedia" ;
  hydra:template "https://dbpedia.org/search?query={query}" ;
  dct:subject <#SearchEngine> .
