- From: conor325 <conor@the325project.org>
- Date: Sat, 7 Oct 2006 13:34:43 -0700
- To: public-rdf-dawg-comments@w3.org
In the following:
_:a ex:name "Robert" .
_:a ex:name "Bobby" .
select ?name
where {?a ex:name ?name}
should the JSON output have a binding per name assertion or gather
the name values in one binding? - one binding is much easier to
process. If the values are gathered, should the literals be in one
array or an array of values? In other words:
"bindings": [
{
"name": { "type": "literal" , "value": "Robert" }
} ,
{
"name": { "type": "literal" , "value": "Bobby" }
} ,
OR
"bindings": [
{
"name": { "type": "literal" , "value": ["Bobby", "Robert"] }
} ,
OR
"bindings": [
{
"name": [{ "type": "literal" , "value": "Bobby" }, { "type":
"literal" , "value": "Robert" }]
} ,
Received on Saturday, 7 October 2006 20:34:52 UTC