@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#>.
@prefix fd: <http://www.w3.org/2001/tag/fdesc54/classTreeOwl#>.

:nadia a w:Person; g:label "Nadia";
  w:userAgent :ua.

:ua a w:Agent; g:label "exzilla".

:get a w:Request;
  w:sender :ua;
  g:label "GET /weather HTTP/1.1\\nHOST: weather.example";
  w:before :ok;
  w:subject :id.

:ok a w:Response;
  g:label "200 OK...";
  w:body :rep;
  w:binding :b;
  w:subject :id.

:mi g:label "m(i)";
  is :_whole of :ok, :id;
  w:eval :resx.

:resx a w:Resource;
  g:label "Oxaca weather as requested";
  w:representation :rep.

fd:exGraph
  g:hasNode :nadia, :ua, :ok, :get, :resx, :mi;
  g:hasEdgeProperty w:body, w:subject, w:before, w:eval,
	w:userAgent, w:from, w:sender, w:binding,
        :_whole.


