Add title to json and ddb export

This commit is contained in:
1ilit
2024-02-28 23:03:40 +02:00
parent a5e1eec3c5
commit 3ab820d7ee
2 changed files with 7 additions and 2 deletions

View File

@@ -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,
},