Fix json schemas to allow string ids (#447)

This commit is contained in:
1ilit
2025-05-12 19:34:25 +04:00
committed by GitHub
parent f2613139bb
commit 3e54f2add5

View File

@@ -1,7 +1,7 @@
export const tableSchema = {
type: "object",
properties: {
id: { type: "integer" },
id: { type: ["integer", "string"] },
name: { type: "string" },
x: { type: "number" },
y: { type: "number" },
@@ -10,6 +10,7 @@ export const tableSchema = {
items: {
type: "object",
properties: {
id: { type: ["integer", "string"] },
name: { type: "string" },
type: { type: "string" },
default: { type: "string" },
@@ -23,6 +24,7 @@ export const tableSchema = {
values: { type: "array", items: { type: "string" } },
},
required: [
"id",
"name",
"type",
"default",
@@ -131,10 +133,10 @@ export const jsonSchema = {
items: {
type: "object",
properties: {
startTableId: { type: "integer" },
startFieldId: { type: "integer" },
endTableId: { type: "integer" },
endFieldId: { type: "integer" },
startTableId: { type: ["integer", "string"] },
startFieldId: { type: ["integer", "string"] },
endTableId: { type: ["integer", "string"] },
endFieldId: { type: ["integer", "string"] },
name: { type: "string" },
cardinality: { type: "string" },
updateConstraint: { type: "string" },