Subject(Resource) - 주어(자원) | Shakespeare |
---|---|
Predicate(Property) - 술어(속성) | Create |
Object(Value) – 목적어(속성값) | Hamlet |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX foaf: <http://xmlns.com/foaf/0.1>
PREFIX keris: <http://data.riss.kr/ontology/>
PREFIX riss: <http://data.riss.kr/resource/>
SELECT ?k WHERE {
?s a <http://xmlns.com/foaf/0.1/Agent>.
?s <http://purl.org/dc/elements/1.1/title> "고은"^^xsd:string.
?s <http://data.riss.kr/ontology/createBook> ?objectproperty.
?objectproperty <http://purl.org/dc/elements/1.1/title> ?k.
}