@prefix rdf: . @prefix rs: . [] rdf:type rs:ResultSet ; rs:resultVariable "x" ; rs:resultVariable "fname" ; rs:size "4" ; rs:solution [ rdf:type rs:ResultSolution ; rs:binding [ rdf:type rs:ResultBinding ; rs:variable "x" ; rs:value ] ; rs:binding [ rdf:type rs:ResultBinding ; rs:variable "fname" ; rs:value "John Smith" ] ; ] ; rs:solution [ rdf:type rs:ResultSolution ; rs:binding [ rdf:type rs:ResultBinding ; rs:variable "x" ; rs:value ] ; rs:binding [ rdf:type rs:ResultBinding ; rs:variable "fname" ; rs:value "Becky Smith" ] ; ] ; rs:solution [ rdf:type rs:ResultSolution ; rs:binding [ rdf:type rs:ResultBinding ; rs:variable "x" ; rs:value ] ; rs:binding [ rdf:type rs:ResultBinding ; rs:variable "fname" ; rs:value "Sarah Jones" ] ; ] ; rs:solution [ rdf:type rs:ResultSolution ; rs:binding [ rdf:type rs:ResultBinding ; rs:variable "x" ; rs:value ] ; rs:binding [ rdf:type rs:ResultBinding ; rs:variable "fname" ; rs:value "Matt Jones" ] ; ] ; .