我想知道如果 JSON Lines 文件的结构如下:
{"structure1":"some kind of file header"}
{"structure2": [ {"key1":"aaa", "key2":"bbb"}, {"key1":"one", "key2":"two"}]
{"structure2": [ {"key1":"xxx", "key2":"yyy"}, {"key1":"first", "key2":"second"}]
{"structure3":"maybe some kind of file footer"}
它是否被视为无效的 JSONLines 格式?我查看了http://jsonlines.org/上的标准,但我看不到任何一种方式。谢谢你。