1
0
Fork 0
mirror of synced 2024-09-11 06:56:23 +12:00
budibase/packages/server/specs/parameters.js
2022-02-18 15:47:15 +00:00

19 lines
357 B
JavaScript

exports.tableId = {
in: "path",
name: "tableId",
required: true,
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.",
schema: {
type: "string",
},
}