Skip to content
This repository has been archived by the owner on Mar 14, 2019. It is now read-only.

Commit

Permalink
Removed the quanti and dir properties, instead replaces them by str f…
Browse files Browse the repository at this point in the history
…rom and to
  • Loading branch information
Tim Poisot committed Jul 16, 2013
1 parent 15268b8 commit 2345cdb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
4 changes: 1 addition & 3 deletions examples/INTERACTION_predation.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@
"id": "1",
"ecotype": "predation",
"pop_from": "1",
"pop_to": "2",
"directional": true,
"quantitative": false
"pop_to": "2"
}
21 changes: 11 additions & 10 deletions schemes/interaction.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "object",
"properties": {
"id": {
"description": "Access code for the population in the local database",
"description": "Access code for the interaction in the local database",
"type": "string"
},
"ecotype": {
Expand All @@ -21,22 +21,23 @@
"description": "ID of the population receiving the interaction",
"type": "string"
},
"directional": {
"description": "Tells whether the interaction is directional",
"type": "boolean"
"strength_f": {
"description": "Strength of the interaction for the FROM population",
"type": "number"
},
"quantitative": {
"description": "Tells whether the interaction is quantitative",
"type": "boolean"
"units_f": {
"description": "Units in which the strength was measured",
"type": "string"
},
"strength": {
"description": "Strength of the interaction",
"strength_t": {
"description": "Strength of the interaction for the TO population",
"type": "number"
},
"units": {
"units_t": {
"description": "Units in which the strength was measured",
"type": "string"
},

"description": {
"description": "Some additional informations about the population",
"type": "string"
Expand Down

0 comments on commit 2345cdb

Please sign in to comment.