From 5dd5b28642ad9cac312bdb249721c470a8f4771c Mon Sep 17 00:00:00 2001 From: Natalia Luzuriaga Date: Wed, 1 Oct 2025 11:54:30 -0700 Subject: [PATCH 1/3] Update schema.json --- schemas/cms/schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schemas/cms/schema.json b/schemas/cms/schema.json index 85b0100..9b4ccf7 100644 --- a/schemas/cms/schema.json +++ b/schemas/cms/schema.json @@ -344,7 +344,7 @@ "format": "date-time", "description": "Date when the project was last modified" }, - "metaDataLastUpdated": { + "metadataLastUpdated": { "type": "string", "format": "date-time", "description": "Date when metadata was last updated" @@ -511,4 +511,4 @@ "maturityModelTier" ], "additionalProperties": false -} \ No newline at end of file +} From 432223d1ec2ee4e582895adb1965b90615f2223a Mon Sep 17 00:00:00 2001 From: Natalia Luzuriaga Date: Wed, 1 Oct 2025 11:55:26 -0700 Subject: [PATCH 2/3] Update schema.json --- schemas/gov/schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schemas/gov/schema.json b/schemas/gov/schema.json index af9288e..8af6c93 100644 --- a/schemas/gov/schema.json +++ b/schemas/gov/schema.json @@ -283,7 +283,7 @@ "format": "date-time", "description": "Date when the project was last modified" }, - "metaDataLastUpdated": { + "metadataLastUpdated": { "type": "string", "format": "date-time", "description": "Date when metadata was last updated" @@ -347,4 +347,4 @@ "AIUseCaseID" ], "additionalProperties": true -} \ No newline at end of file +} From a8a80babf7bd86572e52882224c25c0101becdf1 Mon Sep 17 00:00:00 2001 From: Natalia Luzuriaga Date: Wed, 1 Oct 2025 11:56:34 -0700 Subject: [PATCH 3/3] Update autoGenerateFields.js --- js/autoGenerateFields.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/autoGenerateFields.js b/js/autoGenerateFields.js index 82b4854..18d36e5 100644 --- a/js/autoGenerateFields.js +++ b/js/autoGenerateFields.js @@ -257,7 +257,7 @@ async function preFillFields(repoData, languages) { currentDate.created = repoData.created_at; currentDate.lastModified = repoData.updated_at - currentDate.metaDataLastUpdated = new Date().toISOString() + currentDate.metadataLastUpdated = new Date().toISOString() dateComp.setValue(currentDate) } @@ -329,4 +329,4 @@ window.showErrorNotification = function (message) { window.showSuccessNotification = function (message) { notificationSystem.success(message); -}; \ No newline at end of file +};