-
Notifications
You must be signed in to change notification settings - Fork 2
/
ExampleFederation.ttl
54 lines (46 loc) · 2.4 KB
/
ExampleFederation.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX fd: <http://www.example.org/se/liu/ida/hefquin/fd#>
PREFIX ex: <http://example.org/>
ex:dbpediaSPARQL
a fd:FederationMember ;
fd:interface [ a fd:SPARQLEndpointInterface ;
fd:endpointAddress <http://dbpedia.org/sparql> ] .
ex:dbpediaTPF
a fd:FederationMember ;
fd:interface [ a fd:TPFInterface ;
fd:exampleFragmentAddress <http://fragments.dbpedia.org/2016-04/en> ] .
ex:wikidataSPARQL
a fd:FederationMember ;
fd:interface [ a fd:SPARQLEndpointInterface ;
fd:endpointAddress <https://query.wikidata.org/sparql> ] .
ex:europaSPARQL
a fd:FederationMember ;
fd:interface [ a fd:SPARQLEndpointInterface ;
fd:endpointAddress <https://data.europa.eu/sparql> ] .
#ex:neo4jTest
# a fd:FederationMember ;
# fd:interface [ a fd:BoltInterface ;
# fd:endpointAddress <http://localhost:7474/db/neo4j/tx> ;
# fd:mappingConfiguration [ a fd:LPGToRDFConfiguration ;
# # ...
# ]
# ] .
#ex:graphqlTest
# a fd:FederationMember ;
# fd:interface [ a fd:GraphQLEndpointInterface ;
# fd:endpointAddress <http://localhost:4000/graphql> ;
# fd:mappingConfiguration [ a fd:GraphQLToRDFConfiguration ;
# # ...
# ]
# ] .
#ex:dbpediaSPARQLWithVocabMappings
# a fd:FederationMember ;
# fd:interface [ a fd:SPARQLEndpointInterface ;
# fd:endpointAddress <http://dbpedia.org/sparql> ] ;
# fd:vocabularyMappingsFile "dbpedia/vocabularyMappings.nt" .
#ex:wikidataSPARQLWithVocabMappings
# a fd:FederationMember ;
# fd:interface [ a fd:SPARQLEndpointInterface ;
# fd:endpointAddress <https://query.wikidata.org/sparql> ];
# fd:vocabularyMappingsFile "wikidata/vocabularyMappings.nt" .