1
0
Fork 0
mirror of synced 2024-07-13 10:15:49 +12:00
budibase/packages/server/specs/schemas.js

14 lines
294 B
JavaScript
Raw Normal View History

exports.row = {
description: "The row to be created/updated, based on the table schema.",
type: "object",
additionalProperties: {
oneOf: [
{ type: "string" },
{ type: "object" },
{ type: "integer" },
{ type: "array" },
{ type: "boolean" },
],
},
}