{
  "branch": "Asynchronous",
  "data": {
    "code": "090001",
    "statementHandle": "01b1e5d3-0606-7c93-0001-4aae0000e506",
    "sqlState": "00000",
    "message": "Statement executed successfully.",
    "createdOn": 1234567890123,
    "statementStatusUrl": "/api/v2/statements/01b1e5d3-0606-7c93-0001-4aae0000e506",
    "resultSetMetaData": {
      "numRows": 2,
      "format": "jsonv2",
      "rowType": [
        {
          "name": "USER_ID",
          "database": "MYDB",
          "schema": "PUBLIC",
          "table": "USERS",
          "type": "FIXED",
          "scale": 0,
          "precision": 38,
          "nullable": false
        },
        {
          "name": "USER_NAME",
          "database": "MYDB",
          "schema": "PUBLIC",
          "table": "USERS",
          "type": "TEXT",
          "length": 16777216,
          "nullable": true
        },
        {
          "name": "CREATED_AT",
          "database": "MYDB",
          "schema": "PUBLIC",
          "table": "USERS",
          "type": "TIMESTAMP_NTZ",
          "scale": 9,
          "nullable": true
        }
      ],
      "partitionInfo": [
        {
          "rowCount": 2,
          "uncompressedSize": 256,
          "compressedSize": 128
        }
      ]
    },
    "data": [
      [
        "1",
        "john.doe@example.com",
        "2024-01-15 10:30:00.000"
      ],
      [
        "2",
        "jane.smith@example.io",
        "2024-01-16 14:22:10.000"
      ]
    ]
  }
}