I want a JSON schema that enforces an empty JSON instance, e.g. {}
Is this a good idea and possible?
I tried the following but it allows me to enter anything in the JSON body:
{
"description": "voice mail record",
"type": "object",
"additionalProperties": false,
"properties": {
}
}
}