Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions schemas/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@
"properties": {
"forks": {
"type": "integer"
},
"clones": {
"type": "integer"
}
},
"additionalProperties": true
Expand Down Expand Up @@ -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",
Expand All @@ -213,7 +216,7 @@
]
},
"contractNumber": {
"type": "integer",
"type": "string",
"description": "Contract number"
},
"date": {
Expand All @@ -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"
}
Expand Down Expand Up @@ -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 (e.g. Bluebutton, MPSM)",
"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 (e.g. IDR, PECOS)",
"items": {
"type": "string"
}
},
"upstream": {
"type": "array",
"description": "List of upstream repositories and dependencies used",
"items": {
"type": "string"
}
"type": "string",
"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",
Expand Down
Loading