Skip to content

Commit d8c44c8

Browse files
1 parent 9e898fb commit d8c44c8

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

openapi/swagger.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,20 @@
449449
"example": "Name,Age,Birthday\nAlice,25,2024-08-29T09:46:16.722Z\nBob,30,2020-01-15T09:00:16.722Z"
450450
}
451451
},
452+
"text/tab-separated-values": {
453+
"schema": {
454+
"type": "string",
455+
"description": "A TSV string. The first line is column IDs, and each subsequent line is a row of data. The schema will be inferred from the data. The name of the table must be passed in the query parameter `name`.",
456+
"example": "Name\tAge\tBirthday\nAlice\t25\t2024-08-29T09:46:16.722Z\nBob\t30\t2020-01-15T09:00:16.722Z"
457+
}
458+
},
459+
"text/csv": {
460+
"schema": {
461+
"type": "string",
462+
"description": "A CSV string. The first line is column IDs, and each subsequent line is a row of data. The schema will be inferred from the data. The name of the table must be passed in the query parameter `name`.",
463+
"example": "Name,Age,Birthday\nAlice,25,2024-08-29T09:46:16.722Z\nBob,30,2020-01-15T09:00:16.722Z"
464+
}
465+
},
452466
"text/tab-separated-values": {
453467
"schema": {
454468
"type": "string",
@@ -835,6 +849,20 @@
835849
"example": "Name,Age,Birthday\nAlice,25,2024-08-29T09:46:16.722Z\nBob,30,2020-01-15T09:00:16.722Z"
836850
}
837851
},
852+
"text/tab-separated-values": {
853+
"schema": {
854+
"type": "string",
855+
"description": "A TSV string. The first line is column IDs, and each subsequent line is a row of data.",
856+
"example": "Name\tAge\tBirthday\nAlice\t25\t2024-08-29T09:46:16.722Z\nBob\t30\t2020-01-15T09:00:16.722Z"
857+
}
858+
},
859+
"text/csv": {
860+
"schema": {
861+
"type": "string",
862+
"description": "A CSV string. The first line is column IDs, and each subsequent line is a row of data.",
863+
"example": "Name,Age,Birthday\nAlice,25,2024-08-29T09:46:16.722Z\nBob,30,2020-01-15T09:00:16.722Z"
864+
}
865+
},
838866
"text/tab-separated-values": {
839867
"schema": {
840868
"type": "string",

0 commit comments

Comments
 (0)