# baseURI: http://www.workingontologist.org/Examples/Chapter10/Plush
# imports: http://qudt.org/2.0/vocab/unit/space-and-time
# imports: http://www.schema.org
# prefix: plush

@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dimension: <http://qudt.org/vocab/dimension/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix plush: <http://www.workingontologist.org/Examples/Chapter10/Plush#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix quantitykind: <http://qudt.org/vocab/quantitykind/> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix unit: <http://qudt.org/vocab/unit/> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix voag: <http://voag.linkedmodel.org/schema/voag#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://www.workingontologist.org/Examples/Chapter10/Plush>
  rdf:type owl:Ontology ;
  owl:imports <http://qudt.org/2.0/vocab/unit/space-and-time> ;
  owl:imports <http://www.schema.org> ;
  owl:versionInfo "Created with TopBraid Composer" ;
.
plush:BeautyBar
  rdf:type schema:DaySpa ;
  schema:makesOffer plush:Offer1 ;
  schema:makesOffer plush:Offer2 ;
  schema:makesOffer plush:Offer3 ;
  rdfs:label "Beauty bar" ;
.
plush:ChairMassage
  rdf:type schema:TypeAndQuantityNode ;
  schema:amountOfThisGood "15" ;
  schema:typeOfGood plush:Massage ;
  schema:unitCode unit:MIN ;
.
plush:Massage
  rdf:type schema:Service ;
  rdfs:label "Relaxing Massage" ;
.
plush:Massage1_5
  rdf:type schema:TypeAndQuantityNode ;
  schema:amountOfThisGood "1.5" ;
  schema:typeOfGood plush:Massage ;
  schema:unitCode unit:HR ;
.
plush:Offer1
  rdf:type schema:Offer ;
  schema:includesObject plush:Massage1_5 ;
  schema:priceSpecification plush:PriceSpec1 ;
  rdfs:label "Hour and a half massage" ;
.
plush:Offer10
  rdf:type schema:Offer ;
  schema:includesObject plush:ChairMassage ;
  schema:priceSpecification plush:PriceSpec10 ;
  rdfs:label "Chair massage" ;
.
plush:PriceSpec1
  rdf:type schema:UnitPriceSpecification ;
  schema:price "80.0" ;
  schema:priceCurrency "USD" ;
.
plush:PriceSpec10
  rdf:type schema:UnitPriceSpecification ;
  schema:price "15.0" ;
  schema:priceCurrency "USD" ;
.
plush:StyleCafe
  rdf:type schema:DaySpa ;
  schema:makesOffer plush:Offer10 ;
.
