@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" .