From b80a1181d38412d86688a49b12613a801e8cdd14 Mon Sep 17 00:00:00 2001 From: Electromorphous Date: Wed, 8 Jan 2025 17:49:16 +0530 Subject: [PATCH] add keywords field to research object --- desci-models/src/ResearchObject.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/desci-models/src/ResearchObject.ts b/desci-models/src/ResearchObject.ts index 8c6e5594a..e7aee5667 100644 --- a/desci-models/src/ResearchObject.ts +++ b/desci-models/src/ResearchObject.ts @@ -43,6 +43,8 @@ export interface ResearchObjectV1 extends ResearchObject { dpid?: ResearchObjectV1Dpid; /** Research fields relevant for the publication */ researchFields?: string[]; + /** Keywords associated with the research object */ + keywords?: string[]; /** Contributors to this publication */ authors?: ResearchObjectV1Author[];