-
Notifications
You must be signed in to change notification settings - Fork 8
Components: Added container component for object fields & updated code.json schema #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
5e0aa61
81411e9
716d3a6
c503849
b8b485a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,7 +42,7 @@ | |
| "items": { | ||
| "type": "object", | ||
| "properties": { | ||
| "url": { | ||
| "URL": { | ||
| "type": "string", | ||
| "format": "uri", | ||
| "description": "The URL of the release license" | ||
|
|
@@ -110,6 +110,11 @@ | |
| "Centers for Medicare & Medicaid Services" | ||
| ] | ||
| }, | ||
| "repositoryURL": { | ||
| "type": "string", | ||
| "format": "uri", | ||
| "description": "The URL of the public release repository for open source repositories. This field is not required for repositories that are only available as government-wide reuse or are closed (pursuant to one of the exemptions)." | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. also 🔥 |
||
| }, | ||
| "vcs": { | ||
| "type": "string", | ||
| "description": "Version control system used", | ||
|
|
@@ -182,6 +187,7 @@ | |
| }, | ||
| "date": { | ||
| "type": "object", | ||
| "description": "A date object describing the release", | ||
| "properties": { | ||
| "created": { | ||
| "type": "string", | ||
|
|
@@ -209,6 +215,7 @@ | |
| }, | ||
| "contact": { | ||
| "type": "object", | ||
| "description": "Point of contact for the release", | ||
| "properties": { | ||
| "email": { | ||
| "type": "string", | ||
|
|
@@ -286,7 +293,7 @@ | |
| "description": "Location where source code is hosted", | ||
| "enum": [ | ||
| "github.com/CMSgov", | ||
| "github.com/CMSgov", | ||
| "github.com/CMS-Enterprise", | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Cookiecutter options are: "repository_host": ["Github.com", "GitHub ENT", "GitHub Cloud", "GitLab.com", "GitLab ENT", "GitLab ENT CCSQ"] Need to realign, do we want links or name of github?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think links are most useful, then people can check themselves, but I'm willing to change my mind. |
||
| "github.cms.gov", | ||
| "CCSQ GitHub" | ||
| ] | ||
|
|
@@ -310,6 +317,7 @@ | |
| "status", | ||
| "permissions", | ||
| "organization", | ||
| "repositoryURL", | ||
| "vcs", | ||
| "laborHours", | ||
| "platforms", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,30 @@ | ||
| { | ||
| "name": "", | ||
| "softwareDescription": "", | ||
| "description": "", | ||
| "longDescription": "", | ||
| "status": "", | ||
| "organization": "", | ||
| "repositoryURL": "", | ||
| "vcs": "", | ||
| "laborHours": 0, | ||
| "platforms": [""], | ||
| "categories": [""], | ||
| "softwareType": [""], | ||
| "languages": [""], | ||
| "maintenance": "", | ||
| "lastModified": "", | ||
| "localisation": "" | ||
| "date": [""], | ||
| "tags": [""], | ||
| "contact": { | ||
| "email": "", | ||
| "name": "" | ||
| }, | ||
| "localisation": "", | ||
| "repositoryType": "", | ||
| "userInput": "", | ||
| "fismaLevel": "", | ||
| "group": "", | ||
| "subsetInHealthcare": "", | ||
| "userType": "", | ||
| "repositoryHost": "", | ||
| "maturityModelTier": "" | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥