Skip to content

Commit

Permalink
fixes bug 1294088 - JSON Schema ambiguous types on certain keys (#3460)
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Bengtsson committed Sep 20, 2016
1 parent 757ae03 commit 8f64da4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions socorro/schemas/crash_report.json
Expand Up @@ -63,7 +63,7 @@
"description": "Notes from the application that crashed. Mostly contains graphics-related annotations."
},
"build_id": {
"type": ["integer", "string", "null"],
"type": ["string", "null"],
"description": "The unique build identifier of this version, which is a timestamp of the form YYYYMMDDHHMMSS. "
},
"classifications": {
Expand Down Expand Up @@ -229,7 +229,7 @@
}
},
"tiny_block_size": {
"type": ["integer", "string", "null"],
"type": ["string", "null"],
"description": "If present, the total size of all memory regions in the crashing process that are smaller than 1 MB."
},
"thread_count": {
Expand Down Expand Up @@ -257,7 +257,7 @@
}
},
"write_combine_size": {
"type": ["integer", "string", "null"],
"type": ["string", "null"],
"description": "If present, the total size of all committed memory regions in the crashing process marked with PAGE_WRITECOMBINE."
}
}
Expand Down

0 comments on commit 8f64da4

Please sign in to comment.