Hi zz,
Thanks for showing interest in our sparql endpoint.
As you correctly mentioned you can find out which datasets we currently store in two ways:
1. querying the sparql endpoint by using the example query provided on the website
2. checking up this more up to date list:
https://docs.google.com/spreadsheet/ccc?key=0AvdgRy2el8d9dGhDaHMta0MtaG9vWWhhbTd5SVVaX1E#gid=0
Indeed, at the moment we do not store the freebase dataset, but instead we have the basekb dataset which is also a rdf-ization of freebase.
http://basekb.com. Maybe that could help you until we figure out a way of getting freebase on our endpoint.
Regarding the vocabulary used by each dataset, you can query something like the following:
PREFIX dataset: <
http://vocab.sindice.net/dataset/1.0/>
SELECT ?dataset_uri ?dataset_name ?dataset_type ?triples ?snapshot ?vocabulary
FROM <
http://sindice.com/dataspace/default/dataset/index>
WHERE {
?dataset_uri dataset:type ?dataset_type ;
dataset:name ?dataset_name .
OPTIONAL {
?dataset_uri dataset:void ?void_graph ;
dataset:snapshot ?snapshot .
GRAPH ?G {
?dataset_uri void:triples ?triples ;
void:vocabulary ?vocabulary.
}
}
} limit 40
Please note that each of our dataset dumps have some metadata attached described using the void vocabulary:
http://www.w3.org/TR/void/
Maybe this one will give you a bit more insight of what you should expect from each dataset.
Let me know if there is anything else Icould help you with,
Regards,
Gabi