Skip to content

Commit

Permalink
Make breed fractions array of objects.
Browse files Browse the repository at this point in the history
  • Loading branch information
cookeac authored and cookeac committed Nov 21, 2019
1 parent 6b2200a commit f01f90f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Release Candidate Messages/exampleUrlScheme.json
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@
"$ref": "exampleErrorResource.json"
}
}
},
}
}
}
}
17 changes: 10 additions & 7 deletions Release Candidate Messages/icarBreedFractionsType.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@
"fractions": {
"type": "array",
"items": {
"breed": {
"$ref": "icarBreedIdentifierType.json"
},
"fraction": {
"type": "number",
"format": "double",
"description": "The proportion of the denominator that this breed comprises."
"type": "object",
"properties": {
"breed": {
"$ref": "icarBreedIdentifierType.json"
},
"fraction": {
"type": "number",
"format": "double",
"description": "The proportion of the denominator that this breed comprises."
}
}
}
}
Expand Down

0 comments on commit f01f90f

Please sign in to comment.