Skip to content

Commit ce400c6

Browse files
1 parent 1127c63 commit ce400c6

File tree

1 file changed

+94
-1
lines changed

1 file changed

+94
-1
lines changed

openapi/swagger.json

Lines changed: 94 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,15 @@
649649
}
650650
},
651651
"parameters": [
652+
{
653+
"name": "if-match",
654+
"in": "header",
655+
"schema": {
656+
"type": "string",
657+
"description": "ETag of the current table version. If provided, the request will fail if the table has been updated since this version."
658+
},
659+
"required": false
660+
},
652661
{
653662
"name": "tableID",
654663
"in": "path",
@@ -896,6 +905,91 @@
896905
}
897906
},
898907
"/tables/{tableID}/rows": {
908+
"head": {
909+
"responses": {
910+
"400": {
911+
"description": "",
912+
"content": {
913+
"application/json": {
914+
"schema": {
915+
"type": "object",
916+
"properties": {
917+
"error": {
918+
"type": "object",
919+
"properties": {
920+
"type": {
921+
"type": "string"
922+
},
923+
"message": {
924+
"type": "string"
925+
}
926+
},
927+
"required": [
928+
"type",
929+
"message"
930+
],
931+
"additionalProperties": false
932+
}
933+
},
934+
"required": [
935+
"error"
936+
],
937+
"additionalProperties": false
938+
}
939+
}
940+
}
941+
},
942+
"404": {
943+
"description": "",
944+
"content": {
945+
"application/json": {
946+
"schema": {
947+
"type": "object",
948+
"properties": {
949+
"error": {
950+
"type": "object",
951+
"properties": {
952+
"type": {
953+
"type": "string",
954+
"enum": [
955+
"table_not_found",
956+
"table_not_big_table"
957+
]
958+
},
959+
"message": {
960+
"type": "string"
961+
}
962+
},
963+
"required": [
964+
"type",
965+
"message"
966+
],
967+
"additionalProperties": false
968+
}
969+
},
970+
"required": [
971+
"error"
972+
],
973+
"additionalProperties": false
974+
}
975+
}
976+
}
977+
}
978+
},
979+
"parameters": [
980+
{
981+
"name": "tableID",
982+
"in": "path",
983+
"schema": {
984+
"type": "string",
985+
"description": "ID of the table, e.g., `2a1bad8b-cf7c-44437-b8c1-e3782df6`",
986+
"example": "2a1bad8b-cf7c-44437-b8c1-e3782df6"
987+
},
988+
"required": true
989+
}
990+
],
991+
"description": "Gets information about a Big Table's data"
992+
},
899993
"get": {
900994
"responses": {
901995
"200": {
@@ -996,7 +1090,6 @@
9961090
"in": "query",
9971091
"schema": {
9981092
"type": "number",
999-
"default": 250,
10001093
"description": "Maximum number of rows to return in a single response. No more than this number of rows will be returned, however fewer rows may be returned, even if there are more rows to fetch. If there are more rows, the response will include a continuation token that can be used to fetch the next set of rows."
10011094
},
10021095
"required": false

0 commit comments

Comments
 (0)