Hi there, I was wondering if it was possible to add arbitrary keys in the generated JSON Schema. For instance: ``` # Test - text (string) - My string ``` Currently generates: ``` { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "text": { "type": "string", "description": "My string" } } } ``` But how could I generate for instance? ``` { "id": "https://example.org/test", "description": "My test schema", "$myothercustomkey": true, "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "text": { "type": "string", "description": "My string" } } } ```
Hi there,
I was wondering if it was possible to add arbitrary keys in the generated JSON Schema. For instance:
Currently generates:
But how could I generate for instance?