This file is indexed.

/usr/share/doc/librdf-query-perl/examples/queries/sparqlp-service-people-names.rq is in librdf-query-perl 2.918-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT *
WHERE {
	SERVICE <http://kasei.us/sparql> {
		[] a foaf:Person ;
			foaf:name ?name .
	}
}