2022-02-17 20:55:37 +01:00
|
|
|
exports.tableId = {
|
|
|
|
in: "path",
|
|
|
|
name: "tableId",
|
|
|
|
required: true,
|
2022-02-18 16:47:15 +01:00
|
|
|
description: "The ID of the table which this request is targeting.",
|
|
|
|
schema: {
|
|
|
|
type: "string",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.rowId = {
|
|
|
|
in: "path",
|
|
|
|
name: "rowId",
|
|
|
|
required: true,
|
|
|
|
description: "The ID of the row which this request is targeting.",
|
2022-02-17 20:55:37 +01:00
|
|
|
schema: {
|
|
|
|
type: "string",
|
|
|
|
},
|
|
|
|
}
|
2022-02-18 18:44:08 +01:00
|
|
|
|
|
|
|
exports.appId = {
|
|
|
|
in: "header",
|
|
|
|
name: "appId",
|
|
|
|
required: true,
|
|
|
|
description: "The ID of the app which this request is targeting.",
|
|
|
|
schema: {
|
|
|
|
type: "string",
|
|
|
|
},
|
|
|
|
}
|