Import ddb files

This commit is contained in:
1ilit
2023-09-19 15:49:31 +03:00
parent a4a170d97a
commit 6eaad6e720
3 changed files with 57 additions and 29 deletions

View File

@@ -141,4 +141,15 @@ const jsonSchema = {
required: ["tables", "relationships", "notes", "subjectAreas"],
};
export { jsonSchema };
const ddbSchema = {
type: "object",
properties: {
author: { type: "string" },
project: { type: "string" },
filename: { type: "string" },
date: { type: "string" },
...jsonSchema.properties,
},
};
export { jsonSchema, ddbSchema };