# 외부 링크 모음

_이 페이지에 자료는 공개된 링크에서 누구나 쉽게 얻을 수 있는 자료를 스터디 모임의 기준에서 분류한 내용이며 컨텐츠의 저작권과 권리는 링크의 원 저작자에게 있습니다._

- [SPARQL in 11 minutes](https://youtu.be/FvGndkpa4K0?si=TD64CSj3rvsfqDPW)

```
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dctypes: <http://purl.org/dc/dcmitype/> .
@prefix youtube: <http://slashpage.com/zigzag/youtube/> .

youtube:video a dctypes:MovingImage ;
    rdfs:label "SPARQL in 11 minutes" ;
    dc:title "SPARQL in 11 minutes" ;
    dc:description "An introduction to the W3C query language for RDF" ;
    dc:creator "bobdc" ;
    dc:subject "SPARQL, RDF" ;
    dc:date "2015-05-04T00:00:00.000"^^xsd:dateTime ;
    dc:language "en" ;
    dc:format "video" ;
    foaf:primaryTopic youtube:SPARQL ;
    dc:type "YouTube Video" ;
    dc:identifier "https://youtu.be/FvGndkpa4K0?si=TD64CSj3rvsfqDPW" ;
    dc:duration "PT11M"^^xsd:duration .

# 컨텐츠에서 나오는 term을 따로 정리하는게 좋을 것 같으나 ...
youtube:SPARQL a rdfs:Class ;
    rdfs:label "SPARQL" ;
    rdfs:comment "W3C 표준의 RDF 쿼리 언어" .

youtube:RDF a rdfs:Class ;
    rdfs:label "RDF" ;
    rdfs:comment "Resource Description Framework" .

```

For the site tree, see the [root Markdown](https://slashpage.com/zigzag.md).
