@prefix rdf: . @prefix rs: . [] rdf:type rs:ResultSet ; rs:resultVariable "givenName" ; rs:size "2" ; rs:solution [ rdf:type rs:ResultSolution ; rs:binding [ rdf:type rs:ResultBinding ; rs:variable "givenName" ; rs:value "John" ] ; ] ; rs:solution [ rdf:type rs:ResultSolution ; rs:binding [ rdf:type rs:ResultBinding ; rs:variable "givenName" ; rs:value "Rebecca" ] ; ] ; .