# baseURI: http://www.WorkingOntologist.org/Examples/Chapter9/ProductCrosswalk

@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix p:     <http://www.WorkingOntologist.org/Examples/Chapter9/Production#>
@prefix cw:     <http://www.WorkingOntologist.org/Examples/Chapter9/ProductCrosswalk#>
@prefix mfg:     <http://www.workingontologist.org/Examples/Chapter3/Product#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .

<http://www.WorkingOntologist.org/Examples/Chapter9/ProductCrosswalk>
      rdfs:comment "Correspondences ('crosswalk') between data in Chapter 9 and Chapter 3." ;
      a       owl:Ontology .



p:Product1 owl:sameAs mfg:Product4 .
p:Product2 owl:sameAs mfg:Product6 .
p:Product4 owl:sameAs mfg:Product3 .
p:Product5 owl:sameAs mfg:Product1 .
p:Product7 owl:sameAs mfg:Product5 .
p:Product8 owl:sameAs mfg:Product8 .


