{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"floats-aren't-terrible-I'm-told": {
"type": "object",
"properties": {
"flush_timeout": {
"type": "number",
"format": "float"
}
}
},
"just-one": {
"type": [
"string"
]
},
"anything-works": {
"type": "object",
"required": [
"value"
]
}
}
}