@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 test: <http://www.daml.org/2003/06/ruletests/test-ont#> .
@prefix airport-ont: <http://www.daml.org/2001/09/html/airport-ont#> .
@prefix airport: <http://www.daml.org/cgi-bin/airport?> .
@prefix map: <http://www.daml.org/2001/06/map/map-ont#> .
@prefix : <#> .

<> a test:Test;
   owl:versionInfo "$Id: translation-0.n3,v 1.1 2003/06/25 10:52:01 mdean Exp $";
   rdfs:comment "most basic ontology translation".

:Class1 a owl:Class.
:Class2 a owl:Class.

:object1 a :Class1;
  :prop1 "anything".

{ ?x a :Class1;
     :prop1 ?v }
=>
{ ?x a :Class2;
     :prop2 ?v
}
.

{ :object1 a :Class2;
           :prop2 "anything" }
=>
{ <> test:successful "true" }
.
