@prefix w: <http://www.w3.org/2001/tag/fdesc54/webarch#>.
@prefix g: <http://www.w3.org/2001/02pd/gv#>.
@prefix fd: <http://www.w3.org/2001/tag/fdesc54/classTreeOwl#>.
@prefix : <webarch-ex#>.

:rep w:mediaType :html;
  w:representationData :d.

:html a w:InternetMediaType; g:label "text/html".

:d a w:OctetSequence;
  g:label "<html><head><title>Oxaca...".

:res w:representation :rep2.

:rep2 a w:Representation;
  g:label "Oxaca...";
  w:mediaType :text;
  w:representationData :d2.

:text a w:InternetMediaType; g:label "text/plain".

:d2 a w:OctetSequence;
  g:label "Oxaca...".


fd:exGraph g:hasNode :rep, :rep2, :html, :text, :d, :d2;
  g:hasEdgeProperty w:mediaType, w:representationData.

{ ?X a w:InternetMediaType } => { ?X g:shape "ellipse" }.
{ ?X a w:OctetSequence } => { ?X g:shape "box"; g:style "bold" }.
