@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix cars: <http://www.semwebtech.org/domains/2006/industry/cars#>.
@prefix vw: <http://www.semwebtech.org/domains/2006/industry/cars/vw/>.
@prefix audi: <http://www.semwebtech.org/domains/2006/industry/cars/audi/>.
@prefix opel: <http://www.semwebtech.org/domains/2006/industry/cars/opel/>.
@prefix ford: <http://www.semwebtech.org/domains/2006/industry/cars/ford/>.
@prefix mb: <http://www.semwebtech.org/domains/2006/industry/cars/mb/>.
@prefix bmw: <http://www.semwebtech.org/domains/2006/industry/cars/bmw/>.
@prefix citroen: <http://www.semwebtech.org/domains/2006/industry/cars/citroen/>.
@prefix toyota: <http://www.semwebtech.org/domains/2006/industry/cars/toyota/>.
@prefix vauxhall: <http://www.semwebtech.org/domains/2006/industry/cars/vauxhall/>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix : <foo://bla/>.

foaf:Person a owl:Class.
:owns-car rdfs:range cars:Model.
cars:Model a owl:Class.
[ a foaf:Person; foaf:name "John Doe"; foaf:mbox <mailto:john@doe.nop>;
  :rental-car-max-price 60;
  :owns-car vw:golf, vw:passat].

[ a foaf:Person; foaf:name "Lisa Miller"; foaf:mbox <mailto:lisa@miller.nop>;
  :rental-car-max-price 70;
  :owns-car vw:golf].

[ a foaf:Person; foaf:name "Jack Miller"; foaf:mbox <mailto:lisa@miller.nop>;
  :rental-car-max-price 85;
  :owns-car ford:focus].
