mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-30 15:39:27 +02:00
29 lines
1.3 KiB
Turtle
29 lines
1.3 KiB
Turtle
@prefix rs: <http://www.w3.org/2001/sw/DataAccess/tests/result-set#> .
|
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
|
|
[] rdf:type rs:ResultSet ;
|
|
rs:resultVariable "foo" ;
|
|
rs:resultVariable "o" ;
|
|
rs:resultVariable "p" ;
|
|
rs:resultVariable "s" ;
|
|
rs:solution [ rs:binding [ rs:value <http://example.org/#foo> ;
|
|
rs:variable "s"
|
|
] ;
|
|
rs:binding [ rs:value <http://example.org/#baz> ;
|
|
rs:variable "o"
|
|
] ;
|
|
rs:binding [ rs:value <http://example.org/#bar> ;
|
|
rs:variable "p"
|
|
]
|
|
] ;
|
|
rs:solution [ rs:binding [ rs:value <http://example.org/#bar> ;
|
|
rs:variable "p"
|
|
] ;
|
|
rs:binding [ rs:value "10" ;
|
|
rs:variable "o"
|
|
] ;
|
|
rs:binding [ rs:value <http://example.org/#foo> ;
|
|
rs:variable "s"
|
|
]
|
|
] .
|