It is possible to add additional or custom metadata (other than title and description) to a json schema property?
Ideally I'd like to add some metadata like so:
//...
"properties": {
"contactFullName": {
"$ref": "#/definitions/fullName",
"custom": "my custom metadata here"
}
}
//...
Can you add something to definitions
to allow that?