@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#>.

:id a w:URI;
  g:label "http://weather.example/oxaca";
  w:identifies :res.

:res
    a w:Resource;
    g:label "Oxaca weather info";
    w:representation :rep.

:rep      a w:Representation;
      g:label "<html><head><title>Oxaca...".

fd:theGraph g:subgraph fd:exGraph.

fd:exGraph g:label "Example";
  g:hasNode :id, :res, :rep;
  g:hasEdgeProperty w:identifies, w:representation.

{ ?X a w:URI } => { ?X g:shape "diamond" }.
{ ?X a w:Resource } => { ?X g:shape "ellipse" }.
{ ?X a w:Representation } => { ?X g:shape "box" }.

