
xsparql.base.usecase-lifting.xsparql.ignore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xsparql-test-suite Show documentation
Show all versions of xsparql-test-suite Show documentation
XSPARQL compliance test suite
The newest version!
declare namespace bkrdf="http://example.org/bookTicket#";
declare namespace bkxml="http://example.com/bookTicket.xsd";
let $reservation := /bkxml:Reservation
for $req $date $count $from $to from
where { $req a bkrdf:ReservationRequest ;
bkrdf:time $date ;
bkrdf:from $from ;
bkrdf:to $to ;
bkrdf:passengerCount $count . }
construct {
_:a a bkrdf:Reservation ;
bkrdf:requestedBy $req ;
bkrdf:time $date ;
bkrdf:from $from ;
bkrdf:to $to;
bkrdf:passengerCount $count ;
bkrdf:description { $reservation/description } ;
bkrdf:confirmationID { $reservation/confirmationID } .
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy