@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix webarch: <http://www.w3.org/2001/tag/fdesc54/webarch#>.
@prefix        : <http://www.w3.org/2001/tag/fdesc54/webarch#>.
@prefix s: <http://www.w3.org/2000/01/rdf-schema#> .


:representation a owl:ObjectProperty; s:label "representation";
  s:domain :Resource;
  s:range :Representation.

:Representation a owl:Class; s:label "Representation".

:representationData a owl:FunctionalProperty;
  s:label "data";
  s:domain :Representation;
  s:range :OctetSequence.

:mediaType a owl:FunctionalProperty;
  s:label "mediaType";
  s:domain :Representation;
  s:range :InternetMediaType.

:InternetMediaType a owl:Class; s:label "Internet Media Type".

# @@get this from XML Schema part 2
:OctetSequence s:subClassOf [ a s:Datatype ]; #@@which one?
  s:label "Octet Sequence".
