@prefix rdf: . @prefix rdfs: . @prefix schema: . _:Hotel1 a schema:Hotel ; schema:description "A fictitious hotel" . _:Review1 a schema:Review ; schema:reviewBody "This is a great review" ; schema:reviewRating [ a schema:Rating ; schema:author ; schema:ratingValue "0.7" ] ; schema:itemReviewed _:Hotel1 . _:Review2 a schema:Review ; schema:reviewBody "This is a not so great review" ; schema:reviewRating [ a schema:Rating ; schema:author [ a schema:Person ; schema:givenName "anonymous" ] ; schema:ratingValue "0.3" ] ; schema:itemReviewed _:Hotel1 .