#  Tracking of issues in a very simple form
# Just use your own properties to add your own functionality
#
#  IJ TBL  20002/01
#

@prefix : <track#>.
@prefix  t: <track#>.

@prefix r:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix s: <http://www.w3.org/2000/01/rdf-schema#> .

@prefix doc: <http://www.w3.org/2000/10/swap/pim/doc#> .
@prefix log: <http://www.w3.org/2000/10/swap/log#> .
:Issue a s:Class.

:title a r:Property;
    s:comment "Short title, less than one line".

:description a r:Property;
    s:range log:String;
    s:comment "The description of the problem or issue raised". 

:resolution a r:Property;
    s:range log:String;
    s:comment "A summary of the resolution of the issue - from the closing document.". 

:notes a r:Property;
    s:comment "Comments about this eg for the use of group secretary". 

# State changes

:opens a r:Property; s:domain doc:Work; r:range t:Issue;
    s:label "opens";
    s:comment "This document is the one which opens this issue".

:closes a r:Property; s:domain doc:Work; r:range t:Issue.

:rejects a r:Property s:domain doc:Work; r:range t:Issue.

#ends


