RadioChannel.rq 588 B

12345678910111213141516171819202122232425262728
  1. # For web radio streams we use the schema ontology
  2. PREFIX : <undefined:>
  3. PREFIX dokk: <https://vocabulary.dokk.org/>
  4. PREFIX graph: <graphdata:name:>
  5. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  6. PREFIX schema: <http://schema.org/>
  7. WITH graph:dokk
  8. INSERT
  9. {
  10. ?s a schema:RadioChannel ;
  11. schema:name ?name ;
  12. schema:image ?favicon ;
  13. schema:url ?url ;
  14. rdfs:seeAlso ?homepage .
  15. }
  16. WHERE
  17. {
  18. GRAPH graph:radio-browser
  19. {
  20. ?s :name ?name ;
  21. :favicon ?favicon ;
  22. :url ?url ;
  23. :homepage ?homepage .
  24. }
  25. }