mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 09:44:53 +01:00
63 lines
2.2 KiB
JSON
63 lines
2.2 KiB
JSON
|
{
|
||
|
"title": "Publish",
|
||
|
"description": "Highlight the important features of your algorith to make it more discoverable and catch the interest of data consumers.",
|
||
|
"warning": "Given the beta status, publishing on Ropsten or Rinkeby first is strongly recommended. Please familiarize yourself with [the market](https://oceanprotocol.com/technology/marketplaces), [the risks](https://blog.oceanprotocol.com/on-staking-on-data-in-ocean-market-3d8e09eb0a13), and the [Terms of Use](/terms).",
|
||
|
"form": {
|
||
|
"title": "Publish",
|
||
|
"data": [
|
||
|
{
|
||
|
"name": "name",
|
||
|
"label": "Title",
|
||
|
"placeholder": "e.g. Shapes of Desert Plants",
|
||
|
"help": "Enter a concise title.",
|
||
|
"required": true
|
||
|
},
|
||
|
{
|
||
|
"name": "description",
|
||
|
"label": "Description",
|
||
|
"help": "Add a thorough description with as much detail as possible. You can use [Markdown](https://daringfireball.net/projects/markdown/basics).",
|
||
|
"type": "textarea",
|
||
|
"required": true
|
||
|
},
|
||
|
{
|
||
|
"name": "files",
|
||
|
"label": "File",
|
||
|
"placeholder": "e.g. https://file.com/file.json",
|
||
|
"help": "Please provide a URL to your algorith file. This URL will be stored encrypted after publishing.",
|
||
|
"type": "files",
|
||
|
"required": true
|
||
|
},
|
||
|
{
|
||
|
"name": "dockerImage",
|
||
|
"label": "Docker Image",
|
||
|
"placeholder": "e.g. python3.7",
|
||
|
"help": "Please select a predefined image to run your algorithm.",
|
||
|
"type": "select",
|
||
|
"options": ["NodeJS", "Python 3.7"],
|
||
|
"required": true
|
||
|
},
|
||
|
{
|
||
|
"name": "author",
|
||
|
"label": "Author",
|
||
|
"placeholder": "e.g. Jelly McJellyfish",
|
||
|
"help": "Give proper attribution for your algorith.",
|
||
|
"required": true
|
||
|
},
|
||
|
{
|
||
|
"name": "tags",
|
||
|
"label": "Tags",
|
||
|
"placeholder": "e.g. logistics, ai",
|
||
|
"help": "Separate tags with comma."
|
||
|
},
|
||
|
{
|
||
|
"name": "termsAndConditions",
|
||
|
"label": "Terms & Conditions",
|
||
|
"type": "terms",
|
||
|
"options": ["I agree to these Terms and Conditions"],
|
||
|
"required": true
|
||
|
}
|
||
|
],
|
||
|
"success": "Algorithm Published!"
|
||
|
}
|
||
|
}
|