|
9 | 9 | "type": "string", |
10 | 10 | "description": "Name of the project or software" |
11 | 11 | }, |
| 12 | + "version": { |
| 13 | + "type": "string", |
| 14 | + "description": "The version for this release. For example, '1.0.0'." |
| 15 | + }, |
12 | 16 | "description": { |
13 | 17 | "type": "string", |
14 | 18 | "description": "A one or two sentence description of the software." |
|
124 | 128 | ], |
125 | 129 | "description": "Visibility of repository" |
126 | 130 | }, |
| 131 | + "homepageURL": { |
| 132 | + "type": "string", |
| 133 | + "format": "uri", |
| 134 | + "description": "The URL of the public release homepage." |
| 135 | + }, |
| 136 | + "downloadURL": { |
| 137 | + "type": "string", |
| 138 | + "format": "uri", |
| 139 | + "description": "The URL where a distribution of the release can be found." |
| 140 | + }, |
| 141 | + "disclaimerURL": { |
| 142 | + "type": "string", |
| 143 | + "format": "uri", |
| 144 | + "description": "The URL where disclaimer language regarding the release can be found." |
| 145 | + }, |
| 146 | + "disclaimerText": { |
| 147 | + "type": "string", |
| 148 | + "description": "Short paragraph that includes disclaimer language to accompany the release." |
| 149 | + }, |
127 | 150 | "vcs": { |
128 | 151 | "type": "string", |
129 | 152 | "description": "Version control system used", |
|
186 | 209 | "type": "string", |
187 | 210 | "description": "Link of the upstream repositories and dependencies used, in the form of a Software Bill of Materials/SBOM. If the software does not have a SBOM, enter 'None'. (i.e. Github provides an SBOM: https://github.com/$ORG_NAME/$REPO_NAME/network/dependencies)" |
188 | 211 | }, |
| 212 | + "relatedCode": { |
| 213 | + "type": "array", |
| 214 | + "description": "An array of affiliated government repositories that may be a part of the same project. For example, relatedCode for 'code-gov-front-end' would include 'code-gov-api' and 'code-gov-api-client'.", |
| 215 | + "items": { |
| 216 | + "type": "object", |
| 217 | + "properties": { |
| 218 | + "name": { |
| 219 | + "type": "string", |
| 220 | + "description": "The name of the code repository, project, library or release." |
| 221 | + }, |
| 222 | + "URL": { |
| 223 | + "type": "string", |
| 224 | + "format": "uri", |
| 225 | + "description": "The URL where the code repository, project, library or release can be found." |
| 226 | + }, |
| 227 | + "isGovernmentRepo": { |
| 228 | + "type": "boolean", |
| 229 | + "description": "True or False. Is the code repository owned or managed by a federal agency?" |
| 230 | + } |
| 231 | + }, |
| 232 | + "additionalProperties": false |
| 233 | + } |
| 234 | + }, |
| 235 | + "reusedCode": { |
| 236 | + "type": "array", |
| 237 | + "description": "An array of government source code, libraries, frameworks, APIs, platforms or other software used in this release. For example, US Web Design Standards, cloud.gov, Federalist, Digital Services Playbook, Analytics Reporter.", |
| 238 | + "items": { |
| 239 | + "type": "object", |
| 240 | + "properties": { |
| 241 | + "name": { |
| 242 | + "type": "string", |
| 243 | + "description": "The name of the software used in this release." |
| 244 | + }, |
| 245 | + "URL": { |
| 246 | + "type": "string", |
| 247 | + "format": "uri", |
| 248 | + "description": "The URL where the software can be found." |
| 249 | + } |
| 250 | + }, |
| 251 | + "additionalProperties": false |
| 252 | + } |
| 253 | + }, |
| 254 | + "partners": { |
| 255 | + "type": "array", |
| 256 | + "description": "An array of objects including an acronym for each agency partnering on the release and the contact email at such agency.", |
| 257 | + "items": { |
| 258 | + "type": "object", |
| 259 | + "properties": { |
| 260 | + "name": { |
| 261 | + "type": "string", |
| 262 | + "description": "The acronym describing the partner agency." |
| 263 | + }, |
| 264 | + "email": { |
| 265 | + "type": "string", |
| 266 | + "description": "The email address for the point of contact at the partner agency." |
| 267 | + } |
| 268 | + }, |
| 269 | + "additionalProperties": false |
| 270 | + } |
| 271 | + }, |
189 | 272 | "date": { |
190 | 273 | "type": "object", |
191 | 274 | "description": "A date object describing the release", |
|
0 commit comments