Example of Service Description for DARQ
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix sd: <http://darq.sf.net/dose/0.1#> .
@prefix a: <http://example.com/a#> .
@prefix b: <http://example.com/b#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/#> .
# definition of an endpoint A
[] a sd:Service ;
sd:capability [
sd:predicate foaf:name ;
sd:triples 10 ;
sd:subjectSelectivity 0.1 ; # 1/10 (10 of distint subject)
sd:objectSelectivity 0.2 ] ; # 1/5 ( 5 of distinct object)
sd:capability [
sd:predicate foaf:mbox ;
sd:triples 10 ] ;
sd:totalTriples “20″ ;
sd:url “http://a.com/sparql” . Read more
