Skip to content
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.

Add a cite field #23

Merged
merged 1 commit into from
Nov 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions spec/manifest.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@
"maxLength": 100,
"description": "(optional) The maintainer of this gear. Can be used to distinguish the algorithm author from the gear maintainer."
},
"cite": {
"type": "string",
"maxLength": 5000,
"description": "(optional) Any citations relevant to the algorithm(s) or work present in the gear."
},
"config": {
"type": "object",
"additionalProperties": {
Expand Down
5 changes: 4 additions & 1 deletion spec/readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Flywheel Gear Spec (v0.1.3)
# Flywheel Gear Spec (v0.1.4)

This document describes the structure of a Flywheel Gear.

Expand Down Expand Up @@ -49,6 +49,9 @@ Note, the `// comments` shown below are not JSON syntax and cannot be included i
// Can be the same as the author field if both roles were filled by the same individual.
"maintainer": "Nathaniel Kofalt",

// (Optional) Any citations you wish to add.
"cite": "",

// Must be an OSI-approved SPDX license string or 'Other'. Ref: https://spdx.org/licenses
"license": "Apache-2.0",

Expand Down