url type added
+ support for `Url` columns
This commit is contained in:
@ -1,3 +1,3 @@
|
||||
id,name,is_good,score,email,json,date
|
||||
1,john,1,0.8412384213497,john.doe@example.com,[],2023-03-05T00:35:21.104Z
|
||||
2,fire,0,-80347329472,firebase@google.com,{"xd": "nice meme"},
|
||||
id,name,is_good,score,email,json,date,url
|
||||
1,john,1,0.8412384213497,john.doe@example.com,[],2023-03-05T00:35:21.104Z,https://example.com
|
||||
2,fire,0,-80347329472,firebase@google.com,{"xd": "nice meme"},,sftp://fire@8.8.8.8/base.txt
|
Can't render this file because it contains an unexpected character in line 3 and column 44.
|
@ -6,7 +6,8 @@
|
||||
"score": 0.8412384213497,
|
||||
"email": "john.doe@example.com",
|
||||
"json": [],
|
||||
"date": "2023-03-05T00:35:21.104Z"
|
||||
"date": "2023-03-05T00:35:21.104Z",
|
||||
"url": "https://example.com"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
@ -17,6 +18,7 @@
|
||||
"json": {
|
||||
"xd": "nice meme"
|
||||
},
|
||||
"date": null
|
||||
"date": null,
|
||||
"url": "sftp://fire@8.8.8.8/base.txt"
|
||||
}
|
||||
]
|
||||
|
Reference in New Issue
Block a user