{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OverrideDocs struct", "description": "New description", "type": "object", "required": [ "my_int", "my_undocumented_bool" ], "properties": { "my_int": { "title": "My integer", "description": "This is an i32", "type": "integer", "format": "int32" }, "my_undocumented_bool": { "type": "boolean" } } }