Add title to json and ddb export
This commit is contained in:
parent
a5e1eec3c5
commit
3ab820d7ee
@ -163,6 +163,9 @@ export default function ControlPanel({
|
||||
setRelationships(data.relationships);
|
||||
setAreas(data.subjectAreas);
|
||||
setNotes(data.notes);
|
||||
if (data.title) {
|
||||
setTitle(data.title);
|
||||
}
|
||||
};
|
||||
|
||||
const undo = () => {
|
||||
@ -880,6 +883,7 @@ export default function ControlPanel({
|
||||
notes: notes,
|
||||
subjectAreas: areas,
|
||||
types: types,
|
||||
title: title,
|
||||
},
|
||||
null,
|
||||
2
|
||||
@ -931,7 +935,7 @@ export default function ControlPanel({
|
||||
const result = JSON.stringify(
|
||||
{
|
||||
author: "Unnamed",
|
||||
filename: title,
|
||||
title: title,
|
||||
date: new Date().toISOString(),
|
||||
tables: tables,
|
||||
relationships: relationships,
|
||||
|
@ -161,6 +161,7 @@ const jsonSchema = {
|
||||
type: "array",
|
||||
items: { ...areaSchema },
|
||||
},
|
||||
title: { type: "string" },
|
||||
},
|
||||
required: ["tables", "relationships", "notes", "subjectAreas"],
|
||||
};
|
||||
@ -170,7 +171,7 @@ const ddbSchema = {
|
||||
properties: {
|
||||
author: { type: "string" },
|
||||
project: { type: "string" },
|
||||
filename: { type: "string" },
|
||||
title: { type: "string" },
|
||||
date: { type: "string" },
|
||||
...jsonSchema.properties,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user