Closed
Description
Hiya,
I have a schema with
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "title",
"type": "object",
"item": {
"type": "object",
"properties": {
"attribute": {
"$ref": "#/definitions/schema2"
}
},
"required": [
"attribute_info"
]
}
....
something like that.
I kept the form simple with the "*" and a submit button. However the form doesn't render properly where the $ref is.
am I doing something wrong?