Skip to content

Commit ec76988

Browse files
1 parent 041a4f4 commit ec76988

File tree

1 file changed

+108
-0
lines changed

1 file changed

+108
-0
lines changed

openapi/swagger.json

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1436,6 +1436,114 @@
14361436
}
14371437
},
14381438
"description": "Updates a row in a Big Table"
1439+
},
1440+
"delete": {
1441+
"responses": {
1442+
"200": {
1443+
"description": "",
1444+
"content": {
1445+
"application/json": {
1446+
"schema": {
1447+
"type": "object",
1448+
"properties": {},
1449+
"additionalProperties": false,
1450+
"description": "A 200 HTTP response code indicates that the row does not exist or was successfully deleted."
1451+
}
1452+
}
1453+
}
1454+
},
1455+
"400": {
1456+
"description": "",
1457+
"content": {
1458+
"application/json": {
1459+
"schema": {
1460+
"type": "object",
1461+
"properties": {
1462+
"error": {
1463+
"type": "object",
1464+
"properties": {
1465+
"type": {
1466+
"type": "string"
1467+
},
1468+
"message": {
1469+
"type": "string"
1470+
}
1471+
},
1472+
"required": [
1473+
"type",
1474+
"message"
1475+
],
1476+
"additionalProperties": false
1477+
}
1478+
},
1479+
"required": [
1480+
"error"
1481+
],
1482+
"additionalProperties": false
1483+
}
1484+
}
1485+
}
1486+
},
1487+
"404": {
1488+
"description": "",
1489+
"content": {
1490+
"application/json": {
1491+
"schema": {
1492+
"type": "object",
1493+
"properties": {
1494+
"error": {
1495+
"type": "object",
1496+
"properties": {
1497+
"type": {
1498+
"type": "string",
1499+
"enum": [
1500+
"table_not_found",
1501+
"table_not_big_table"
1502+
]
1503+
},
1504+
"message": {
1505+
"type": "string"
1506+
}
1507+
},
1508+
"required": [
1509+
"type",
1510+
"message"
1511+
],
1512+
"additionalProperties": false
1513+
}
1514+
},
1515+
"required": [
1516+
"error"
1517+
],
1518+
"additionalProperties": false
1519+
}
1520+
}
1521+
}
1522+
}
1523+
},
1524+
"parameters": [
1525+
{
1526+
"name": "tableID",
1527+
"in": "path",
1528+
"schema": {
1529+
"type": "string",
1530+
"description": "ID of the table, e.g., `2a1bad8b-cf7c-44437-b8c1-e3782df6`",
1531+
"example": "2a1bad8b-cf7c-44437-b8c1-e3782df6"
1532+
},
1533+
"required": true
1534+
},
1535+
{
1536+
"name": "rowID",
1537+
"in": "path",
1538+
"schema": {
1539+
"type": "string",
1540+
"description": "ID of the row, e.g., `2a1bad8b-cf7c-44437-b8c1-e3782df6`",
1541+
"example": "2a1bad8b-cf7c-44437-b8c1-e3782df6"
1542+
},
1543+
"required": true
1544+
}
1545+
],
1546+
"description": "Deletes a row from a Big Table"
14391547
}
14401548
},
14411549
"/stashes/{stashID}/{serial}": {

0 commit comments

Comments
 (0)