From 92a39c95d00337761aee786a541fac7972ef3004 Mon Sep 17 00:00:00 2001 From: Natalia Luzuriaga Date: Mon, 14 Apr 2025 15:12:16 -0700 Subject: [PATCH 1/3] Updated schema with feedback revisions Signed-off-by: Natalia Luzuriaga --- schemas/schema-0.1.0.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/schemas/schema-0.1.0.json b/schemas/schema-0.1.0.json index 8bca3eb..df91b0c 100644 --- a/schemas/schema-0.1.0.json +++ b/schemas/schema-0.1.0.json @@ -153,6 +153,9 @@ "properties": { "forks": { "type": "integer" + }, + "clones": { + "type": "integer" } }, "additionalProperties": true @@ -204,7 +207,7 @@ }, "maintenance": { "type": "string", - "description": "Maintenance status", + "description": "The dedicated staff that keeps the software up-to-date, if any", "enum": [ "internal", "contract", @@ -213,7 +216,7 @@ ] }, "contractNumber": { - "type": "integer", + "type": "string", "description": "Contract number" }, "date": { @@ -239,7 +242,7 @@ }, "tags": { "type": "array", - "description": "Tags associated with the project", + "description": "Topics and keywords associated with the project to improve search and discoverability", "items": { "type": "string" } @@ -303,24 +306,21 @@ }, "projects": { "type": "array", - "description": "Maps the repository to associated projects", + "description": "Project(s) that is associated or related to the repository, if any", "items": { "type": "string" } }, "systems": { "type": "array", - "description": "Maps the repository to CMS systems used", + "description": "CMS systems that the repository interfaces with or depends on, if any.", "items": { "type": "string" } }, "upstream": { - "type": "array", - "description": "List of upstream repositories and dependencies used", - "items": { - "type": "string" - } + "type": "string", + "description": "List of upstream repositories and dependencies used, in the form of a link to the SBOM (https://github.com/$ORG_NAME/$REPO_NAME/network/dependencies)" }, "subsetInHealthcare": { "type": "array", From 3548fe284398d0f684ba668024af1621b9a59d9a Mon Sep 17 00:00:00 2001 From: Natalia Luzuriaga Date: Mon, 14 Apr 2025 15:15:16 -0700 Subject: [PATCH 2/3] Updated schema with description for systems Signed-off-by: Natalia Luzuriaga --- schemas/schema-0.1.0.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/schema-0.1.0.json b/schemas/schema-0.1.0.json index df91b0c..5df0405 100644 --- a/schemas/schema-0.1.0.json +++ b/schemas/schema-0.1.0.json @@ -313,7 +313,7 @@ }, "systems": { "type": "array", - "description": "CMS systems that the repository interfaces with or depends on, if any.", + "description": "CMS systems that the repository interfaces with or depends on, if any", "items": { "type": "string" } From 2f7c09f6b49a2c03e050edc85b0c23af03fe4629 Mon Sep 17 00:00:00 2001 From: Natalia Luzuriaga Date: Wed, 16 Apr 2025 14:47:30 -0700 Subject: [PATCH 3/3] Update schema-0.1.0.json --- schemas/schema-0.1.0.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/schemas/schema-0.1.0.json b/schemas/schema-0.1.0.json index 5df0405..40bf0c2 100644 --- a/schemas/schema-0.1.0.json +++ b/schemas/schema-0.1.0.json @@ -306,21 +306,21 @@ }, "projects": { "type": "array", - "description": "Project(s) that is associated or related to the repository, if any", + "description": "Project(s) that is associated or related to the repository, if any (e.g. Bluebutton, MPSM)", "items": { "type": "string" } }, "systems": { "type": "array", - "description": "CMS systems that the repository interfaces with or depends on, if any", + "description": "CMS systems that the repository interfaces with or depends on, if any (e.g. IDR, PECOS)", "items": { "type": "string" } }, "upstream": { "type": "string", - "description": "List of upstream repositories and dependencies used, in the form of a link to the SBOM (https://github.com/$ORG_NAME/$REPO_NAME/network/dependencies)" + "description": "Link of the upstream repositories and dependencies used, in the form of a Software Bill of Materials/SBOM (https://github.com/$ORG_NAME/$REPO_NAME/network/dependencies)" }, "subsetInHealthcare": { "type": "array", @@ -393,4 +393,4 @@ "maturityModelTier" ], "additionalProperties": false -} \ No newline at end of file +}