I am looking at this:
https://json-schema.org/understanding-json-schema/reference/type.html
I have an object with a function property, but I don't want to set additionalProperties to true. So I want do something like:
"properties": {
"getHostNameSync": {
"type": "any", // << any
"required": false
}
}
but it says my schema definition is invalid. Is there a way to include functions properties?