Table of Contents
1. SPARQL By Example
2. Why SPARQL?
3. Assumptions
4. Structure of a SPARQL Query
5. SPARQL Architecture & Endpoints
6. SPARQL Landscape
7. Dataset: Friend of a Friend (FOAF)
8. Query #1: SELECT, variables, and a triple pattern
9. Running Our First Query
10. Exercise #1: Give me all the properties about Apollo 7
11. Solution #1: Give me all the properties about Apollo 7
12. Query #2: Multiple triple patterns: property retrieval
13. Exercise #2: URLs for Apollo 7
14. Solution #2: URLs for Apollo 7
15. Query #3: Multiple triple patterns: traversing a graph
16. Exercise #3: What was the point of Apollo 7?
17. Solution #3: What was the point of Apollo 7?
18. Dataset: DBPedia
19. Query #4: Exploring DBPedia
20. Exercise #4: Find 50 Spacecraft
21. Solution #4: Find 50 Spacecraft
22. Query #5: Basic SPARQL filters
23. Exercise #5: Find launches in October 1968
24. Solution #5: Find launches in October 1968
25. SPARQL built-in filter functions
26. Query #6: Filters for picking among translations
27. Dataset: Jamendo
28. Query #7a: Finding artists' info - the wrong way
29. Query #7b: Finding artists' info - the right way
30. Dataset: HCLS Knowledge Base at DERI Galway
31. Query #8: Querying alternatives
32. RDF Datasets
33. RDF Datasets
34. Dataset: semanticweb.org
35. Query #9: Querying named graphs
36. Query #10: Tranforming between vocabularies
37. Query #11: ASKing a question
38. Dataset: EDGAR Corporate Ownership Data
39. Query #12: Learning about a resource
40. What's new in SPARQL 1.1 Query?
41. Query #13: Projected Expressions
42. Dataset: UK Government Data
43. Query #14: Aggregates
44. Query #15a: Limit Per Resource Without Subqueries
45. Query #15b: Limit Per Resource With Subqueries
46. Query #16a: Negation In SPARQL 1.0
47. Query #16b: Negation In SPARQL 1.1 (Part 1)
48. Query #16c: Negation In SPARQL 1.1 (Part 2)
49. Query #17a: Finding Beers
50. Query #17b: Finding Beers, Revisited
51. Query #18: Federate Data From Two Endpoints
52. What else is new in SPARQL 1.1?
53. SPARQL 1.1 Update
54. SPARQL 1.1 Graph Store HTTP Protocol
55. SPARQL 1.1 Service Description
56. What's missing from SPARQL?
57. Query #19: SPARQL extension: free-text search
58. Acknowledgements
59. SPARQL Resources
60. Thanks!
61. Query #1: Expected Results
62. Query #2: Expected Results
63. Query #3: Expected Results
64. Query #4: Expected Results
65. Query #5: Expected Results
66. Query #6: Expected Results
67. Query #7a: Expected Results
68. Query #7b: Expected Results
69. Query #8: Expected Results
70. Query #9: Expected Results
71. Query #10: Expected Results
72. Query #11: Expected Results
73. Query #12: Expected Results
74. Query #13: Expected Results
75. Query #14: Expected Results
76. Query #15a: Expected Results
77. Query #15b: Expected Results
78. Query #16a: Expected Results
79. Query #16c: Expected Results
80. Query #17a: Expected Results
81. Query #17b: Expected Results
82. Query #18: Expected Results
83. Query #19: Expected Results
Cambridge Semantics logo

SPARQL By Example

A Tutorial

Lee Feigenbaum
VP Technology & Standards, Cambridge Semantics
Co-Chair, W3C SPARQL Working Group


Valid XHTML + RDFa

Why SPARQL?

SPARQL is the query language of the Semantic Web. It lets us:

Assumptions

Structure of a SPARQL Query

A SPARQL query comprises, in order:

# prefix declarations
PREFIX foo: <http://example.com/resources/>
...
# dataset definition
FROM ...
# result clause
SELECT ...
# query pattern
WHERE {
    ...
}
# query modifiers
ORDER BY ...

SPARQL Architecture & Endpoints

SPARQL Landscape

SPARQL 1.0 became a standard in January, 2008, and included:

SPARQL 1.1 is in-progress, and includes:

Dataset: Friend of a Friend (FOAF)

@prefix card: <http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#> .
@prefix foaf:  <http://xmlns.com/foaf/0.1/> .

card:i foaf:name
"Timothy Berners-Lee" .
<http://bblfish.net/people/henry/card#me> foaf:name "Henry Story" .
<http://www.cambridgesemantics.com/people/about/lee> foaf:name "Lee Feigenbaum" .
card:amy foaf:name "Amy
            van der Hiel" .

...

Query #1: SELECT, variables, and a triple pattern

In the graph http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf, find me all subjects (?person) and objects (?name) linked with the foaf:name predicate. Then return all the values of ?name. In other words, find all names mentioned in Tim Berners-Lee's FOAF file.
PREFIX foaf:  <http://xmlns.com/foaf/0.1/>
SELECT ?name
WHERE {
    ?person foaf:name ?name .
}
        
  • SPARQL variables start with a ? and can match any node (resource or literal) in the RDF dataset.
  • Triple patterns are just like triples, except that any of the parts of a triple can be replaced with a variable.
  • The SELECT result clause returns a table of variables and values that satisfy the query.
  • Dataset: http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf

Exercise #1: Give me all the properties about Apollo 7

Given:

Solution #1: Give me all the properties about Apollo 7

SELECT ?p ?o
{ 
  <http://nasa.dataincubator.org/spacecraft/1968-089A> ?p ?o
}

(query)

Query #2: Multiple triple patterns: property retrieval

Find me all the people in Tim Berners-Lee's FOAF file that have names and email addresses. Return each person's URI, name, and email address.
PREFIX foaf:  <http://xmlns.com/foaf/0.1/>
SELECT *
WHERE {
    ?person foaf:name ?name .
    ?person foaf:mbox ?email .
}
        
  • We can use multiple triple patterns to retrieve multiple properties about a particular resource
  • Shortcut: SELECT * selects all variables mentioned in the query
  • Dataset: http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf

Try it with ARQ, OpenLink's Virtuoso, or Redland's Rasqal. (Expected results.)

Exercise #2: URLs for Apollo 7

What URL does this database use for Apollo 7?
What is the (NASA) homepage for the mission?

Given the Talis endpoint:

Solution #2: URLs for Apollo 7

PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?craft ?homepage
{
  ?craft foaf:name "Apollo 7" .
  ?craft foaf:homepage ?homepage
}

(query)

Query #3: Multiple triple patterns: traversing a graph

Find me the homepage of anyone known by Tim Berners-Lee.
PREFIX foaf:  <http://xmlns.com/foaf/0.1/>
PREFIX card: <http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#>
SELECT ?homepage
FROM <http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf>
WHERE {
    card:i foaf:knows ?known .
    ?known foaf:homepage ?homepage .
}
        
  • The FROM keyword lets us specify the target graph in the query itself.
  • By using ?known as an object of one triple and the subject of another, we traverse multiple links in the graph.
    query diagram

Try it with ARQ, OpenLink's Virtuoso, or Redland's Rasqal. (Expected results.)

Exercise #3: What was the point of Apollo 7?

Given, the Talis endpoint:

Solution #3: What was the point of Apollo 7?

PREFIX space: <http://purl.org/net/schemas/space/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?disc ?label
{
  <http://nasa.dataincubator.org/spacecraft/1968-089A> space:discipline ?disc .
  ?disc rdfs:label ?label
}

(query)

Dataset: DBPedia

Query #4: Exploring DBPedia

Find me 50 example concepts in the DBPedia dataset.
SELECT DISTINCT ?concept
WHERE {
    ?s a ?concept .
} LIMIT 50
        
  • LIMIT is a solution modifier that limits the number of rows returned from a query. SPARQL has two other solution modifiers:
    • ORDER BY for sorting query solutions on the value of one or more variables
    • OFFSET, used in conjunction with LIMIT and ORDER BY to take a slice of a sorted solution set (e.g. for paging)
  • The SPARQL keyword a is a shortcut for the common predicate rdf:type, giving the class of a resource.
  • The DISTINCT modifier eliminates duplicate rows from the query results.

Try it with a DBPedia-specific SPARQL endpoint. (Expected results.)

Exercise #4: Find 50 Spacecraft

Given:

Solution #4: Find 50 Spacecraft

PREFIX space: <http://purl.org/net/schemas/space/>
SELECT ?craft
{
  ?craft a space:Spacecraft
}
LIMIT 50

(query)

Query #5: Basic SPARQL filters

Find me all landlocked countries with a population greater than 15 million.
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>        
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT ?country_name ?population
WHERE {
    ?country a type:LandlockedCountries ;
             rdfs:label ?country_name ;
             prop:populationEstimate ?population .
    FILTER (?population > 15000000) .
}
        
  • FILTER constraints use boolean conditions to filter out unwanted query results.
  • Shortcut: a semicolon (;) can be used to separate two triple patterns that share the same subject. (?country is the shared subject above.)
  • rdfs:label is a common predicate for giving a human-friendly label to a resource.
  • Note all the translated duplicates in the results. How can we deal with that?

Try it with one of DBPedia's SPARQL endpoint. (Expected results.)

Exercise #5: Find launches in October 1968

Given, the Talis endpoint:

Solution #5: Find launches in October 1968

PREFIX space: <http://purl.org/net/schemas/space/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT *
{ ?launch space:launched ?date
  FILTER (
    ?date > "1968-10-1"^^xsd:date &&
    ?date < "1968-10-30"^^xsd:date
  )
}

(query)

SPARQL built-in filter functions

Query #6: Filters for picking among translations

Find me all landlocked countries with a population greater than 15 million (revisited), with the highest population country first.
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT ?country_name ?population
WHERE {
    ?country a type:LandlockedCountries ;
             rdfs:label ?country_name ;
             prop:populationEstimate ?population .
    FILTER (?population > 15000000 &&
            langMatches(lang(?country_name), "EN")) .
} ORDER BY DESC(?population)
        
  • lang extracts a literal's language tag, if any
  • langMatches matches a language tag against a language range

Try it with a DBPedia-specific SPARQL endpoint. (Expected results.)

Dataset: Jamendo

Query #7a: Finding artists' info - the wrong way

Find all Jamendo artists along with their image, home page, and the location they're near.
PREFIX mo: <http://purl.org/ontology/mo/>
PREFIX foaf:  <http://xmlns.com/foaf/0.1/>
SELECT ?name ?img ?hp ?loc
WHERE {
  ?a a mo:MusicArtist ;
     foaf:name ?name ;
     foaf:img ?img ;
     foaf:homepage ?hp ;
     foaf:based_near ?loc .
}
        
  • Jamendo has information on about 3,500 artists.
  • Trying the query, though, we only get 2,667 results. What's wrong?

Try it with DBTune.org's Jamendo-specific SPARQL endpoint. Be sure to choose SPARQL rather than SeRQL. (Expected results.)

Query #7b: Finding artists' info - the right way

Find all Jamendo artists along with their image, home page, and the location they're near, if any.
PREFIX mo: <http://purl.org/ontology/mo/>
PREFIX foaf:  <http://xmlns.com/foaf/0.1/>
SELECT ?name ?img ?hp ?loc
WHERE {
  ?a a mo:MusicArtist ;
     foaf:name ?name .
  OPTIONAL { ?a foaf:img ?img }
  OPTIONAL { ?a foaf:homepage ?hp }
  OPTIONAL { ?a foaf:based_near ?loc }
}
        
  • Not every artist has an image, homepage, or location!
  • OPTIONAL tries to match a graph pattern, but doesn't fail the whole query if the optional match fails.
  • If an OPTIONAL pattern fails to match for a particular solution, any variables in that pattern remain unbound (no value) for that solution.

Try it with DBTune.org's Jamendo-specific SPARQL endpoint. Be sure to choose SPARQL rather than SeRQL. (Expected results.)

Dataset: HCLS Knowledge Base at DERI Galway

Query #8: Querying alternatives

Find me the cellular processes that are either integral to or a refinement of signal transduction.
PREFIX go: <http://purl.org/obo/owl/GO#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX obo: <http://www.obofoundry.org/ro/ro.owl#>
SELECT DISTINCT ?label ?process
WHERE {
  { ?process obo:part_of go:GO_0007165 } # integral to
UNION
  { ?process rdfs:subClassOf go:GO_0007165 } # refinement of
  ?process rdfs:label ?label
}
  • The UNION keyword forms a disjunction of two graph patterns. Solutions to both sides of the UNION are included in the results.
  • The URI go:GO_0007165 is the identifier for signal transduction in the Gene Ontology
  • N.B. Cell-surface-receptor-linked signal transduction is a refinement (subclass) of signal transduction

Try it with the neurocommons SPARQL endpoint. (Expected results.)

RDF Datasets

RDF Datasets

image of multiple interacting RDF graphs

Dataset: semanticweb.org

Query #9: Querying named graphs

Find me people who have been involved with at least three ISWC or ESWC conference events.
SELECT DISTINCT ?name
WHERE {
    ?person foaf:name ?name .
    GRAPH ?g1 { ?person a foaf:Person }
    GRAPH ?g2 { ?person a foaf:Person }
    GRAPH ?g3 { ?person a foaf:Person }
    FILTER(?g1 != ?g2 && ?g1 != ?g3 && ?g2 != ?g3) .
}     
        
  • The GRAPH ?g construct allows a pattern to match against one of the named graphs in the RDF dataset. The URI of the matching graph is bound to ?g (or whatever variable was actually used).
  • N.B. The FILTER assures that we're finding a person who occurs in three distinct graphs.
  • N.B. The Web interface we use for this SPARQL query defines the foaf: prefix, which is why we omit it here.

Try it with the data.semanticweb.org SPARQL endpoint. (Expected results.)

Query #10: Tranforming between vocabularies

Convert FOAF data to VCard data.
PREFIX vCard: <http://www.w3.org/2001/vcard-rdf/3.0#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
CONSTRUCT { 
  ?X vCard:FN ?name .
  ?X vCard:URL ?url .
  ?X vCard:TITLE ?title .
}FROM <http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf>
WHERE { 
  OPTIONAL { ?X foaf:name ?name . FILTER isLiteral(?name) . }
  OPTIONAL { ?X foaf:homepage ?url . FILTER isURI(?url) . }
  OPTIONAL { ?X foaf:title ?title . FILTER isLiteral(?title) . }
}
        
  • CONSTRUCT is an alternative SPARQL result clause to SELECT. Instead of returning a table of result values, CONSTRUCT returns an RDF graph.
  • The result RDF graph is created by taking the results of the equivalent SELECT query and filling in the values of variables that occur in the CONSTRUCT template.
  • Triples are not created in the result graph for template patterns that involve an unbound variable.

Try it with ARQ or OpenLink's Virtuoso. (Expected results.)

Query #11: ASKing a question

Is the Amazon river longer than the Nile River?
PREFIX prop: <http://dbpedia.org/property/>
ASK
{
  <http://dbpedia.org/resource/Amazon_River> prop:length ?amazon .
  <http://dbpedia.org/resource/Nile> prop:length ?nile .
  FILTER(?amazon > ?nile) .
}       
        
  • The ASK result clause simply returns true or false depending on whether or not the query pattern has any matches in the dataset.
  • As with SELECT queries, the boolean result is (by default) encoded in an SPARQL Results Format XML document.
  • Shortcut: the WHERE keyword is optional--not only in ASK queries but in all SPARQL queries.

Try it with the Virtuoso DBPedia SPARQL endpoint. (Expected results. - or are they??)

Dataset: EDGAR Corporate Ownership Data

Query #12: Learning about a resource

Tell me whatever you'd like to tell me about the Ford Motor Company.
PREFIX foaf:  <http://xmlns.com/foaf/0.1/>
DESCRIBE ?ford WHERE {
  ?ford foaf:name "FORD MOTOR CO" .
}
        
  • The DESCRIBE query result clause allows the server to return whatever RDF it wants that describes the given resource(s).
  • Because the server is free to interpret DESCRIBE as it sees fit, DESCRIBE queries are not interoperable.
  • Common implementations include concise-bounded descriptions, named graphs, minimum self-contained graphs, and more.

Note: The EDGAR-specific SPARQL endpoint is not currently up. (Expected results.)

What's new in SPARQL 1.1 Query?

A new SPARQL WG was chartered in March 2009 to extend the SPARQL language and landscape. SPARQL 1.1 Query includes these extensions:

Query #13: Projected Expressions

How many neutrons does the most common isotope of each element have?
PREFIX :   <http://www.daml.org/2003/01/periodictable/PeriodicTable#>
SELECT ?element ?protons
(ROUND(?weight) - ?protons AS ?neutrons)
FROM <http://www.daml.org/2003/01/periodictable/PeriodicTable.owl>
WHERE {
  [] a :Element ;
    :atomicNumber ?protons ;
    :atomicWeight ?weight ;
    :name ?element .
} ORDER BY ?protons
  • Projected expressions allows for arbitrary expressions to be used for columns in a query's result set.
  • Projected expressions must be in parentheses and must be given an alias using the AS keyword.
  • Note: [] in a query acts as an unnamed variable.

Try it with sparql.org. (Expected results.)

Dataset: UK Government Data

Query #14: Aggregates

How many roads of each classification are there in the UK?
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX roads: <http://transport.data.gov.uk/def/traffic/>
SELECT ?cat
(COUNT(DISTINCT ?thing) AS ?roads)
WHERE {
   ?thing  a roads:Road ; roads:countPointRoadCategory ?cat .
}
GROUP BY ?cat
  • Aggregate queries post-process query results by dividing the solutions into groups, and then performing summary calculations on those groups.
  • As in SQL, the GROUP BY clause specifies the key variable(s) to use to partition the solutions into groups.
  • SPARQL 1.1 defines these aggregate functions: COUNT, MIN, MAX, SUM, AVG, GROUP_CONCAT, SAMPLE
  • SPARQL 1.1 also includes a HAVING clause to filter the results of the query after applying aggregates.

Try it with the data.gov.uk endpoint. Make sure to choose the Transport dataset. (Expected results.)

Query #15a: Limit Per Resource Without Subqueries

Retrieve the second page of names and emails of people in Tim Berners-Lee's FOAF file, given that each page has 10 people.
PREFIX foaf:  <http://xmlns.com/foaf/0.1/>
SELECT ?name ?email
FROM <http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf>
WHERE {
    ?person foaf:name ?name .
    OPTIONAL { ?person foaf:mbox ?email }
} ORDER BY ?name LIMIT 10 OFFSET 10

Query #15b: Limit Per Resource With Subqueries

Retrieve the second page of names and emails of people in Tim Berners-Lee's FOAF file, given that each page has 10 people.
PREFIX foaf:  <http://xmlns.com/foaf/0.1/>
SELECT ?name ?email
FROM <http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf>
WHERE {
    {      SELECT DISTINCT ?person ?name WHERE { 
        ?person foaf:name ?name 
      } ORDER BY ?name LIMIT 10 OFFSET 10    }
    OPTIONAL { ?person foaf:mbox ?email }
}

Query #16a: Negation In SPARQL 1.0

Find the person entries in Tim Berners-Lee's FOAF file that do not contain a URL for the person's FOAF file.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?name
FROM <http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf>
WHERE {
  ?person a foaf:Person ; foaf:name ?name .
 
OPTIONAL { ?person rdfs:seeAlso ?url }
  FILTER(!bound(?url))
}

Query #16b: Negation In SPARQL 1.1 (Part 1)

Find the person entries in Tim Berners-Lee's FOAF file that do not contain a URL for the person's FOAF file.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?name
FROM <http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf>
WHERE {
  ?person a foaf:Person ; foaf:name ?name .
 
MINUS { ?person rdfs:seeAlso ?url }
}

Query #16c: Negation In SPARQL 1.1 (Part 2)

Find the person entries in Tim Berners-Lee's FOAF file that do not contain a URL for the person's FOAF file.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?name
FROM <http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf>
WHERE {
  ?person a foaf:Person ; foaf:name ?name .
 
FILTER(NOT EXISTS { ?person rdfs:seeAlso ?url })
}

Query #17a: Finding Beers

Find all of the beers included in the beer ontology.
PREFIX beer: <http://www.w3.org/2011/12/beer.owl#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?beer
FROM <http://www.w3.org/2011/12/beer.owl>
WHERE {
   ?beer rdf:type beer:Beer .
}

Query #17b: Finding Beers, Revisited

Find all of the beers included in the beer ontology.
PREFIX beer: <http://www.w3.org/2011/12/beer.owl#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?beer
FROM <http://www.w3.org/2011/12/beer.owl>
WHERE {
   ?beer
rdf:type/rdfs:subClassOf* beer:Beer .
}

Query #18: Federate Data From Two Endpoints

Find the birth dates of all of the actors in Star Trek: The Motion Picture
PREFIX movie: <http://data.linkedmdb.org/resource/movie/>
PREFIX dbpedia: <http://dbpedia.org/ontology/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?actor_name ?birth_date
FROM <http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf> # placeholder graph
WHERE {
 
SERVICE <http://data.linkedmdb.org/sparql> {
    <http://data.linkedmdb.org/resource/film/675> movie:actor ?actor .
    ?actor movie:actor_name ?actor_name
  }
  SERVICE <http://dbpedia.org/sparql> {
    ?actor2 a dbpedia:Actor ; foaf:name ?actor_name_en ; dbpedia:birthDate ?birth_date .
    FILTER(STR(?actor_name_en) = ?actor_name)
  }
}

What else is new in SPARQL 1.1?

The new SPARQL WG is also extending the SPARQL landscape with:

SPARQL 1.1 Update

SPARQL 1.1 Update is a language for managing and updating RDF graphs.

SPARQL 1.1 Graph Store HTTP Protocol

The SPARQL 1.1 Graph Store HTTP Protocol defines how to use RESTful HTTP requests to affect an RDF graph store. Some examples:

SPARQL 1.1 Service Description

The SPARQL 1.1 Service Description defines a discovery mechanism and vocabulary for describing the capabilities and data available at a SPARQL endpoint.

What's missing from SPARQL?

Even with the ongoing SPARQL 1.1 work, there are several other pieces of the SPARQL landscape that are not yet standardized, including:
The W3C ESW wiki lists more SPARQL extensions.

Query #19: SPARQL extension: free-text search

Find me countries with 'Republic' in their name that were established before 1920.
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>        
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?lbl ?est
WHERE {
  ?country rdfs:label ?lbl .
  FILTER(bif:contains(?lbl, "Republic")) .
  ?country a type:Country108544813 ;
      prop:establishedDate ?est .
  FILTER(?est < "1920-01-01"^^xsd:date && langMatches(lang(?lbl), "EN")) .
}
        

Try it with the Virtuoso DBPedia SPARQL endpoint. (Expected results.)

Acknowledgements

The following people helped contribute queries, datasets, SPARQL endpoints, or other content used in this tutorial. Many thanks to all.

SPARQL Resources

Thanks!

If you have any questions, please email Lee Feigenbaum at lee@cambridgesemantics.com.

Query #1: Expected Results

(Back.)
name
"mc schraefel"
"John Klensin"
"Libby Miller"
"Henrik Nielsen"
"John Markoff"
"Edd Dumbill"
"Nicholas Gibbins"
"Daniel Krech"
"Coralie Mercier"
"Norman Walsh"
"Les Carr"
"Shinnyih Huang"
"Philippe Le Hégaret"
"Oshani Seneviratne"
"Joe Lambda"
"Lalana Kagal"
"Karl Dubost"
"Bijan Parsia"
"John Seely Brown"
"Robert Hoffmann"
"Henry Story"
"Kjetil Kjernsmo"
"Håkon Wium Lie"
"Eric Miller"
"Charles McCathieNevile"
"Ira Fuchs"
"Aaron Swartz"
"Ian Jacobs"
"Dave Beckett"
"Yolanda Gill"
"Dean Jackson"
"Nigel Shadbolt"
"Jim Hendler"
"Dan Connolly"
"Christoph Bussler"
"Susie Stephens"
"John Gage"
"Ivan Herman"
"Sean Palmer"
"Lee Feigenbaum"
"World Wide Web Consortium"
"Peter Szolovits"
"Danny Ayers"
"Ora Lassila"
"Daniel J Weitzner"
"Jennifer Golbeck"
"Timothy Berners-Lee"
"Kingsley Idehen"
"Tim Bray"
"Wendy Hall"
"Simon J. Hernandez"
"Amy van der Hiel"

Query #2: Expected Results

(Back.)
personnameemail
<http://www.w3.org/People/karl/karl-foaf.xrdf#me>"Karl Dubost"<mailto:karl@w3.org>
<http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#amy>"Amy van der Hiel"<mailto:amy@w3.org>
<http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#edd>"Edd Dumbill"<mailto:edd@xmlhack.com>
<http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#dj> "Dean Jackson"<mailto:dean@w3.org>
<http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#edd>"Edd Dumbill"<mailto:edd@usefulinc.com>
<http://www.aaronsw.com/about.xrdf#aaronsw>"Aaron Swartz"<mailto:me@aaronsw.com>
<http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#i>"Timothy Berners-Lee"<mailto:timbl@w3.org>
<http://www.w3.org/People/EM/contact#me>"Eric Miller"<mailto:em@w3.org>
<http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#edd>"Edd Dumbill"<mailto:edd@xml.com>
<http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#dj>"Dean Jackson"<mailto:dino@grorg.org>
<http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#libby> "Libby Miller"<mailto:libby.miller@bristol.ac.uk>
<http://www.w3.org/People/Connolly/#me>"Dan Connolly"<mailto:connolly@w3.org>

Query #3: Expected Results

(Back.)
homepage
<http://purl.org/net/eric/>
<http://www.mellon.org/about_foundation/staff/program-area-staff/irafuchs>
<http://www.johnseelybrown.com/>
<http://heddley.com/edd/>

Query #4: Expected Results

(Back.)
concept
http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
http://xmlns.com/foaf/0.1/Person
http://dbpedia.org/class/yago/Landmark108624891
http://dbpedia.org/class/Book
http://www.w3.org/2004/02/skos/core#Concept
http://dbpedia.org/class/yago/CoastalCities
http://dbpedia.org/class/yago/AmericanAbolitionists
http://dbpedia.org/class/yago/AssassinatedAmericanPoliticians
http://dbpedia.org/class/yago/AssassinatedUnitedStatesPresidents
http://dbpedia.org/class/yago/Duellists
http://dbpedia.org/class/yago/IllinoisLawyers
http://dbpedia.org/class/yago/IllinoisPoliticians
http://dbpedia.org/class/yago/IllinoisRepublicans
http://dbpedia.org/class/yago/PeopleFromColesCounty,Illinois
http://dbpedia.org/class/yago/PeopleFromSpringfield,Illinois
http://dbpedia.org/class/yago/AristotelianPhilosophers
http://dbpedia.org/class/yago/AncientGreekMathematicians
http://dbpedia.org/class/yago/AncientGreekPhysicists
http://dbpedia.org/class/yago/AncientGreekPhilosophers
http://dbpedia.org/class/yago/Cosmologists
http://dbpedia.org/class/yago/Empiricists
http://dbpedia.org/class/yago/GreekLogicians
http://dbpedia.org/class/yago/Meteorologists
http://dbpedia.org/class/yago/PeripateticPhilosophers
http://dbpedia.org/class/yago/Philosophers
http://dbpedia.org/class/yago/PhilosophersOfLanguage
http://dbpedia.org/class/yago/PhilosophersOfLaw
http://dbpedia.org/class/yago/PhilosophersOfMind
http://dbpedia.org/class/yago/PoliticalPhilosophers
http://dbpedia.org/class/yago/ActingTheorists
http://dbpedia.org/class/yago/RhetoricTheorists
http://dbpedia.org/class/yago/1996Films
http://dbpedia.org/class/yago/Catalan-languageFilms
http://dbpedia.org/class/yago/1986Books
http://dbpedia.org/class/yago/AmericanFilmDirectors
http://dbpedia.org/class/yago/ExpatriatesInTheUnitedStates
http://dbpedia.org/class/yago/AtheistPhilosophers
http://dbpedia.org/class/yago/AmericanNovels
http://dbpedia.org/class/yago/DystopianNovels
http://dbpedia.org/class/yago/LandlockedCountries
http://dbpedia.org/class/yago/MotileCells
http://dbpedia.org/class/yago/CharacterSets
http://dbpedia.org/class/yago/LatinAlphabetRepresentations
http://dbpedia.org/class/yago/PresentationLayerProtocols
http://dbpedia.org/class/yago/GreekGods
http://dbpedia.org/class/yago/RomanGods
http://dbpedia.org/class/yago/OracularGods
http://dbpedia.org/class/yago/HealthGods
http://dbpedia.org/class/yago/SolarGods
http://dbpedia.org/class/yago/ArtsGods

Query #5: Expected Results

(Back.)
country_namepopulation
Afghanistan31889923
Afganistán31889923
Afghanistan31889923
Afganistan31889923
Afghanistan31889923
Afghanistan31889923
アフガニスタン31889923
Afghanistan31889923
Afghanistan31889923
Afganistan31889923
Afeganistão31889923
Афганистан31889923
Afghanistan31889923
阿富汗31889923
Ethiopia75067000
Etiopía75067000
Äthiopien75067000
Etiopia75067000
Éthiopie75067000
Etiopia75067000
エチオピア75067000
Ethiopië75067000
Etiopia75067000
Etiopia75067000
Etiópia75067000
Эфиопия75067000
Etiopien75067000
埃塞俄比亚75067000
Kazakhstan15217711
Kazajistán15217711
Kasachstan15217711
Kazakstan15217711
Kazakhstan15217711
Kazakistan15217711
カザフスタン15217711
Kazachstan15217711
Kasakhstan15217711
Kazachstan15217711
Cazaquistão15217711
Казахстан15217711
Kazakstan15217711
哈萨克斯坦15217711
Nepal29519114
Nepal29519114
Nepal29519114
Nepal29519114
Népal29519114
Nepal29519114
ネパール29519114
Nepal29519114
Nepal29519114
Nepal29519114
Nepal29519114
Непал29519114
Nepal29519114
尼泊尔29519114
Uganda30900000
Uganda30900000
Uganda30900000
Uganda30900000
Ouganda30900000
Uganda30900000
ウガンダ30900000
Oeganda30900000
Uganda30900000
Uganda30900000
Uganda30900000
Уганда30900000
Uganda30900000
乌干达30900000
Uzbekistan27372000
Uzbekistán27372000
Usbekistan27372000
Uzbekistan27372000
Ouzbékistan27372000
Uzbekistan27372000
ウズベキスタン27372000
Oezbekistan27372000
Usbekistan27372000
Uzbekistan27372000
Uzbequistão27372000
Узбекистан27372000
Uzbekistan27372000
乌兹别克斯坦27372000

Query #6: Expected Results

(Back.)
country_namepopulation
Ethiopia75067000
Afghanistan31889923
Uganda30900000
Nepal29519114
Uzbekistan27372000
Kazakhstan15217711

Query #7a: Expected Results

(Back.)
nameimghploc
"Cicada"^^xsd:stringhttp://img.jamendo.com/artists/h/hattrickman.jpghttp://www.cicada.fr.sthttp://sws.geonames.org/3031359/
"Hace Soul"^^xsd:stringhttp://img.jamendo.com/artists/h/hace.soul.jpghttp://www.hacesoul.comhttp://sws.geonames.org/2510769/
"vincent j"^^xsd:stringhttp://img.jamendo.com/artists/v/vincentj.jpghttp://v.joudrier.free.fr/SiteVhttp://sws.geonames.org/3020781/
"NoU"^^xsd:stringhttp://img.jamendo.com/artists/n/nou.gifhttp://www.noumusic.behttp://sws.geonames.org/2802361/
"Margin of Safety"^^xsd:stringhttp://img.jamendo.com/artists/m/mos.jpghttp://wheresthestation.blogspot.com/http://sws.geonames.org/660013/
"Bobywan"^^xsd:stringhttp://img.jamendo.com/artists/b/bobywan.jpghttp://bobywan.over-blog.orghttp://sws.geonames.org/3923057/
"Les Clip's"^^xsd:stringhttp://img.jamendo.com/artists/l/les.clips.jpghttp://www.chez.com/theclips/http://sws.geonames.org/3023414/
"La Tumba"^^xsd:stringhttp://img.jamendo.com/artists/l/la.tumba.jpghttp://www.tumbalaye.comhttp://sws.geonames.org/2967196/
"King Dubby"^^xsd:stringhttp://img.jamendo.com/artists/k/king.dubby.jpghttp://kingdubby.hautetfort.com/http://sws.geonames.org/2996663/
"vavrek"^^xsd:stringhttp://img.jamendo.com/artists/v/vavrek.jpghttp://vavrek.comhttp://sws.geonames.org/6252001/
"Suerte"^^xsd:stringhttp://img.jamendo.com/artists/s/suerte.jpghttp://suerte.hautetfort.comhttp://sws.geonames.org/3036264/
"My Name Is Fantastik"^^xsd:stringhttp://img.jamendo.com/artists/m/my.name.is.fantastik.pnghttp://www.myspace.com/mynameisfantastikhttp://sws.geonames.org/3038049/
"KEPAY"^^xsd:stringhttp://img.jamendo.com/artists/k/kepay.jpghttp://www.kepay.nethttp://sws.geonames.org/2510769/
"t r y ^ d"^^xsd:stringhttp://img.jamendo.com/artists/t/tryad.jpghttp://tryad.org/http://sws.geonames.org/6252001/
"Buzzworkers"^^xsd:stringhttp://img.jamendo.com/artists/b/buzzworkers.jpghttp://www.buzzworkers.comhttp://sws.geonames.org/2802361/
"Mr Nuts"^^xsd:stringhttp://img.jamendo.com/artists/m/mr.nuts.jpghttp://www.mrnuts.nethttp://sws.geonames.org/2510769/
"Stian"^^xsd:stringhttp://img.jamendo.com/artists/s/stian.jpghttp://lignu.nohttp://sws.geonames.org/3133897/
"433 erOs"^^xsd:stringhttp://img.jamendo.com/artists/4/433.eros.jpghttp://users.skynet.be/fa869102/http://sws.geonames.org/2802361/
"Mael"^^xsd:stringhttp://img.jamendo.com/artists/m/mael.jpghttp://fr.audiofanzine.com/compos/titres/index,idmembre,170802.htmlhttp://sws.geonames.org/3018471/
"Haine Brigade"^^xsd:stringhttp://img.jamendo.com/artists/h/haine.brigade.jpghttp://hainebrigade.free.fr/index.htmhttp://sws.geonames.org/2987410/
"woc007"^^xsd:stringhttp://img.jamendo.com/artists/w/woc007.jpghttp://www.dogmazic.net/woc007http://sws.geonames.org/2975246/
"Le Leprechaune"^^xsd:stringhttp://img.jamendo.com/artists/l/leleprechaune.gifhttp://leleprechaune.free.fr/http://sws.geonames.org/2990129/
"lecyr"^^xsd:stringhttp://img.jamendo.com/artists/l/lecyr.jpghttp://synthosaure.free.frhttp://sws.geonames.org/2968815/
"MEA"^^xsd:stringhttp://img.jamendo.com/artists/m/mea.pnghttp://frenchlaboratoryof.ifrance.comhttp://sws.geonames.org/2984986/
"Dubphil"^^xsd:stringhttp://img.jamendo.com/artists/d/dubphil.jpghttp://dubphil.free.frhttp://sws.geonames.org/3034720/
"crashtesttaurus"^^xsd:stringhttp://img.jamendo.com/artists/c/crashtesttaurus.jpghttp://imprec.free.frhttp://sws.geonames.org/2997857/
"PARALLAX VIEW"^^xsd:stringhttp://img.jamendo.com/artists/p/parallax.view.jpghttp://pxv.wgp.behttp://sws.geonames.org/2802361/
[many more...]

Query #7b: Expected Results

(Back.)
nameimghploc
"Cicada"^^xsd:stringhttp://img.jamendo.com/artists/h/hattrickman.jpghttp://www.cicada.fr.sthttp://sws.geonames.org/3031359/
"Hace Soul"^^xsd:stringhttp://img.jamendo.com/artists/h/hace.soul.jpghttp://www.hacesoul.comhttp://sws.geonames.org/2510769/
"vincent j"^^xsd:stringhttp://img.jamendo.com/artists/v/vincentj.jpghttp://v.joudrier.free.fr/SiteVhttp://sws.geonames.org/3020781/
"NoU"^^xsd:stringhttp://img.jamendo.com/artists/n/nou.gifhttp://www.noumusic.behttp://sws.geonames.org/2802361/
"Margin of Safety"^^xsd:stringhttp://img.jamendo.com/artists/m/mos.jpghttp://wheresthestation.blogspot.com/http://sws.geonames.org/660013/
"Bobywan"^^xsd:stringhttp://img.jamendo.com/artists/b/bobywan.jpghttp://bobywan.over-blog.orghttp://sws.geonames.org/3923057/
"Les Clip's"^^xsd:stringhttp://img.jamendo.com/artists/l/les.clips.jpghttp://www.chez.com/theclips/http://sws.geonames.org/3023414/
"Carter Hotel"^^xsd:stringhttp://img.jamendo.com/artists/c/carter.hotel.jpghttp://sws.geonames.org/3013767/
"La Tumba"^^xsd:stringhttp://img.jamendo.com/artists/l/la.tumba.jpghttp://www.tumbalaye.comhttp://sws.geonames.org/2967196/
"King Dubby"^^xsd:stringhttp://img.jamendo.com/artists/k/king.dubby.jpghttp://kingdubby.hautetfort.com/http://sws.geonames.org/2996663/
"vavrek"^^xsd:stringhttp://img.jamendo.com/artists/v/vavrek.jpghttp://vavrek.comhttp://sws.geonames.org/6252001/
"Suerte"^^xsd:stringhttp://img.jamendo.com/artists/s/suerte.jpghttp://suerte.hautetfort.comhttp://sws.geonames.org/3036264/
"My Name Is Fantastik"^^xsd:stringhttp://img.jamendo.com/artists/m/my.name.is.fantastik.pnghttp://www.myspace.com/mynameisfantastikhttp://sws.geonames.org/3038049/
"KEPAY"^^xsd:stringhttp://img.jamendo.com/artists/k/kepay.jpghttp://www.kepay.nethttp://sws.geonames.org/2510769/
"t r y ^ d"^^xsd:stringhttp://img.jamendo.com/artists/t/tryad.jpghttp://tryad.org/http://sws.geonames.org/6252001/
"Buzzworkers"^^xsd:stringhttp://img.jamendo.com/artists/b/buzzworkers.jpghttp://www.buzzworkers.comhttp://sws.geonames.org/2802361/
"Mr Nuts"^^xsd:stringhttp://img.jamendo.com/artists/m/mr.nuts.jpghttp://www.mrnuts.nethttp://sws.geonames.org/2510769/
"Stian"^^xsd:stringhttp://img.jamendo.com/artists/s/stian.jpghttp://lignu.nohttp://sws.geonames.org/3133897/
"isotrak"^^xsd:stringhttp://isotrak.free.frhttp://sws.geonames.org/3017382/
"433 erOs"^^xsd:stringhttp://img.jamendo.com/artists/4/433.eros.jpghttp://users.skynet.be/fa869102/http://sws.geonames.org/2802361/
"Mael"^^xsd:stringhttp://img.jamendo.com/artists/m/mael.jpghttp://fr.audiofanzine.com/compos/titres/index,idmembre,170802.htmlhttp://sws.geonames.org/3018471/
"Haine Brigade"^^xsd:stringhttp://img.jamendo.com/artists/h/haine.brigade.jpghttp://hainebrigade.free.fr/index.htmhttp://sws.geonames.org/2987410/
"woc007"^^xsd:stringhttp://img.jamendo.com/artists/w/woc007.jpghttp://www.dogmazic.net/woc007http://sws.geonames.org/2975246/
"Le Leprechaune"^^xsd:stringhttp://img.jamendo.com/artists/l/leleprechaune.gifhttp://leleprechaune.free.fr/http://sws.geonames.org/2990129/
"amandine"^^xsd:stringhttp://www.mandine.free.fr/blog/http://sws.geonames.org/3017382/
"lecyr"^^xsd:stringhttp://img.jamendo.com/artists/l/lecyr.jpghttp://synthosaure.free.frhttp://sws.geonames.org/2968815/
"MEA"^^xsd:stringhttp://img.jamendo.com/artists/m/mea.pnghttp://frenchlaboratoryof.ifrance.comhttp://sws.geonames.org/2984986/
"Dubphil"^^xsd:stringhttp://img.jamendo.com/artists/d/dubphil.jpghttp://dubphil.free.frhttp://sws.geonames.org/3034720/
"crashtesttaurus"^^xsd:stringhttp://img.jamendo.com/artists/c/crashtesttaurus.jpghttp://imprec.free.frhttp://sws.geonames.org/2997857/
"PARALLAX VIEW"^^xsd:stringhttp://img.jamendo.com/artists/p/parallax.view.jpghttp://pxv.wgp.behttp://sws.geonames.org/2802361/
[many more...]

Query #8: Expected Results

(Back.)
labelprocess
phosphoenolpyruvate-dependent sugar phosphotransferase systemhttp://purl.org/obo/owl/GO#GO_0009401
Rac protein signal transductionhttp://purl.org/obo/owl/GO#GO_0016601
positive regulation of sterol regulatory element binding protein target gene transcriptionhttp://purl.org/obo/owl/GO#GO_0035104
decapentaplegic receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0008101
activation of protein kinase C activityhttp://purl.org/obo/owl/GO#GO_0007205
muscarinic acetylcholine receptor, phospholipase C activating pathwayhttp://purl.org/obo/owl/GO#GO_0007207
tyrosine phosphorylation of Stat1 proteinhttp://purl.org/obo/owl/GO#GO_0042508
DNA fragmentation during apoptosishttp://purl.org/obo/owl/GO#GO_0006309
receptor clusteringhttp://purl.org/obo/owl/GO#GO_0043113
G-protein signaling, coupled to IP3 second messenger (phospholipase C activating)http://purl.org/obo/owl/GO#GO_0007200
sterol regulatory element binding protein cleavagehttp://purl.org/obo/owl/GO#GO_0035103
tyrosine phosphorylation of Stat3 proteinhttp://purl.org/obo/owl/GO#GO_0042503
stress-activated MAPK cascadehttp://purl.org/obo/owl/GO#GO_0051403
sevenless signaling pathwayhttp://purl.org/obo/owl/GO#GO_0045500
activation of phospholipase C activityhttp://purl.org/obo/owl/GO#GO_0007202
glucocorticoid mediated signalinghttp://purl.org/obo/owl/GO#GO_0043402
calcium-dependent phospholipase A2 activationhttp://purl.org/obo/owl/GO#GO_0043006
metabotropic glutamate receptor, phospholipase C activating pathwayhttp://purl.org/obo/owl/GO#GO_0007206
tyrosine phosphorylation of Stat5 proteinhttp://purl.org/obo/owl/GO#GO_0042506
BMP signaling pathwayhttp://purl.org/obo/owl/GO#GO_0030509
insulin-like growth factor receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0048009
leptin-mediated signaling pathwayhttp://purl.org/obo/owl/GO#GO_0033210
octopamine/tyramine signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007211
serotonin receptor, phospholipase C activating pathwayhttp://purl.org/obo/owl/GO#GO_0007208
tumor necrosis factor-mediated signaling pathwayhttp://purl.org/obo/owl/GO#GO_0033209
serotonin receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007210
nerve growth factor receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0048011
platelet-derived growth factor receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0048008
inositol phosphate-mediated signalinghttp://purl.org/obo/owl/GO#GO_0048016
estrogen receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0030520
vascular endothelial growth factor receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0048010
adiponectin-mediated signaling pathwayhttp://purl.org/obo/owl/GO#GO_0033211
gamma-aminobutyric acid signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007214
gurken receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0008314
Tie receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0048014
ARF protein signal transductionhttp://purl.org/obo/owl/GO#GO_0032011
hepatocyte growth factor receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0048012
ephrin receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0048013
dopamine receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007212
acetylcholine receptor signaling, muscarinic pathwayhttp://purl.org/obo/owl/GO#GO_0007213
tachykinin signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007217
cell structure disassembly during apoptosishttp://purl.org/obo/owl/GO#GO_0006921
intracellular receptor-mediated signaling pathwayhttp://purl.org/obo/owl/GO#GO_0030522
activin receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0032924
neuropeptide signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007218
steroid hormone receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0030518
caspase activationhttp://purl.org/obo/owl/GO#GO_0006919
Notch signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007219
glutamate signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007215
phosphoinositide-mediated signalinghttp://purl.org/obo/owl/GO#GO_0048015
metabotropic glutamate receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007216
Notch receptor processinghttp://purl.org/obo/owl/GO#GO_0007220
positive regulation of transcription of Notch receptor targethttp://purl.org/obo/owl/GO#GO_0007221
glucocorticoid receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0042921
cytokine and chemokine mediated signaling pathwayhttp://purl.org/obo/owl/GO#GO_0019221
toll-like receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0002224
smoothened signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007224
intracellular signaling cascadehttp://purl.org/obo/owl/GO#GO_0007242
androgen receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0030521
Wnt receptor signaling pathway, calcium modulating pathwayhttp://purl.org/obo/owl/GO#GO_0007223
patched ligand processinghttp://purl.org/obo/owl/GO#GO_0007225
Fc receptor mediated stimulatory signaling pathwayhttp://purl.org/obo/owl/GO#GO_0002431
apoptotic programhttp://purl.org/obo/owl/GO#GO_0008632
cyclic-nucleotide-mediated signalinghttp://purl.org/obo/owl/GO#GO_0019935
opioid receptor, adenylate cyclase inhibiting pathwayhttp://purl.org/obo/owl/GO#GO_0031635
smoothened signaling pathway in regulation of granule cell precursor cell proliferationhttp://purl.org/obo/owl/GO#GO_0021938
cleavage of laminhttp://purl.org/obo/owl/GO#GO_0006922
calcium-mediated signalinghttp://purl.org/obo/owl/GO#GO_0019722
stimulatory C-type lectin receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0002223
positive regulation of hh target transcription factor activityhttp://purl.org/obo/owl/GO#GO_0007228
integrin-mediated signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007229
DNA damage response, signal transduction by p53 class mediatorhttp://purl.org/obo/owl/GO#GO_0030330
osmosensory signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007231
activation of pro-apoptotic gene productshttp://purl.org/obo/owl/GO#GO_0008633
caspase activation via cytochrome chttp://purl.org/obo/owl/GO#GO_0008635
ionotropic glutamate receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0035235
immune response-activating cell surface receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0002429
cAMP-mediated signalinghttp://purl.org/obo/owl/GO#GO_0019933
apoptotic mitochondrial changeshttp://purl.org/obo/owl/GO#GO_0008637
fibroblast growth factor receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0008543
I-kappaB kinase/NF-kappaB cascadehttp://purl.org/obo/owl/GO#GO_0007249
antigen receptor-mediated signaling pathwayhttp://purl.org/obo/owl/GO#GO_0050851
DNA damage response, signal transduction resulting in induction of apoptosishttp://purl.org/obo/owl/GO#GO_0008630
second-messenger-mediated signalinghttp://purl.org/obo/owl/GO#GO_0019932
release of cytochrome c from mitochondriahttp://purl.org/obo/owl/GO#GO_0001836
serine phosphorylation of STAT3 proteinhttp://purl.org/obo/owl/GO#GO_0033136
cGMP-mediated signalinghttp://purl.org/obo/owl/GO#GO_0019934
progesterone receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0050847
brain-derived neurotrophic factor receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0031547
protein kinase cascadehttp://purl.org/obo/owl/GO#GO_0007243
protein insertion into mitochondrial membrane during induction of apoptosishttp://purl.org/obo/owl/GO#GO_0001844
inhibition of phospholipase C activityhttp://purl.org/obo/owl/GO#GO_0030845
T cell receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0050852
cytoplasmic sequestering of NF-kappaBhttp://purl.org/obo/owl/GO#GO_0007253
B cell receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0050853
activation of JNKK activityhttp://purl.org/obo/owl/GO#GO_0007256
mitochondrial fragmentation during apoptosishttp://purl.org/obo/owl/GO#GO_0043653
rhodopsin mediated signaling pathwayhttp://purl.org/obo/owl/GO#GO_0016056
two-component signal transduction system (phosphorelay)http://purl.org/obo/owl/GO#GO_0000160
apoptotic nuclear changeshttp://purl.org/obo/owl/GO#GO_0030262
autophagy in response to ER overloadhttp://purl.org/obo/owl/GO#GO_0034263
endoplasmic reticulum unfolded protein responsehttp://purl.org/obo/owl/GO#GO_0030968
natural killer cell inhibitory signaling pathwayhttp://purl.org/obo/owl/GO#GO_0002769
S-M checkpointhttp://purl.org/obo/owl/GO#GO_0031574
ecdysone receptor-mediated signaling pathwayhttp://purl.org/obo/owl/GO#GO_0035076
activation of NF-kappaB-inducing kinase activityhttp://purl.org/obo/owl/GO#GO_0007250
MyD88-dependent toll-like receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0002755
hormone-mediated signalinghttp://purl.org/obo/owl/GO#GO_0009755
JAK-STAT cascadehttp://purl.org/obo/owl/GO#GO_0007259
metarhodopsin inactivationhttp://purl.org/obo/owl/GO#GO_0016060
STAT protein nuclear translocationhttp://purl.org/obo/owl/GO#GO_0007262
small GTPase mediated signal transductionhttp://purl.org/obo/owl/GO#GO_0007264
MAPKKK cascadehttp://purl.org/obo/owl/GO#GO_0000165
Rho protein signal transductionhttp://purl.org/obo/owl/GO#GO_0007266
activation of JNK activityhttp://purl.org/obo/owl/GO#GO_0007257
nitric oxide mediated signal transductionhttp://purl.org/obo/owl/GO#GO_0007263
Toll signaling pathwayhttp://purl.org/obo/owl/GO#GO_0008063
Ras protein signal transductionhttp://purl.org/obo/owl/GO#GO_0007265
phosphoinositide 3-kinase cascadehttp://purl.org/obo/owl/GO#GO_0014065
immune response-regulating cell surface receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0002768
receptor guanylyl cyclase signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007168
epidermal growth factor receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0007173
SMAD protein complex assemblyhttp://purl.org/obo/owl/GO#GO_0007183
cell surface pattern recognition receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0002752
I-kappaB phosphorylationhttp://purl.org/obo/owl/GO#GO_0007252
engulfment of apoptotic cellhttp://purl.org/obo/owl/GO#GO_0043652
JNK cascadehttp://purl.org/obo/owl/GO#GO_0007254
recognition of apoptotic cellhttp://purl.org/obo/owl/GO#GO_0043654
Wnt receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0016055
MyD88-independent toll-like receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0002756
immune response-activating signal transductionhttp://purl.org/obo/owl/GO#GO_0002757
regulation of membrane potential in photoreceptor cellhttp://purl.org/obo/owl/GO#GO_0016057
maintenance of membrane potential in photoreceptor cell by rhodopsin mediated signalinghttp://purl.org/obo/owl/GO#GO_0016058
dopamine receptor, phospholipase C activating pathwayhttp://purl.org/obo/owl/GO#GO_0060158
deactivation of rhodopsin mediated signalinghttp://purl.org/obo/owl/GO#GO_0016059
mineralocorticoid receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0031959
tyrosine phosphorylation of STAT proteinhttp://purl.org/obo/owl/GO#GO_0007260
apoptotic chromosome condensationhttp://purl.org/obo/owl/GO#GO_0030263
carbohydrate mediated signalinghttp://purl.org/obo/owl/GO#GO_0009756
leukemia inhibitory factor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0048861
adenosine receptor signaling pathwayhttp://purl.org/obo/owl/GO#GO_0001973
intra-S DNA damage checkpointhttp://purl.org/obo/owl/GO#GO_0031573
activation of Janus kinase activityhttp://purl.org/obo/owl/GO#GO_0042976
ubiquitin-dependent SMAD protein catabolic processhttp://purl.org/obo/owl/GO#GO_0030579
activation of MAPKKK activityhttp://purl.org/obo/owl/GO#GO_0000185
JUN phosphorylationhttp://purl.org/obo/owl/GO#GO_0007258
regulation of cell growth by extracellular stimulushttp://purl.org/obo/owl/GO#GO_0001560
lipopolysaccharide-mediated signaling pathwayhttp://purl.org/obo/owl/GO#GO_0031663
DNA damage response, signal transductionhttp://purl.org/obo/owl/GO#GO_0042770
G1 DNA damage checkpointhttp://purl.org/obo/owl/GO#GO_0031571

Query #9: Expected Results

(Back.)
person
http://data.semanticweb.org/person/riichiro-mizoguchi
http://data.semanticweb.org/person/philippe-cudre-mauroux
http://data.semanticweb.org/person/lyndon-j-b-nixon
http://data.semanticweb.org/person/nigel-shadbolt
http://data.semanticweb.org/person/eero-hyvoenen
http://data.semanticweb.org/person/kim-viljanen
http://data.semanticweb.org/person/abraham-bernstein
http://data.semanticweb.org/person/christoph-kiefer
http://data.semanticweb.org/person/dieter-fensel
http://data.semanticweb.org/person/yoshinobu-kitamura
http://data.semanticweb.org/person/tomi-kauppinen
http://data.semanticweb.org/person/jouni-tuominen
http://data.semanticweb.org/person/rodney-topor
http://data.semanticweb.org/person/yong-yu
http://data.semanticweb.org/person/bernardo-cuenca-grau
http://data.semanticweb.org/person/antoine-isaac
http://data.semanticweb.org/person/lourens-van-der-meij
http://data.semanticweb.org/person/shenghui-wang
http://data.semanticweb.org/person/stefan-schlobach
http://data.semanticweb.org/person/steffen-staab
http://data.semanticweb.org/person/manolis-koubarakis
http://data.semanticweb.org/person/asuncion-gomez-perez
http://data.semanticweb.org/person/george-vouros

Query #10: Expected Results

(Back.)
<?xml version="1.0"?>
<rdf:RDF
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:foaf="http://xmlns.com/foaf/0.1/"
    xmlns:vCard="http://www.w3.org/2001/vcard-rdf/3.0#">
  <rdf:Description rdf:about="http://id.ecs.soton.ac.uk/person/1650">
    <vCard:FN>Wendy Hall</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.dajobe.org/foaf.rdf#i">
    <vCard:FN>Dave Beckett</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.cambridgesemantics.com/people/about/lee">

    <vCard:FN>Lee Feigenbaum</vCard:FN>
  </rdf:Description>
  <rdf:Description>
    <vCard:FN>Danny Ayers</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#i">
    <vCard:TITLE>Sir</vCard:TITLE>

    <vCard:URL rdf:resource="http://www.w3.org/People/Berners-Lee/"/>
    <vCard:FN>Timothy Berners-Lee</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://dbpedia.org/resource/John_Klensin">
    <vCard:FN>John Klensin</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://my.opera.com/chaals/xml/foaf#me">
    <vCard:FN>Charles McCathieNevile</vCard:FN>

  </rdf:Description>
  <rdf:Description rdf:about="http://users.ecs.soton.ac.uk/mc/mcfoaf.rdf#me">
    <vCard:FN>mc schraefel</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://dbpedia.org/resource/Tim_Bray">
    <vCard:FN>Tim Bray</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://research.microsoft.com/~henrikn/foaf.xml#me">

    <vCard:FN>Henrik Nielsen</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://teole.jfouffa.org/People/Teole/card.rdf#me">
    <vCard:FN>Philippe Le Hégaret</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://dbpedia.org/resource/John_Markoff">
    <vCard:FN>John Markoff</vCard:FN>

  </rdf:Description>
  <rdf:Description rdf:about="http://people.apache.org/~oshani/foaf.rdf#me">
    <vCard:FN>Oshani Seneviratne</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://id.ecs.soton.ac.uk/person/2686">
    <vCard:FN>Nigel Shadbolt</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://dbpedia.org/resource/John_Gage">

    <vCard:FN>John Gage</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.mindswap.org/2004/owl/mindswappers#Jennifer.Golbeck">
    <vCard:FN>Jennifer Golbeck</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://web.mit.edu/shinnyih/foaf.rdf#">
    <vCard:FN>Shinnyih Huang</vCard:FN>

  </rdf:Description>
  <rdf:Description rdf:about="http://my.opera.com/howcome/xml/foaf#howcome">
    <vCard:FN>Håkon Wium Lie</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/People/karl/karl-foaf.xrdf#me">
    <vCard:FN>Karl Dubost</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf#amy">

    <vCard:FN>Amy van der Hiel</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="file:///home/afs/Joseki-3.2/#edd">
    <vCard:URL rdf:resource="http://heddley.com/edd/"/>
    <vCard:FN>Edd Dumbill</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/People/Connolly/#me">
    <vCard:FN>Dan Connolly</vCard:FN>

  </rdf:Description>
  <rdf:Description rdf:about="http://www.mindswap.org/2004/owl/mindswappers#Bijan.Parsia">
    <vCard:FN>Bijan Parsia</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.aaronsw.com/about.xrdf#aaronsw">
    <vCard:FN>Aaron Swartz</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.kjetil.kjernsmo.net/foaf#me">

    <vCard:FN>Kjetil Kjernsmo</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/People/djweitzner/foaf#DJW">
    <vCard:FN>Daniel J Weitzner</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.cs.umd.edu/~hendler/2003/foaf.rdf#jhendler">
    <vCard:FN>Jim Hendler</vCard:FN>

  </rdf:Description>
  <rdf:Description rdf:about="http://www.isi.edu/~gil/foaf.rdf#me">
    <vCard:FN>Yolanda Gill</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="file:///home/afs/Joseki-3.2/#libby">
    <vCard:FN>Libby Miller</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://id.ecs.soton.ac.uk/person/60">

    <vCard:FN>Les Carr</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.lassila.org/ora.rdf#me">
    <vCard:FN>Ora Lassila</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://inamidst.com/sbp/foaf#Sean">
    <vCard:FN>Sean Palmer</vCard:FN>

  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/People/Jacobs/contact.rdf#IanJacobs">
    <vCard:FN>Ian Jacobs</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://eikeon.com/foaf.rdf#eikeon">
    <vCard:FN>Daniel Krech</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://dig.csail.mit.edu/2007/wiki/people/JoeLambda#JL">

    <vCard:FN>Joe Lambda</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://id.ecs.soton.ac.uk/person/1269">
    <vCard:FN>Nicholas Gibbins</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://norman.walsh.name/knows/who#norman-walsh">
    <vCard:FN>Norman Walsh</vCard:FN>

  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/data#W3C">
    <vCard:FN>World Wide Web Consortium</vCard:FN>
    <vCard:URL rdf:resource="file:///home/"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://people.w3.org/simon/foaf#i">
    <vCard:FN>Simon J. Hernandez</vCard:FN>
  </rdf:Description>

  <rdf:Description rdf:about="file:///home/afs/Joseki-3.2/#cm">
    <vCard:FN>Coralie Mercier</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://dig.csail.mit.edu/2007/wiki/people/RobertHoffmann#RMH">
    <vCard:FN>Robert Hoffmann</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="file:///home/afs/Joseki-3.2/#ss">
    <vCard:FN>Susie Stephens</vCard:FN>

  </rdf:Description>
  <rdf:Description rdf:about="http://myopenlink.net/dataspace/person/kidehen#this">
    <vCard:FN>Kingsley Idehen</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="file:///home/afs/Joseki-3.2/#dj">
    <vCard:FN>Dean Jackson</vCard:FN>
    <vCard:URL rdf:resource="http://www.grorg.org/dean/"/>
  </rdf:Description>

  <rdf:Description rdf:about="http://bblfish.net/people/henry/card#me">
    <vCard:FN>Henry Story</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://dbpedia.org/resource/John_Seely_Brown">
    <vCard:FN>John Seely Brown</vCard:FN>
    <vCard:URL rdf:resource="http://www.johnseelybrown.com/"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/People/EM/contact#me">

    <vCard:FN>Eric Miller</vCard:FN>
    <vCard:URL rdf:resource="http://purl.org/net/eric/"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://people.csail.mit.edu/psz/foaf.rdf#me">
    <vCard:FN>Peter Szolovits</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://rit.mellon.org/Members/ihf/foaf.rdf#me">
    <vCard:FN>Ira Fuchs</vCard:FN>

    <vCard:URL rdf:resource="http://www.mellon.org/about_foundation/staff/program-area-staff/irafuchs"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://people.csail.mit.edu/lkagal/foaf#me">
    <vCard:FN>Lalana Kagal</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="http://hometown.aol.com/chbussler/foaf/chbussler.foaf#me">
    <vCard:FN>Christoph Bussler</vCard:FN>
  </rdf:Description>

  <rdf:Description rdf:about="http://www.ivan-herman.net/foaf.rdf#me">
    <vCard:FN>Ivan Herman</vCard:FN>
  </rdf:Description>
</rdf:RDF>

Query #11: Expected Results

(Back.)
<?xml version="1.0" ?>
<sparql xmlns="http://www.w3.org/2005/sparql-results#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/sw/DataAccess/rf1/result2.xsd">
 <head></head>
 <boolean>true</boolean>
</sparql>

Query #12: Expected Results

(Back.)
<?xml version="1.0"?>
<rdf:RDF xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:ussec="http://www.rdfabout.com/rdf/schema/ussec/" xmlns:corp="http://xmlns.com/foaf/corp#">
	<corp:Company rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996">
		<ussec:tradingSymbol>F</ussec:tradingSymbol>
		<foaf:name>FORD MOTOR CO</foaf:name>
		<ussec:tenPercentOwnerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001075056" foaf:name="VASTERA INC" />
		<ussec:cik>0000037996</ussec:cik>
	</corp:Company>

	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190853">
		<ussec:isCOOOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>NICHOLAS V. SCHEELE</foaf:name>
		<ussec:isPresidentOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191100">

		<ussec:isCOOOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>JAMES J. PADILLA</foaf:name>
		<ussec:isPresidentOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001258325">

		<ussec:isVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>JAMES C. GOUIN</foaf:name>
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001230846">
		<ussec:isChairmanOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>WILLIAM CLAY FORD</foaf:name>
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />

		<ussec:isCEOOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001087791">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>KRAVIS MARIE JOSEE</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001090353">

		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>JOHN L. THORNTON</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001113487">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>IRVINE O. HOCKADAY</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001187350">

		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>CARL E. REICHARDT</foaf:name>
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001198939">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>JOHN R H BOND</foaf:name>
	</rdf:Description>

	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001198941">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>HOMER A. NEAL</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001198944">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>JORMA J. OLLILA</foaf:name>
	</rdf:Description>

	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001225178">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>ROBERT E. RUBIN</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001230844">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>EDSEL B. FORD</foaf:name>
	</rdf:Description>

	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001230845">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>WILLIAM CLAY FORD</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001234124">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>ELLEN R. MARRAM</foaf:name>
	</rdf:Description>

	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000891869">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>RICHARD A. MANOOGIAN</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001273561">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>KIMBERLY A. CASIANO</foaf:name>
	</rdf:Description>

	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001206253">
		<ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>STEPHEN G. BUTLER</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191542">
		<ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>DAVID W. THURSFIELD</foaf:name>
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />

	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190854">
		<ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>MARK A. SCHULZ</foaf:name>
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191534">
		<ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />

		<foaf:name>MARK FIELDS</foaf:name>
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190855">
		<ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>GREG C. SMITH</foaf:name>
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>

	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191527">
		<ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>LEWIS W K BOOTH</foaf:name>
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191101">
		<ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>ANNE STEVENS</foaf:name>

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190848">
		<ussec:isCFOOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>DON LECLAIR</foaf:name>
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190350">

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>J C. MAYS</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190353">
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>RICHARD PARRY-JONES</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190357">

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>DENNIS E. ROSS</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191099">
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>JAMES G. OCONNOR</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001264154">

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>BRUCE L. BLYTHE</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190844">
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>JOE W. LAYMON</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190851">

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>PHILIP R. MARTENS</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190857">
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>MARTIN B. ZIMMERMAN</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191095">

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>ROMAN J. KRYGIER</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001167308">
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>ALLAN D. GILMOUR</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001276307">

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>ZIAD S. OJAKLI</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001288349">
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>MICHAEL E. BANNISTER</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191535">

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>EARL J. HESTERBERG</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191096">
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>STEPHEN G. LYONS</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001323205">

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>David G. Leitch</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191102">
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>DAVID T. SZCZUPAK</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191538">

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>DERRICK M. KUZAK</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001199050">
		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>JOHN FLEMING</foaf:name>
	</rdf:Description>
	<rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001354862">

		<ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" />
		<foaf:name>Francisco N. Codina</foaf:name>
	</rdf:Description>
</rdf:RDF>

Query #13: Expected Results

(Back.)
elementprotonsneutrons
"hydrogen" ^^<http://www.w3.org/2001/XMLSchema#string>"1" ^^<http://www.w3.org/2001/XMLSchema#integer>"0.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"helium" ^^<http://www.w3.org/2001/XMLSchema#string>"2" ^^<http://www.w3.org/2001/XMLSchema#integer>"2.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"lithium" ^^<http://www.w3.org/2001/XMLSchema#string>"3" ^^<http://www.w3.org/2001/XMLSchema#integer>"4.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"beryllium" ^^<http://www.w3.org/2001/XMLSchema#string>"4" ^^<http://www.w3.org/2001/XMLSchema#integer>"5.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"boron" ^^<http://www.w3.org/2001/XMLSchema#string>"5" ^^<http://www.w3.org/2001/XMLSchema#integer>"6.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"carbon" ^^<http://www.w3.org/2001/XMLSchema#string>"6" ^^<http://www.w3.org/2001/XMLSchema#integer>"6.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"nitrogen" ^^<http://www.w3.org/2001/XMLSchema#string>"7" ^^<http://www.w3.org/2001/XMLSchema#integer>"7.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"oxygen" ^^<http://www.w3.org/2001/XMLSchema#string>"8" ^^<http://www.w3.org/2001/XMLSchema#integer>"8.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"fluorine" ^^<http://www.w3.org/2001/XMLSchema#string>"9" ^^<http://www.w3.org/2001/XMLSchema#integer>"10.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"neon" ^^<http://www.w3.org/2001/XMLSchema#string>"10" ^^<http://www.w3.org/2001/XMLSchema#integer>"10.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"sodium" ^^<http://www.w3.org/2001/XMLSchema#string>"11" ^^<http://www.w3.org/2001/XMLSchema#integer>"12.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"magnesium" ^^<http://www.w3.org/2001/XMLSchema#string>"12" ^^<http://www.w3.org/2001/XMLSchema#integer>"12.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"aluminium" ^^<http://www.w3.org/2001/XMLSchema#string>"13" ^^<http://www.w3.org/2001/XMLSchema#integer>"14.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"silicon" ^^<http://www.w3.org/2001/XMLSchema#string>"14" ^^<http://www.w3.org/2001/XMLSchema#integer>"14.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"phosphorus" ^^<http://www.w3.org/2001/XMLSchema#string>"15" ^^<http://www.w3.org/2001/XMLSchema#integer>"16.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"sulpher" ^^<http://www.w3.org/2001/XMLSchema#string>"16" ^^<http://www.w3.org/2001/XMLSchema#integer>"16.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"chlorine" ^^<http://www.w3.org/2001/XMLSchema#string>"17" ^^<http://www.w3.org/2001/XMLSchema#integer>"18.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"argon" ^^<http://www.w3.org/2001/XMLSchema#string>"18" ^^<http://www.w3.org/2001/XMLSchema#integer>"22.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"potassium" ^^<http://www.w3.org/2001/XMLSchema#string>"19" ^^<http://www.w3.org/2001/XMLSchema#integer>"20.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"calcium" ^^<http://www.w3.org/2001/XMLSchema#string>"20" ^^<http://www.w3.org/2001/XMLSchema#integer>"20.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"scandium" ^^<http://www.w3.org/2001/XMLSchema#string>"21" ^^<http://www.w3.org/2001/XMLSchema#integer>"24.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"titanium" ^^<http://www.w3.org/2001/XMLSchema#string>"22" ^^<http://www.w3.org/2001/XMLSchema#integer>"26.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"vanadium" ^^<http://www.w3.org/2001/XMLSchema#string>"23" ^^<http://www.w3.org/2001/XMLSchema#integer>"28.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"chromium" ^^<http://www.w3.org/2001/XMLSchema#string>"24" ^^<http://www.w3.org/2001/XMLSchema#integer>"28.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"manganese" ^^<http://www.w3.org/2001/XMLSchema#string>"25" ^^<http://www.w3.org/2001/XMLSchema#integer>"30.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"iron" ^^<http://www.w3.org/2001/XMLSchema#string>"26" ^^<http://www.w3.org/2001/XMLSchema#integer>"30.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"cobalt" ^^<http://www.w3.org/2001/XMLSchema#string>"27" ^^<http://www.w3.org/2001/XMLSchema#integer>"32.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"nickel" ^^<http://www.w3.org/2001/XMLSchema#string>"28" ^^<http://www.w3.org/2001/XMLSchema#integer>"31.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"copper" ^^<http://www.w3.org/2001/XMLSchema#string>"29" ^^<http://www.w3.org/2001/XMLSchema#integer>"35.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"zinc" ^^<http://www.w3.org/2001/XMLSchema#string>"30" ^^<http://www.w3.org/2001/XMLSchema#integer>"35.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"gallium" ^^<http://www.w3.org/2001/XMLSchema#string>"31" ^^<http://www.w3.org/2001/XMLSchema#integer>"39.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"germanium" ^^<http://www.w3.org/2001/XMLSchema#string>"32" ^^<http://www.w3.org/2001/XMLSchema#integer>"41.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"arsenic" ^^<http://www.w3.org/2001/XMLSchema#string>"33" ^^<http://www.w3.org/2001/XMLSchema#integer>"42.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"selenium" ^^<http://www.w3.org/2001/XMLSchema#string>"34" ^^<http://www.w3.org/2001/XMLSchema#integer>"45.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"bromine" ^^<http://www.w3.org/2001/XMLSchema#string>"35" ^^<http://www.w3.org/2001/XMLSchema#integer>"45.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"krypton" ^^<http://www.w3.org/2001/XMLSchema#string>"36" ^^<http://www.w3.org/2001/XMLSchema#integer>"48.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"rubidium" ^^<http://www.w3.org/2001/XMLSchema#string>"37" ^^<http://www.w3.org/2001/XMLSchema#integer>"48.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"strontium" ^^<http://www.w3.org/2001/XMLSchema#string>"38" ^^<http://www.w3.org/2001/XMLSchema#integer>"50.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"yttrium" ^^<http://www.w3.org/2001/XMLSchema#string>"39" ^^<http://www.w3.org/2001/XMLSchema#integer>"50.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"zirconium" ^^<http://www.w3.org/2001/XMLSchema#string>"40" ^^<http://www.w3.org/2001/XMLSchema#integer>"51.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"niobium" ^^<http://www.w3.org/2001/XMLSchema#string>"41" ^^<http://www.w3.org/2001/XMLSchema#integer>"52.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"molybdenum" ^^<http://www.w3.org/2001/XMLSchema#string>"42" ^^<http://www.w3.org/2001/XMLSchema#integer>"54.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"technetium" ^^<http://www.w3.org/2001/XMLSchema#string>"43" ^^<http://www.w3.org/2001/XMLSchema#integer>"55.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"ruthenium" ^^<http://www.w3.org/2001/XMLSchema#string>"44" ^^<http://www.w3.org/2001/XMLSchema#integer>"57.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"rhodium" ^^<http://www.w3.org/2001/XMLSchema#string>"45" ^^<http://www.w3.org/2001/XMLSchema#integer>"58.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"palladium" ^^<http://www.w3.org/2001/XMLSchema#string>"46" ^^<http://www.w3.org/2001/XMLSchema#integer>"60.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"silver" ^^<http://www.w3.org/2001/XMLSchema#string>"47" ^^<http://www.w3.org/2001/XMLSchema#integer>"61.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"cadmium" ^^<http://www.w3.org/2001/XMLSchema#string>"48" ^^<http://www.w3.org/2001/XMLSchema#integer>"64.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"indium" ^^<http://www.w3.org/2001/XMLSchema#string>"49" ^^<http://www.w3.org/2001/XMLSchema#integer>"66.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"tin" ^^<http://www.w3.org/2001/XMLSchema#string>"50" ^^<http://www.w3.org/2001/XMLSchema#integer>"69.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"antimony" ^^<http://www.w3.org/2001/XMLSchema#string>"51" ^^<http://www.w3.org/2001/XMLSchema#integer>"71.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"tellurium" ^^<http://www.w3.org/2001/XMLSchema#string>"52" ^^<http://www.w3.org/2001/XMLSchema#integer>"76.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"iodine" ^^<http://www.w3.org/2001/XMLSchema#string>"53" ^^<http://www.w3.org/2001/XMLSchema#integer>"74.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"xenon" ^^<http://www.w3.org/2001/XMLSchema#string>"54" ^^<http://www.w3.org/2001/XMLSchema#integer>"77.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"caesium" ^^<http://www.w3.org/2001/XMLSchema#string>"55" ^^<http://www.w3.org/2001/XMLSchema#integer>"78.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"barium" ^^<http://www.w3.org/2001/XMLSchema#string>"56" ^^<http://www.w3.org/2001/XMLSchema#integer>"81.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"lanthanum" ^^<http://www.w3.org/2001/XMLSchema#string>"57" ^^<http://www.w3.org/2001/XMLSchema#integer>"82.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"cerium" ^^<http://www.w3.org/2001/XMLSchema#string>"58" ^^<http://www.w3.org/2001/XMLSchema#integer>"82.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"praseodymium" ^^<http://www.w3.org/2001/XMLSchema#string>"59" ^^<http://www.w3.org/2001/XMLSchema#integer>"82.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"neodymium" ^^<http://www.w3.org/2001/XMLSchema#string>"60" ^^<http://www.w3.org/2001/XMLSchema#integer>"84.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"promethium" ^^<http://www.w3.org/2001/XMLSchema#string>"61" ^^<http://www.w3.org/2001/XMLSchema#integer>"84.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"samarium" ^^<http://www.w3.org/2001/XMLSchema#string>"62" ^^<http://www.w3.org/2001/XMLSchema#integer>"88.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"europium" ^^<http://www.w3.org/2001/XMLSchema#string>"63" ^^<http://www.w3.org/2001/XMLSchema#integer>"89.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"gadolinium" ^^<http://www.w3.org/2001/XMLSchema#string>"64" ^^<http://www.w3.org/2001/XMLSchema#integer>"93.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"terbium" ^^<http://www.w3.org/2001/XMLSchema#string>"65" ^^<http://www.w3.org/2001/XMLSchema#integer>"94.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"dysprosium" ^^<http://www.w3.org/2001/XMLSchema#string>"66" ^^<http://www.w3.org/2001/XMLSchema#integer>"97.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"holmium" ^^<http://www.w3.org/2001/XMLSchema#string>"67" ^^<http://www.w3.org/2001/XMLSchema#integer>"98.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"erbium" ^^<http://www.w3.org/2001/XMLSchema#string>"68" ^^<http://www.w3.org/2001/XMLSchema#integer>"99.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"thulium" ^^<http://www.w3.org/2001/XMLSchema#string>"69" ^^<http://www.w3.org/2001/XMLSchema#integer>"100.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"ytterbium" ^^<http://www.w3.org/2001/XMLSchema#string>"70" ^^<http://www.w3.org/2001/XMLSchema#integer>"103.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"lutetium" ^^<http://www.w3.org/2001/XMLSchema#string>"71" ^^<http://www.w3.org/2001/XMLSchema#integer>"104.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"hafnium" ^^<http://www.w3.org/2001/XMLSchema#string>"72" ^^<http://www.w3.org/2001/XMLSchema#integer>"106.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"tantalum" ^^<http://www.w3.org/2001/XMLSchema#string>"73" ^^<http://www.w3.org/2001/XMLSchema#integer>"108.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"tungsten" ^^<http://www.w3.org/2001/XMLSchema#string>"74" ^^<http://www.w3.org/2001/XMLSchema#integer>"110.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"rhenium" ^^<http://www.w3.org/2001/XMLSchema#string>"75" ^^<http://www.w3.org/2001/XMLSchema#integer>"111.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"osmium" ^^<http://www.w3.org/2001/XMLSchema#string>"76" ^^<http://www.w3.org/2001/XMLSchema#integer>"114.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"iridium" ^^<http://www.w3.org/2001/XMLSchema#string>"77" ^^<http://www.w3.org/2001/XMLSchema#integer>"115.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"platinum" ^^<http://www.w3.org/2001/XMLSchema#string>"78" ^^<http://www.w3.org/2001/XMLSchema#integer>"117.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"gold" ^^<http://www.w3.org/2001/XMLSchema#string>"79" ^^<http://www.w3.org/2001/XMLSchema#integer>"118.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"mercury" ^^<http://www.w3.org/2001/XMLSchema#string>"80" ^^<http://www.w3.org/2001/XMLSchema#integer>"121.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"thallium" ^^<http://www.w3.org/2001/XMLSchema#string>"81" ^^<http://www.w3.org/2001/XMLSchema#integer>"123.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"lead" ^^<http://www.w3.org/2001/XMLSchema#string>"82" ^^<http://www.w3.org/2001/XMLSchema#integer>"125.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"bismuth" ^^<http://www.w3.org/2001/XMLSchema#string>"83" ^^<http://www.w3.org/2001/XMLSchema#integer>"126.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"polonium" ^^<http://www.w3.org/2001/XMLSchema#string>"84" ^^<http://www.w3.org/2001/XMLSchema#integer>"125.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"astatine" ^^<http://www.w3.org/2001/XMLSchema#string>"85" ^^<http://www.w3.org/2001/XMLSchema#integer>"125.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"radon" ^^<http://www.w3.org/2001/XMLSchema#string>"86" ^^<http://www.w3.org/2001/XMLSchema#integer>"136.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"francium" ^^<http://www.w3.org/2001/XMLSchema#string>"87" ^^<http://www.w3.org/2001/XMLSchema#integer>"136.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"radium" ^^<http://www.w3.org/2001/XMLSchema#string>"88" ^^<http://www.w3.org/2001/XMLSchema#integer>"138.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"actinium" ^^<http://www.w3.org/2001/XMLSchema#string>"89" ^^<http://www.w3.org/2001/XMLSchema#integer>"138.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"thorium" ^^<http://www.w3.org/2001/XMLSchema#string>"90" ^^<http://www.w3.org/2001/XMLSchema#integer>"142.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"protactinium" ^^<http://www.w3.org/2001/XMLSchema#string>"91" ^^<http://www.w3.org/2001/XMLSchema#integer>"140.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"uranium" ^^<http://www.w3.org/2001/XMLSchema#string>"92" ^^<http://www.w3.org/2001/XMLSchema#integer>"146.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"neptunium" ^^<http://www.w3.org/2001/XMLSchema#string>"93" ^^<http://www.w3.org/2001/XMLSchema#integer>"144.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"plutonium" ^^<http://www.w3.org/2001/XMLSchema#string>"94" ^^<http://www.w3.org/2001/XMLSchema#integer>"150.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"americium" ^^<http://www.w3.org/2001/XMLSchema#string>"95" ^^<http://www.w3.org/2001/XMLSchema#integer>"148.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"curium" ^^<http://www.w3.org/2001/XMLSchema#string>"96" ^^<http://www.w3.org/2001/XMLSchema#integer>"151.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"berkelium" ^^<http://www.w3.org/2001/XMLSchema#string>"97" ^^<http://www.w3.org/2001/XMLSchema#integer>"150.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"californium" ^^<http://www.w3.org/2001/XMLSchema#string>"98" ^^<http://www.w3.org/2001/XMLSchema#integer>"153.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"einsteinium" ^^<http://www.w3.org/2001/XMLSchema#string>"99" ^^<http://www.w3.org/2001/XMLSchema#integer>"153.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"fermium" ^^<http://www.w3.org/2001/XMLSchema#string>"100" ^^<http://www.w3.org/2001/XMLSchema#integer>"157.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"mendelevium" ^^<http://www.w3.org/2001/XMLSchema#string>"101" ^^<http://www.w3.org/2001/XMLSchema#integer>"157.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"nobelium" ^^<http://www.w3.org/2001/XMLSchema#string>"102" ^^<http://www.w3.org/2001/XMLSchema#integer>"157.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"lawrencium" ^^<http://www.w3.org/2001/XMLSchema#string>"103" ^^<http://www.w3.org/2001/XMLSchema#integer>"159.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"rutherfordium" ^^<http://www.w3.org/2001/XMLSchema#string>"104" ^^<http://www.w3.org/2001/XMLSchema#integer>"157.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"dubnium" ^^<http://www.w3.org/2001/XMLSchema#string>"105" ^^<http://www.w3.org/2001/XMLSchema#integer>"157.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"seaborgium" ^^<http://www.w3.org/2001/XMLSchema#string>"106" ^^<http://www.w3.org/2001/XMLSchema#integer>"160.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"bohrium" ^^<http://www.w3.org/2001/XMLSchema#string>"107" ^^<http://www.w3.org/2001/XMLSchema#integer>"157.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"hassium" ^^<http://www.w3.org/2001/XMLSchema#string>"108" ^^<http://www.w3.org/2001/XMLSchema#integer>"161.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"meitnerium" ^^<http://www.w3.org/2001/XMLSchema#string>"109" ^^<http://www.w3.org/2001/XMLSchema#integer>"159.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"ununnilium" ^^<http://www.w3.org/2001/XMLSchema#string>"110" ^^<http://www.w3.org/2001/XMLSchema#integer>"161.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"unununium" ^^<http://www.w3.org/2001/XMLSchema#string>"111" ^^<http://www.w3.org/2001/XMLSchema#integer>"161.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"ununbium" ^^<http://www.w3.org/2001/XMLSchema#string>"112" ^^<http://www.w3.org/2001/XMLSchema#integer>"173.0" ^^<http://www.w3.org/2001/XMLSchema#float>
"ununquadium" ^^<http://www.w3.org/2001/XMLSchema#string>"114" ^^<http://www.w3.org/2001/XMLSchema#integer>"175.0" ^^<http://www.w3.org/2001/XMLSchema#float>

Query #14: Expected Results

(Back.)
<?xml version="1.0"?>
<sparql xmlns="http://www.w3.org/2005/sparql-results#">
  <head>
    <variable name="cat_name"/>
    <variable name="roads"/>
  </head>
  <results>
    <result>
      <binding name="cat_name">
        <literal>Unclassified Road</literal>
      </binding>
      <binding name="roads">
        <literal datatype="http://www.w3.org/2001/XMLSchema#integer">5698</literal>
      </binding>
    </result>
    <result>
      <binding name="cat_name">
        <literal>B Road</literal>
      </binding>
      <binding name="roads">
        <literal datatype="http://www.w3.org/2001/XMLSchema#integer">1299</literal>
      </binding>
    </result>
    <result>
      <binding name="cat_name">
        <literal>C Road</literal>
      </binding>
      <binding name="roads">
        <literal datatype="http://www.w3.org/2001/XMLSchema#integer">2342</literal>
      </binding>
    </result>
    <result>
      <binding name="cat_name">
        <literal>A Road</literal>
      </binding>
      <binding name="roads">
        <literal datatype="http://www.w3.org/2001/XMLSchema#integer">1742</literal>
      </binding>
    </result>
    <result>
      <binding name="cat_name">
        <literal>Motorway</literal>
      </binding>
      <binding name="roads">
        <literal datatype="http://www.w3.org/2001/XMLSchema#integer">55</literal>
      </binding>
    </result>
  </results>
</sparql>

Query #15a: Expected Results

(Back.)
nameemail
"Dave Beckett"<mailto:dave@dajobe.org>
"Dean Jackson"<mailto:dean@w3.org>
"Dean Jackson"<mailto:dino@grorg.org>
"Edd Dumbill"<mailto:edd@usefulinc.com>
"Edd Dumbill"<mailto:edd@xml.com>
"Edd Dumbill"<mailto:edd@xmlhack.com>
"Eric Miller"<mailto:em@w3.org>
"Henrik Nielsen"
"Henry Story"
"Håkon Wium Lie"

Query #15b: Expected Results

(Back.)
nameemail
"Dave Beckett"<mailto:dave@dajobe.org>
"Dean Jackson"<mailto:dino@grorg.org>
"Dean Jackson"<mailto:dean@w3.org>
"Edd Dumbill"<mailto:edd@xmlhack.com>
"Edd Dumbill"<mailto:edd@xml.com>
"Edd Dumbill"<mailto:edd@usefulinc.com>
"Eric Miller"<mailto:em@w3.org>
"Henrik Nielsen"
"Henry Story"
"Håkon Wium Lie"
"Ian Jacobs"
"Ira Fuchs"
"Ivan Herman"

Query #18: Expected Results

(Back.)
actor_namebirth_date
"William Shatner""1931-03-22" ^^<http://www.w3.org/2001/XMLSchema#date>
"Leonard Nimoy""1931-03-26" ^^<http://www.w3.org/2001/XMLSchema#date>
"DeForest Kelley""1920-01-20" ^^<http://www.w3.org/2001/XMLSchema#date>
"James Doohan""1920-03-03" ^^<http://www.w3.org/2001/XMLSchema#date>
"Nichelle Nichols""1932-12-28" ^^<http://www.w3.org/2001/XMLSchema#date>
"Stephen Collins""1947-10-01" ^^<http://www.w3.org/2001/XMLSchema#date>
"George Takei""1937-04-20" ^^<http://www.w3.org/2001/XMLSchema#date>

Query #19: Expected Results

(Back.)
lblest
Czech Republic1918-10-28
Dominican Republic1844-02-27
Republic of China1911-10-10
Republic of China1912-01-01
Republic of Ireland1916-04-24
Republic of Ireland1919-01-21
slide 1/83
* help? contents? restart?