-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtriples.nt
More file actions
17 lines (17 loc) · 1.78 KB
/
triples.nt
File metadata and controls
17 lines (17 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<http://data.example.com/location/NEW%20YORK> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Place> .
<http://data.example.com/location/BOSTON> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Place> .
<http://data.example.com/department/10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/ns#Department> .
<http://data.example.com/department/20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/ns#Department> .
<http://data.example.com/employee/7369> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/ns#Employee> .
<http://data.example.com/employee/7400> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/ns#Employee> .
<http://data.example.com/location/NEW%20YORK> <http://schema.org/name> "NEW YORK"@en .
<http://data.example.com/location/BOSTON> <http://schema.org/name> "BOSTON"@en .
<http://data.example.com/department/10> <http://schema.org/location> <http://data.example.com/location/NEW%20YORK> .
<http://data.example.com/department/20> <http://schema.org/location> <http://data.example.com/location/BOSTON> .
<http://data.example.com/department/10> <http://example.com/ns#name> "APPSERVER"@en .
<http://data.example.com/department/20> <http://example.com/ns#name> "RESEARCH"@en .
<http://data.example.com/employee/7369> <http://example.com/ns#name> "SMITH" .
<http://data.example.com/employee/7400> <http://example.com/ns#name> "JONES" .
<http://data.example.com/employee/7369> <http://example.com/ns#department> <http://data.example.com/department/10> .
<http://data.example.com/employee/7369> <http://example.com/ns#department> <http://data.example.com/department/20> .
<http://data.example.com/employee/7400> <http://example.com/ns#department> <http://data.example.com/department/10> .