1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-31 07:59:27 +02:00
2010-01-24 09:19:39 +00:00

105 lines
3.7 KiB
Plaintext

@prefix rs: <http://jena.hpl.hp.com/2003/03/result-set#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
[] a rs:ResultSet ;
rs:resultVariable "z" , "y" , "x" ;
rs:size "7" ;
rs:solution
[ rs:binding
[ rs:value <http://rdf.hp.com/p1> ;
rs:variable "y"
] ;
rs:binding
[ rs:value <http://rdf.hp.com/r> ;
rs:variable "x"
] ;
rs:binding
[ rs:value "value"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> ;
rs:variable "z"
]
] ;
rs:solution
[ rs:binding
[ rs:value <http://rdf.hp.com/r> ;
rs:variable "x"
] ;
rs:binding
[ rs:value 5 ;
rs:variable "z"
] ;
rs:binding
[ rs:value <http://rdf.hp.com/p5> ;
rs:variable "y"
]
] ;
rs:solution
[ rs:binding
[ rs:value <http://rdf.hp.com/p5> ;
rs:variable "y"
] ;
rs:binding
[ rs:value "5.7"^^xsd:double ;
rs:variable "z"
] ;
rs:binding
[ rs:value <http://rdf.hp.com/r> ;
rs:variable "x"
]
] ;
rs:solution
[ rs:binding
[ rs:value <http://rdf.hp.com/r> ;
rs:variable "x"
] ;
rs:binding
[ rs:value "true" ;
rs:variable "z"
] ;
rs:binding
[ rs:value <http://rdf.hp.com/p6> ;
rs:variable "y"
]
] ;
rs:solution
[ rs:binding
[ rs:value "value"@en ;
rs:variable "z"
] ;
rs:binding
[ rs:value <http://rdf.hp.com/p2> ;
rs:variable "y"
] ;
rs:binding
[ rs:value <http://rdf.hp.com/r> ;
rs:variable "x"
]
] ;
rs:solution
[ rs:binding
[ rs:value "value" ;
rs:variable "z"
] ;
rs:binding
[ rs:value <http://rdf.hp.com/r> ;
rs:variable "x"
] ;
rs:binding
[ rs:value <http://rdf.hp.com/p3> ;
rs:variable "y"
]
] ;
rs:solution
[ rs:binding
[ rs:value <http://rdf.hp.com/r> ;
rs:variable "x"
] ;
rs:binding
[ rs:value "value"^^<http://rdf.hp.com/ns#someType> ;
rs:variable "z"
] ;
rs:binding
[ rs:value <http://rdf.hp.com/p4> ;
rs:variable "y"
]
] .