I know I said I would wait before implementing new features, but I couldn't wait. Walter, you mentioned something to do with this:
It's only a prototype implementation, the final version will allow this feature to be switched on or off. You can test it by loading the following schema that is a hack of the example you provided in your email
http://json-schema.org/card. Remember to set the radio button to 'JSON Schema'. It has been uploaded to
http://www.jsonschema.net
{
"description": "A representation of a person, company, organization, or place",
"type": "object",
"properties": {
"adr": {
"$ref": "
http://json-schema.org/address"
},
"geo": {
"$ref" : "
http://json-schema.org/geo"
},
"org": {
"type": "object",
"properties": {
"organizationName": {
"type": "string"
},
"organizationUnit": {
"type": "string"
}
}
}
}
}
Is this sort of functionality useful to you?