{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "MyStructWithInlineCodeTable", "description": "This is example:\n\n| A | B |\n|---|---|\n| 1 | 2 |\n| 3 | 4 |\n| 5 | 6 | this is last line", "type": "object", "required": [ "my_int" ], "properties": { "my_int": { "title": "An integer", "type": "integer", "format": "int32" } } }