const myJsonSchemaObject: unknown = {
type: "object",
properties: {
foo: {type: "string"},
bar: {type: "string"},
},
required: ["foo"],
additionalProperties: false,
}
const myJsonSchemaObject: unknown = {
type: "object",
properties: {
foo: {type: "string"},
bar: {type: "string"},
},
required: ["foo"],
additionalProperties: false,
}