You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "A metadata standard for software repositories of CMS",
5
+
"type": "object",
6
+
"properties": {
7
+
"items": {
8
+
"name": {
9
+
"type": "string",
10
+
"description": "Name of the project or software"
11
+
},
12
+
"softwareDescription": {
13
+
"type": "object",
14
+
"properties": {
15
+
"en": {
16
+
"type": "object",
17
+
"description": "Language of description (English)",
18
+
"properties": {
19
+
"shortDescription": {
20
+
"type": "string",
21
+
"description": "A short description of the project. It should be a single line containing a single sentence. Maximum 150 characters are allowed.",
22
+
"maxLength": 150
23
+
},
24
+
"longDescription": {
25
+
"type": "string",
26
+
"description": "Provide longer description of the software, between 150 and 10000 chars. It is meant to provide an overview of the capabilities of the software for a potential user.",
"description": "An abbreviation for the name of the license"
58
+
}
59
+
},
60
+
"required": ["url", "name"]
61
+
}
62
+
},
63
+
"usageType": {
64
+
"type": "string",
65
+
"description": "A list of enumerated values which describes the usage permissions for the release: (1) openSource: Open source; (2) governmentWideReuse: Government-wide reuse; (3) exemptByLaw: The sharing of the source code is restricted by law or regulation, including—but not limited to—patent or intellectual property law, the Export Asset Regulations, the International Traffic in Arms Regulation, and the Federal laws and regulations governing classified information; (4) exemptByNationalSecurity: The sharing of the source code would create an identifiable risk to the detriment of national security, confidentiality of Government information, or individual privacy; (5) exemptByAgencySystem: The sharing of the source code would create an identifiable risk to the stability, security, or integrity of the agency’s systems or personnel, (6) exemptByAgencyMission: The sharing of the source code would create an identifiable risk to agency mission, programs, or operations; (7) exemptByCIO: The CIO believes it is in the national interest to exempt sharing the source code; (8) exemptByPolicyDate: The release was created prior to the M-16-21 policy (August 8, 2016)",
66
+
"enum": [
67
+
"openSource",
68
+
"governmentWideReuse",
69
+
"exemptByLaw",
70
+
"exemptByNationalSecurity",
71
+
"exemptByAgencySystem",
72
+
"exemptByAgencyMission",
73
+
"exemptByCIO",
74
+
"exemptByPolicyDate"
75
+
],
76
+
"additionalProperties": false
77
+
},
78
+
"exemptionText": {
79
+
"type": ["string", "null"],
80
+
"description": "If an exemption is listed in the 'usageType' field, this field should include a one- or two- sentence justification for the exemption used."
81
+
}
82
+
},
83
+
"additionalProperties": false,
84
+
"required": ["licenses", "usageType"]
85
+
},
86
+
"organization": {
87
+
"type": "string",
88
+
"description": "Organization responsible for the project",
89
+
"enum": ["Centers for Medicare & Medicaid Services"]
90
+
},
91
+
"vcs": {
92
+
"type": "string",
93
+
"description": "Version control system used",
94
+
"enum": ["git", "hg", "svn", "rcs", "bzr"]
95
+
},
96
+
"laborHours": {
97
+
"type": "number",
98
+
"description": "Labor hours invested in the project"
99
+
},
100
+
"platforms": {
101
+
"type": "array",
102
+
"description": "Platforms supported by the project",
0 commit comments