From 23e5ad649e616b44fb9bbae6440713c40fd80b90 Mon Sep 17 00:00:00 2001 From: mbeylin Date: Wed, 15 Nov 2017 11:12:10 -0500 Subject: [PATCH] updated categories and data schema --- README.md | 5 +++++ docs/documentation.md | 1 + 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 8350362..c496c65 100644 --- a/README.md +++ b/README.md @@ -80,8 +80,13 @@ The schema for the bounty data field is: sourceFileHash: // The IPFS hash of the file associated with the bounty contact: // A string representing the preferred contact method of the issuer of the bounty categories: // an array of strings, representing the categories of tasks which are being requested + githubLink: // The link to the relevant repository } ``` +The current set of categories is: +``` +['Code', 'Bugs', 'Questions', 'Graphic Design', 'Social Media', 'Content Creation', 'Translations', 'Surveys'] +``` The data schema for the fulfillment data field is: ``` { diff --git a/docs/documentation.md b/docs/documentation.md index 8a5eaaa..4f9715e 100644 --- a/docs/documentation.md +++ b/docs/documentation.md @@ -29,6 +29,7 @@ The schema for the bounty data field is: sourceFileHash: // The IPFS hash of the file associated with the bounty contact: // A string representing the preferred contact method of the issuer of the bounty categories: // an array of strings, representing the categories of tasks which are being requested + githubLink: // The link to the relevant repository } ```