Requesting a resource
Request the whole dataset:
- Point your browser to the resource URI:

- You can request several output formats by adding the format extension to the URI, replace ‘.about’ by:
.json{"myfirstresource" : [ { "property1" : "1", "property2" : "A" }, { "property1" : "2", "property2" : "B" }, { "property1" : "3", "property2" : "C" } ] }.xml
<?xml version="1.0" encoding="UTF-8" ?> <myfirstresource version="1.0" timestamp="1323112434"> <myfirstresource> <property1>1</property1> <property2>A</property2> </myfirstresource> <myfirstresource> <property1>2</property1> <property2>B</property2> </myfirstresource> <myfirstresource> <property1>3</property1> <property2>C</property2> </myfirstresource> </myfirstresource>.rdf
<?xml version="1.0" encoding="UTF-8" ?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:vcard="http://www.w3.org/2001/vcard-rdf/3.0#" xmlns:ns1="http://localhost/tdt/tdt/TDTInfo/Ontology/myfirstpackage/"> <rdf:Description rdf:nodeID="bNode1"> <rdf:first rdf:resource="http://localhost/tdt/myfirstpackage/myfirstresource/1"/> <rdf:rest rdf:nodeID="bNode2"/> </rdf:Description> <rdf:Description rdf:nodeID="bNode2"> <rdf:first rdf:resource="http://localhost/tdt/myfirstpackage/myfirstresource/2"/> <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> </rdf:Description> <rdf:Description rdf:about="http://localhost/tdt/myfirstpackage/myfirstresource/0"> <ns1:property1 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</ns1:property1> <ns1:property2 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A</ns1:property2> </rdf:Description> <rdf:Description rdf:about="http://localhost/tdt/myfirstpackage/myfirstresource/1"> <ns1:property1 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ns1:property1> <ns1:property2 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B</ns1:property2> </rdf:Description> <rdf:Description rdf:about="http://localhost/tdt/myfirstpackage/myfirstresource/2"> <ns1:property1 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</ns1:property1> <ns1:property2 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">C</ns1:property2> </rdf:Description> <rdf:Description rdf:about="http://localhost/tdt/myfirstpackage/myfirstresource"> <rdf:first rdf:resource="http://localhost/tdt/myfirstpackage/myfirstresource/0"/> <rdf:rest rdf:nodeID="bNode1"/> </rdf:Description> <rdf:List rdf:about="http://localhost/tdt/myfirstpackage/myfirstresource"/> </rdf:RDF>.n3
# Generated by N3Serializer.php from RDF RAP. # http://www.wiwiss.fu-berlin.de/suhl/bizer/rdfapi/index.html @prefix ns0: . @prefix rdf: . @prefix ns1: . @prefix ns2: . ns0:myfirstresource a rdf:List; rdf:first ns1:0; rdf:rest _:bNode1 . ns1:2 ns2:property1 "3"^^xsd:string; ns2:property2 "C"^^xsd:string . _:bNode2 rdf:first ns1:2; rdf:rest rdf:nil . _:bNode1 rdf:first ns1:1; rdf:rest _:bNode2 . ns1:0 ns2:property1 "1"^^xsd:string; ns2:property2 "A"^^xsd:string . ns1:1 ns2:property1 "2"^^xsd:string; ns2:property2 "B"^^xsd:string .
Request a specific entity
You can request a specific entity within the dataset by adding /PrimaryKey to the URI, if no Primary Key is specified you can use the index in the dataset:

Filter the data
Collections may be filtered to return only entries that match particular conditions. These conditions are specified using filters in the request URI. The following Open Search parameters are supported:
| filterBy | <property> | The name of the property to filter against. |
| filterValue | <value> | The string to match against the <property> value. |
| filterOp | contains | Returns all entries where <property> contains <value>. |
| startsWith | Returns all entries where <property> value begins with <value>. | |
| present | Returns all entries where <property> is defined (<value> is ignored). | |
| equals | Returns all entries where <property> is exactly <value> |




