Research Article

Seamless Integration of RESTful Services into the Web of Data

Listing 4

Examplary INSERT DATA operation.
1 PREFIX owl: <http://www.w3.org/2002/07/owl#>
2 PREFIX foaf: <http://xmlns.com/foaf/0.1/>
3 PREFIX so: <http://schema.org/>
4 PREFIX ex:<http://example.com/onto#>
5 PREFIX pers: <http://example.com/person/>
6 INSERT DATA {
7   _:greatg a so:Event;
8      so:name "Great Gig";
9      so:startDate "2012-08-03";
10      so:performers pers:p84098;
11      so:performers _:bieber.
12   _:bieber a so:Person;
13      so:name "Justin Bieber";
14      so:gender "male";
15      so:birthDate "1994-03-01".
16 }