Import

If a schema imports a schema then that schema is automatically loaded. When lifting a schema to OWL, a corresponding owl:imports is generated. The URI used in the import is base relative.

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://example.org/">
        <xs:import namespace="http://example.com/" schemaLocation="example.xsd" />
</xs:schema>
# Base: http://example.org/import.owl
@prefix ns1:     <http://example.org/def/> .
@prefix xs:      <http://www.w3.org/2001/XMLSchema> .
@prefix ns2:     <http://example.org/> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix daml:    <http://www.daml.org/2001/03/daml+oil#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xs_:     <http://www.w3.org/2001/XMLSchema#> .
@prefix :        <#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .

<>    a       owl:Ontology ;
      owl:imports <http://example.org/example.owl> .

Generated on Mon Jun 18 16:02:38 2007 for Gloze by  doxygen 1.5.0