summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfr33domlover <fr33domlover@riseup.net>2019-07-06 00:15:31 +0300
committerfr33domlover <fr33domlover@riseup.net>2019-07-06 00:15:31 +0300
commit2803822e29dbfd43871f86fa3dd1993a78b43e4d (patch)
tree5a6820be5cafba1f7ea9d27cadc1d0fb143a7019
parentb291845f83e1355095c7de8a37b000d7c4d3cc91 (diff)
List some ticket properties in vocab spec
These 3 properties are being used in Vervis. Not final, just describing the current speccing status of them.
-rw-r--r--specification/forgefed-vocabulary.md65
1 files changed, 65 insertions, 0 deletions
diff --git a/specification/forgefed-vocabulary.md b/specification/forgefed-vocabulary.md
index 2b2f957..db20e20 100644
--- a/specification/forgefed-vocabulary.md
+++ b/specification/forgefed-vocabulary.md
@@ -160,4 +160,69 @@ are used to track ideas, enhancements, tasks, or bugs.
# Properties
+## assignedTo
+**URI:** `https://forgefed.peers.community/ns#assignedTo`
+
+**Notes:** Identifies the person assigned to work on this ticket.
+
+**Domain:** `Ticket`
+
+**Range:** `Person`
+
+**Functional:** Yes
+
+**Inverse of:** (None)
+
+**Example:**
+
+## isResolved
+
+**URI:** `https://forgefed.peers.community/ns#isResolved`
+
+**Notes:** Specifies whether the ticket is closed, i.e. the work on it is done
+and it doesn't need to attract attention anymore.
+
+**Domain:** `Ticket`
+
+**Range:** `xsd:boolean`
+
+**Functional:** Yes
+
+**Inverse of:** (None)
+
+**Example:**
+
+## dependsOn
+
+**URI:** `https://forgefed.peers.community/ns#dependsOn`
+
+**Notes:** Identifies one or more tickets on which this ticket depends, i.e. it
+can't be resolved without those tickets being resolved too.
+
+**Domain:** `Ticket`
+
+**Range:** `Ticket`
+
+**Functional:** No
+
+**Inverse of:** [dependedBy](#dependedby)
+
+**Example:**
+
+## dependedBy
+
+**URI:** `https://forgefed.peers.community/ns#dependedBy`
+
+**Notes:** Identifies one or more tickets which depends on this ticket, i.e.
+they can't be resolved without this tickets being resolved too.
+
+**Domain:** `Ticket`
+
+**Range:** `Ticket`
+
+**Functional:** No
+
+**Inverse of:** [dependsOn](#dependson)
+
+**Example:**