メインコンテンツまでスキップ
メインコンテンツまでスキップ

JSONCompactStrings

InputOutputAlias

説明

JSONCompactStrings フォーマットは、データ行がオブジェクトではなく配列として出力される点のみが JSONStrings と異なります。

使用例

{
        "meta":
        [
                {
                        "name": "num",
                        "type": "Int32"
                },
                {
                        "name": "str",
                        "type": "String"
                },
                {
                        "name": "arr",
                        "type": "Array(UInt8)"
                }
        ],

        "data":
        [
                ["42", "hello", "[0,1]"],
                ["43", "hello", "[0,1,2]"],
                ["44", "hello", "[0,1,2,3]"]
        ],

        "rows": 3,

        "rows_before_limit_at_least": 3,

        "statistics":
        {
                "elapsed": 0.001572097,
                "rows_read": 3,
                "bytes_read": 24
        }
}

フォーマット設定