# $Id: idRes.n3,v 1.1 2003/11/24 10:22:29 connolly Exp $
@prefix        : <http://www.w3.org/2001/tag/fdesc54/webarch#> .
@prefix webarch: <http://www.w3.org/2001/tag/fdesc54/webarch#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsdt: <http://www.w3.org/2001/XMLSchema#> .
    
    <>     rdfs:comment """

arch doc ontology in RDF/OWL.

$Id: idRes.n3,v 1.1 2003/11/24 10:22:29 connolly Exp $
$Log: idRes.n3,v $
Revision 1.1  2003/11/24 10:22:29  connolly
mu:composite replaces currying

Revision 1.3  2003/11/06 23:58:08  connolly
trying to replace intro diagram in webarch WD

Revision 1.2  2003/11/06 19:16:11  connolly
idRes, frag diagrams done, except spurious Restriction bubbles

Revision 1.1  2003/11/06 18:25:01  connolly
oops; saving this version

Revision 1.13  2003/11/05 23:36:40  ijacobs
two more labels

Revision 1.12  2003/11/05 21:31:17  ijacobs
Removed (empty) attempts to create intersection with regexps
in RFC2396. TBL has a bnf ontology; might be nice to just point
to the production in the RFC that is relevant.

Revision 1.11  2003/11/05 20:35:25  ijacobs
added labels to classes

... and so on, see 2003/10/16-webarch-owl.rdf log
  """ .
    
    :Representation     a owl:Class;
         rdfs:label "Representation" .
    
    :Resource     a owl:Class;
         rdfs:label "Resource" .
    
    :URI     a owl:Class;
         rdfs:comment """
    Still want to limit syntax of URIs to regexp in RFC2396 [Ij]
  """,
                """
    URIs are defined by RFC2396 (and descendents).
    """;
         rdfs:isDefinedBy <http://www.apache.org/~fielding/uri/rev-2002/rfc2396bis.html>;
         rdfs:label "URI" .
    
    :identifies     a owl:FunctionalProperty;
         rdfs:comment """not an owl:ObjectProperty; URIs
    can identify strings, numbers, and other datatype values
    """;
         rdfs:domain :URI;
         rdfs:label "identifies";
         rdfs:range :Resource .
    
    :representation     a owl:ObjectProperty;
         rdfs:domain :Resource;
         rdfs:label "representation";
         rdfs:range :Representation .
