This commit is contained in:
Yusuf Ismail 2025-05-23 18:45:16 +08:00 committed by GitHub
commit cca70285b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,12 @@ export const tableSchema = {
unique: { type: "boolean" }, unique: { type: "boolean" },
fields: { fields: {
type: "array", type: "array",
items: { type: "string" }, items: {
type: "object", properties: {
type: { type: "string" },
value: { type: "string" }
}
},
}, },
}, },
required: ["name", "unique", "fields"], required: ["name", "unique", "fields"],