Skip to content

Commit

Permalink
Add missing sample value type specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
annakrystalli committed Apr 30, 2024
1 parent 4c23950 commit ef43d29
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions v3.0.0/tasks-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1190,10 +1190,18 @@
]
},
"minimum": {
"description": "The minimum inclusive valid sample value from the predictive distribution"
"description": "The minimum inclusive valid sample value from the predictive distribution.",
"type": [
"number",
"integer"
]
},
"maximum": {
"description": "The maximum inclusive valid sample value from the predictive distribution"
"description": "The maximum inclusive valid sample value from the predictive distribution.",
"type": [
"number",
"integer"
]
}
},
"required": [
Expand Down

0 comments on commit ef43d29

Please sign in to comment.