Let's say I have a type that will be boolean, but I don't just want to specify that it will be boolean, I want to specify that it will have the value false. To just specify that it will be boolean I do the following:
{
"properties": {
"some_flag": {
"type": "boolean"
}
}
}
I have tried substituting "boolean" above for "false" and false (without quotes), but neither works.