Skip to content

Commit

Permalink
Remove spurious commas in schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
agdphd committed Jul 28, 2015
1 parent 2bcfdd4 commit 9437556
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions input_schema.json
Expand Up @@ -7,10 +7,10 @@
"items": {
"type": "array",
"items": {
"type": "number",
"type": "number"
}
}
}
},
"required": ["sets"],
"required": ["sets"]
}
10 changes: 5 additions & 5 deletions output_schema.json
Expand Up @@ -7,25 +7,25 @@
"items": {
"type": "array",
"items": {
"type": "number",
"type": "number"
}
}
},
"guaranteedMinimal": {
"type": "boolean",
"type": "boolean"
},
"guaranteedComplete": {
"type": "boolean",
"type": "boolean"
},
"transversals": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "number",
"type": "number"
}
}
}
},
"required": ["guaranteedMinimal", "guaranteedComplete", "transversals"],
"required": ["guaranteedMinimal", "guaranteedComplete", "transversals"]
}

0 comments on commit 9437556

Please sign in to comment.