I am trying to use this playground to find a schema which will allow me to show an object addable custom properties (basically I want the user to enter an associative array).
When I do this:
{
"title": "My object",
"type": "object",
"additionalProperties": true
}
I get this
But I don't want the titles "newKey Key" and "newKey" to show.
I tried disabling labels in the uischema
{
"additionalProperties": {
"ui:label": false
}
}
But that only disables them for the values, not the keys
How do I get rid of the "newKey Key"?

