-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(docs): proposal template drafting #1330
Draft
stevenj
wants to merge
23
commits into
main
Choose a base branch
from
feat/proposal-template-drafting
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 18 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
4343c76
docs(cat-gateway): Proposal schema templates WIP
stevenj 9afefdf
Merge branch 'main' into feat/proposal-template-drafting
stevenj 0b44704
feat(cat-gateway): wip f14 templates
stevenj bb6d8a9
feat(cat-gateway): initialization of f14 templates
nathanbogale 0496a04
feat(cat-gateway: added proposal schema and example of f14 templates
nathanbogale 057ec96
fix(cat-gateway): added better pattern per schema section of f14 temp…
nathanbogale 68cb23b
fix(cat-gateway): json types and syntax update
nathanbogale 4efb65c
docs(cat-gateway): add example of common field types to help UI render
stevenj 4f617e3
Merge branch 'feat/proposal-template-drafting' of github.com:input-ou…
stevenj e89574f
docs(cat-gateway): Suggested restructuring
stevenj d4b99de
fix: added all guidance as html, added additional sub fields fields
nathanbogale 9422df0
fix: captured all new fields added in this file
nathanbogale 3fe083f
fix: updated example proposal
nathanbogale a07f3bc
fix(cat-gateway): rename section breaks to align with design
stevenj 5a1a6dd
Merge branch 'feat/proposal-template-drafting' of github.com:input-ou…
stevenj 5eee04d
docs(cat-gateway): Finish the template as at F13 state
stevenj 5fbec5f
Merge branch 'main' into feat/proposal-template-drafting
stevenj 428885d
fix: CI check failure, over spelling and markdown
nathanbogale 59e8a99
fix: added first wave of x-orders to ssegments and sections
nathanbogale 3cc0b7f
fix: Translation: added originalDocumentLink, if/then condition modified
nathanbogale 9a02d58
fix: milestones updated, added x-note to definitions, minor structure…
nathanbogale 3d81d9a
fix: updated the example, translation example failing
nathanbogale 21f366b
fix: horizons grouping issue fixed
nathanbogale File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
274 changes: 274 additions & 0 deletions
274
...nt_templates/proposal/F14-Generic-Steven/0ce8ab38-9258-4fbc-a62e-7faa6e58318f.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,274 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Catalyst Fund 14 Base Proposal Template", | ||
"description": "A structured template for creating Fund 14 proposals", | ||
"definitions": { | ||
"singleLineTextEntry": { | ||
"type": "string", | ||
"contentMediaType": "text/plain", | ||
"pattern": "^.*$" | ||
}, | ||
"multiLineTextEntry": { | ||
"type": "string", | ||
"contentMediaType": "text/plain", | ||
"pattern": "^[\\S\\s]$" | ||
}, | ||
"dropDownSingleSelect": { | ||
"type": "string", | ||
"contentMediaType": "text/plain", | ||
"pattern": "^.*$", | ||
"format": "dropDownSingleSelect" | ||
}, | ||
"tokenValueCardanoADA": { | ||
"type": "integer", | ||
"format": "token:cardano:ada" | ||
}, | ||
"durationInMonths": { | ||
"type": "integer", | ||
"format": "datetime:duration:months" | ||
}, | ||
"agreementConfirmation": { | ||
"type": "boolean", | ||
"format": "checkbox", | ||
"default": false, | ||
"const": true | ||
}, | ||
"yesNoChoice": { | ||
"type": "boolean", | ||
"format": "yes/no", | ||
"default": false | ||
}, | ||
"uri": { | ||
"type": "string", | ||
"format": "uri", | ||
"contentMediaType": "text/plain", | ||
"maxLength": 1024 | ||
}, | ||
"uriList": { | ||
"type": "array", | ||
"format": "uriList", | ||
"uniqueItems": true, | ||
"default": [], | ||
"items": { | ||
"$ref": "#/definitions/uri" | ||
} | ||
} | ||
}, | ||
"type": "object", | ||
"properties": { | ||
"$schema": { | ||
"type": "string", | ||
"format": "path", | ||
"const": "./0ce8ab38-9258-4fbc-a62e-7faa6e58318f.schema.json", | ||
"readOnly": true | ||
}, | ||
"general": { | ||
"type": "object", | ||
"properties": { | ||
"title": { | ||
"$ref": "#/definitions/singleLineTextEntry", | ||
"title": "Proposal title", | ||
"description": "<p><strong>Please note</strong> we suggest you use no more than 60 characters for your proposal title so that it can be easily viewed in the voting app.</p><p><br></p><p>The title should clearly express what the proposal is about. Voters can see the title in the voting app, even without opening the proposal, so a clear, unambiguous, and concise title is very important.</p>", | ||
"maxLength": 80, | ||
"minLength": 0 | ||
}, | ||
"applicant": { | ||
"$ref": "#/definitions/singleLineTextEntry", | ||
"title": "Name and surname of main applicant", | ||
"description": "<p>Please provide the name and surname of the main applicant. The main applicant is considered as the individual responsible for the project and the person authorized to act on behalf of other applicants (where applicable).</p>", | ||
"maxLength": 80, | ||
"minLength": 0 | ||
}, | ||
"applicant_type": { | ||
"$ref": "#/definitions/dropDownSingleSelect", | ||
"title": "Are you delivering this project as an individual or as an entity (whether formally incorporated or not)", | ||
"description": "<p>Please select from one of the following:</p>", | ||
"enum": [ | ||
"Individual", | ||
"Entity (Incorporated)", | ||
"Entity (Not Incorporated)" | ||
], | ||
"default": "Individual" | ||
}, | ||
"co-proposers": { | ||
"$ref": "#/definitions/multiLineTextEntry", | ||
"title": "Co-proposers and additional applicants", | ||
"description": "<p>List any persons who are submitting the proposal jointly with the main applicant. Make sure you have confirmed approval/awareness with these individuals / accounts before adding them. If there is more than one proposer, identify the lead person who is authorized to act on behalf of other co-proposers.</p><p><br></p><p><strong>IMPORTANT - A maximum of 6 (six) proposals can be led or co-proposed by the same applicant or enterprise. Please, </strong><a href=\"https://docs.projectcatalyst.io/current-fund/fund-basics/fund-rules\"><strong>reference Fund13 rules</strong></a><strong> for added detail.</strong></p>", | ||
"maxLength": 1024, | ||
"minLength": 0 | ||
}, | ||
"requested_funds": { | ||
"$ref": "#/definitions/tokenValueCardanoADA", | ||
"title": "Requested funds in ada", | ||
"description": "<p>There is a minimum and a maximum amount of funding that can be requested in a single Catalyst proposal. These are outlined below per each category:</p><p><br></p><p>Minimum Funding Amount per proposal:</p><ul><li>Cardano Open: <strong>₳15,000</strong></li><li>Cardano Uses Cases: <strong>₳15,000</strong></li><li>Cardano Partners: <strong>₳500,000</strong></li></ul><p><br></p><p>Maximum Funding Amount per proposal:</p><ul><li>Cardano Open: </li><li>Developers (technical): <strong>₳200,000</strong></li><li>Ecosystem (non-technical): <strong>₳100,000</strong></li><li>Cardano Uses Cases:</li><li>Concept: <strong>₳150,000</strong></li><li>Product: <strong>₳500,000</strong></li><li>Cardano Partners:</li><li>Enterprise R&D: <strong>₳2,000,000 </strong></li><li>Growth & Acceleration: <strong>₳2,000,000 </strong></li></ul>", | ||
"minimum": 1, | ||
"maximum": 18446744073709551615 | ||
}, | ||
"duration": { | ||
"$ref": "#/definitions/durationInMonths", | ||
"title": "Please specify how many months you expect your project to last (from 2-12 months)", | ||
"description": "<p>Minimum 2 months - Maximum 12 months.</p><p><br></p><p>The scope of your funding request and this project is expected to produce the deliverables you specify in the proposal within 2-12 months.</p><p><br></p><p>If you believe your project will take longer than 12 months, consider reducing the project’s scope so that it becomes achievable within 12 months.</p><p><br></p><p>If your project completes earlier than scheduled so long as you have submitted your PoAs and Project Close-out report and video then your project can be closed out.</p>", | ||
"minimum": 2, | ||
"maximum": 12 | ||
}, | ||
"translated": { | ||
"$ref": "#/definitions/yesNoChoice", | ||
"title": "Please indicate if your proposal has been auto-translated into English from another language", | ||
"description": "<p>YES/NO - Tick YES so readers are reminded that your proposal has been translated, and that they should be tolerant of any language imperfections.</p><p><br></p><p>You can either link a document with your proposal in its original language OR provide your response in your native language after the English language in each question if you wish.</p><p><br></p><p>Tick NO if your proposal has not been auto-translated into English from another language.</p>" | ||
}, | ||
"problem": { | ||
"$ref": "#/definitions/multiLineTextEntry", | ||
"title": "What is the problem you want to solve? (200-character limit including spaces)", | ||
"description": "<p>Ensure you present a well-defined problem. What is the core issue that you hope to fix? Remember: the reader might not recognize the problem unless you state it clearly.</p><p><br></p><p>This answer will be displayed on the Catalyst voting app, so voters will see it even if they don't open your proposal to read it in detail.</p>", | ||
"maxLength": 200, | ||
"minLength": 1 | ||
}, | ||
"solution": { | ||
"$ref": "#/definitions/multiLineTextEntry", | ||
"title": "Summarize your solution to the problem (200-character limit including spaces)", | ||
"description": "<p>Focus on what you are going to do, or make, or change, to solve the problem. So not 'There should be a way to....' but 'We will make a...'</p><p><br></p><p>Clearly state how the solution addresses the specific problem you have identified - connect the 'why' and the 'how'.</p><p><br></p><p>This answer will be displayed on the Catalyst voting app, so voters will see it even if they do not open your proposal and read it in detail.</p>", | ||
"maxLength": 200, | ||
"minLength": 1 | ||
}, | ||
"links": { | ||
"$ref": "#/definitions/uriList", | ||
"title": "Website / GitHub repository, White paper, Marketing or any other relevant link", | ||
"description": "<p>Here, provide links to yours or your partner organization’s website, repository, or marketing. Alternatively, provide links to any whitepaper or other publication relevant to your proposal.</p><p><br></p><p>Note however that this is extra information that voters and Community Reviewers might choose not to read. You should not fail to include any of the questions in this form because you feel the answers can be found elsewhere.</p><p><br></p><p>If any links are specified make sure these are added in good order (first link must be present before specifying second). Also ensure all links include ‘https’. Without these steps, the form will not be submittable and show errors.</p>", | ||
"minItems": 0, | ||
"maxItems": 3 | ||
}, | ||
"dependencies": { | ||
"$ref": "#/definitions/multiLineTextEntry", | ||
"title": "If you have any dependencies then, please describe what the dependency is and why you believe it is essential for your project’s delivery. If NO, please write “No dependencies.”", | ||
"description": "<p>Here you should list any dependencies and prerequisites for your project’s success. These are usually external factors (such as third-party suppliers, external resources, third-party software, etc.) that may cause a delay, since a project has less control over them. In case of third party software, indicate whether you have the necessary licenses and permission to use such software.</p>", | ||
"maxLength": 1024, | ||
"minLength": 0 | ||
}, | ||
"open_source": { | ||
"$ref": "#/definitions/yesNoChoice", | ||
"title": "Will your project’s output/s be fully open source?", | ||
"description": "<p><a href=\"https://docs.projectcatalyst.io/current-fund/proposal-submission/additional-guidance\">Open source</a> refers to something people can modify and share because its design is publicly accessible. </p><p><br></p><p>Open source software is software with source code that anyone can inspect, modify, and enhance. Conversely, only the original authors of proprietary software can legally copy, inspect, and alter that software.</p>" | ||
}, | ||
"license_info": { | ||
"$ref": "#/definitions/multiLineTextEntry", | ||
"title": "[GENERAL] Please provide here more information on the open source status of your project outputs", | ||
"description": "<p>If you answered YES to the above question:</p><p><br></p><p>If declaring the project is open source in the application form, the project should be open source-available throughout the entire lifecycle of the project with a declared open-source repository.</p><p><br></p><p>Please indicate here the type of license you intend to use for open source and provide any further information you feel is relevant to the open source status of your project outputs. </p><p><br></p><p>If only certain elements of your code will be open source please clarify which elements will be open source here. </p><p><br></p><p>If you answered NO to the above question, please give further details as to why your projects outputs will not be open source.</p>", | ||
"maxLength": 1024, | ||
"minLength": 0 | ||
} | ||
}, | ||
"required": [ | ||
"title", | ||
"applicant", | ||
"applicant_type", | ||
"requested_funds", | ||
"duration", | ||
"translated", | ||
"problem", | ||
"solution", | ||
"open_source", | ||
"license_info" | ||
] | ||
}, | ||
"metadata": { | ||
"title": "Horizons", | ||
"description": "<p>Please choose the most relevant category group and tag related to the outcomes of your proposal. Can select only one group and one tag.</p>", | ||
"format": "nested-tag-selector", | ||
"oneOf": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"group": { | ||
"type": "string", | ||
"const": "Governance" | ||
}, | ||
"tag": { | ||
"type": "string", | ||
"enum": [ | ||
"Governance", | ||
"DAO" | ||
] | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"group": { | ||
"type": "string", | ||
"const": "Education" | ||
}, | ||
"tag": { | ||
"type": "string", | ||
"enum": [ | ||
"Education", | ||
"Learn to Earn", | ||
"Training", | ||
"Translation" | ||
] | ||
} | ||
} | ||
}, | ||
{ | ||
"group": { | ||
"type": "string", | ||
"const": "Community & Outreach" | ||
}, | ||
"tag": { | ||
"type": "string", | ||
"enum": [ | ||
"Connected Community", | ||
"Community", | ||
"Community Outreach", | ||
"Social Media" | ||
] | ||
} | ||
}, | ||
{ | ||
"group": { | ||
"type": "string", | ||
"const": "Development & Tools" | ||
}, | ||
"tag": { | ||
"type": "string", | ||
"enum": [ | ||
"Developer Tools", | ||
"L2", | ||
"Infrastructure", | ||
"Analytics", | ||
"AI", | ||
"Research", | ||
"UTXO", | ||
"P2P" | ||
] | ||
} | ||
} | ||
] | ||
}, | ||
"agreements": { | ||
"type": "object", | ||
"properties": { | ||
"fund_rules": { | ||
"$ref": "#/definitions/agreementConfirmation", | ||
"title": "Fund Rules:", | ||
"description": "<p>By submitting a proposal to Project Catalyst Fund13, I confirm that I have read and agree to be bound by the<a href=\"https://docs.projectcatalyst.io/current-fund/fund-basics/fund-rules\"> Fund Rules</a>.</p>" | ||
}, | ||
"terms_and_conditions": { | ||
"$ref": "#/definitions/agreementConfirmation", | ||
"title": "Terms and Conditions:", | ||
"description": "<p>By submitting a proposal to Project Catalyst Fund13, I confirm that I have read and agree to be bound by the<a href=\"https://docs.projectcatalyst.io/current-fund/fund-basics/project-catalyst-terms-and-conditions\"> Project Catalyst Terms and Conditions</a>.</p>" | ||
}, | ||
"privacy_policy": { | ||
"$ref": "#/definitions/agreementConfirmation", | ||
"title": "Privacy Policy: ", | ||
"description": "<p>I acknowledge and agree that any data I share in connection with my participation in Project Catalyst Fund13 will be collected, stored, used and processed in accordance with the Catalyst FC’s <a href=\"https://docs.projectcatalyst.io/current-fund/fund-basics/project-catalyst-terms-and-conditions/catalyst-fc-privacy-policy\">Privacy Policy</a>.</p>" | ||
} | ||
}, | ||
"required": [ | ||
"fund_rules", | ||
"terms_and_conditions", | ||
"privacy_policy" | ||
] | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...ture/08_concepts/document_templates/proposal/F14-Generic-Steven/proposal.F14.example.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"$schema": "./0ce8ab38-9258-4fbc-a62e-7faa6e58318f.schema.json", | ||
"general": { | ||
"title": "Single line plain text .....", | ||
"links": [ | ||
"http://notauri", | ||
"ftp://some_old_site", | ||
"cardano://some-block" | ||
], | ||
"applicant_type": "Individual", | ||
}, | ||
"metadata": { | ||
"group": "Education", | ||
"tag": "Learn to Earn" | ||
}, | ||
"agreements": { | ||
"fund_rules": true, | ||
"terms_and_conditions": true, | ||
"privacy_policy": true | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JsonSchema has structuring tags one of which is $def, should that be used instead of "definitions" for the purpose of defining reusable structures
https://json-schema.org/understanding-json-schema/structuring#defs