From 53cb99877b6c2016037048b52ea462c3751e1482 Mon Sep 17 00:00:00 2001 From: fr33domlover Date: Sat, 1 Jun 2019 18:25:37 +0000 Subject: [PATCH] Ticket example, still hypothetical because not implemented yet --- FEDERATION.md | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/FEDERATION.md b/FEDERATION.md index 938ea48..cfd8541 100644 --- a/FEDERATION.md +++ b/FEDERATION.md @@ -693,6 +693,70 @@ TODO: #### (4) Tickets +`GET /luke/text-adventure/issues/113` + +```json +{ "@context": + [ "https://www.w3.org/ns/activitystreams" + , { "ext": "https://peers.community/as2-ext#" + , "Ticket": "ext:Ticket" + , "assignedTo": + { "@id": "ext:assignedTo" + , "@type": "@id" + } + , "isResolved": "ext:isResolved" + , "participants": + { "@id": "ext:participants" + , "@type": "@id" + } + , "team": + { "@id": "ext:team" + , "@type": "@id" + } + , "dependsOn": + { "@id": "ext:dependsOn" + , "@type": "@id" + } + , "dependedBy": + { "@id": "ext:dependedBy" + , "@type": "@id" + } + } + ] +, "id": "https://dev.federated.coop/luke/text-adventure/issues/113" +, "type": "Ticket" +, "attributedTo": "https://poetry.space/aviva" +, "published": "2019-02-17T11:31:33Z" +, "updated": "2019-06-01T12:30:36Z" +, "name": "#113" +, "summary": "Game crashes when tasting the coconut cream" +, "content": "..." +, "mediaType": "text/html" +, "source": + { "content": "..." + , "mediaType": "text/markdown" + } +, "replies": + [ ... + ] +, "assignedTo": "https://dev.community/jerry" +, "isResolved": false +, "participants": "https://dev.federated.coop/luke/text-adventure/issues/113/participants" +, "team": "https://dev.federated.coop/luke/text-adventure/issues/113/team" +, "dependsOn": + [ "https://dev.federated.coop/luke/text-adventure/issues/106" + , "https://dev.community/jerry/text-game-engine/issues/1219" + ] +, "dependedBy": "https://dev.federated.coop/luke/text-adventure/issues/87" +} +``` + +TODO replies and depends (ForgeFed #12) + +TODO content/source and media types (ForgeFed #11) + +TODO Offer activity + #### (5) Patches #### (6) Merge requests