Skip to content

Commit

Permalink
Allow Firmware to be null in machine configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
abalmos committed May 24, 2016
1 parent db57ae2 commit 2104dee
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ module.exports = {
minLength: 1
},
FirmwareVersion: {
type: 'string'
anyOf: [{
type: 'string'
},
{
type: 'null'
}]
},
ForwardAngle: {
anyOf: [{
Expand Down

0 comments on commit 2104dee

Please sign in to comment.