Creating your enterprise code inventory
Overview
Section 7.2 and 7.3 of the Source Code Policy require agencies to provide an inventory of their 'custom-developed code' to support government-wide reuse and make Federal open source code easier to find.
Using these inventories, Code.gov will provide a platform to find custom-developed source code including that released as open source software and that which isn't open source but is available for government-wide reuse. It will compile an aggregate source code inventory for the Federal government.
Publishing Your Agency's Inventory
Agencies are required publish their inventories using a standard metadata schema - a JSON file that they'll make available on their agency websites. Version 1.0 of the metadata schema is now available and agencies are actively inventorying their code in preparation for publication.
Agencies should make the “code.json” available in the root folder of their website (e.g., https://www..gov/code.json). Code.gov will then retrieve these JSON files daily and compile them.
Specification for the Metadata Schema
File location and contents:
code.json
must live in the root directory of your agency’s website.code.json
must include a single object represented as JSON, with key-value pairs according to the list below.
Fields:
Required
agency
: [string] The agency acronym. For example "GSA" or "DOD"organization
: [string] The organization within the agency that the projects listed belong to. For example, "18F" or "Navy".project
: [object] Contains objects representing each software project-
name
: [string] The project name -
description
: [string] A description of the project -
license
: [null
or string] The URL of the project license, if available.null
should be used if not. -
openSourceProject
: [integer] A value indicating whether or not the project is open source. -
0
: The project is not open source. -
1
: The project is open source. -
governmentWideReuseProject
: [integer] A value indicating whether or not the project is built for government-wide reuse.0
: The project is not built for government-wide reuse.1
: The project is built for government-wide reuse.
-
tags
: [array] A list of string alphanumeric keywords that identify the project. -
contact
: [object] Information about contacting the project.email
: [string] An email address to contact the project.
-
Optional
project
: [object] Contains objects representing each software projectstatus
: [string] The development status of the project"Ideation"
- brainstorming phase."Alpha"
- initial prototyping phase and internal testing."Beta"
- a project is being tested in public."Production"
- finished project, with development and maintenance ongoing."Archival"
- finished project, but no longer actively maintained.
vcs
: [string] A lowercase string with the name of the Version Control System in use on the project.repository
: [string] The URL of the public project repositoryhomepage
: [string] The URL of the public project homepagedownloadURL
: [string] The URL where a distribution of the project can be found.languages
: [array] A list of strings with the names of the programming languages in use on the project.contact
: [object] Information about contacting the project.name
: [string] The name of a contact or department for the projecttwitter
: [string] The username of the project’s Twitter accountphone
: [string] The phone number to contact a project.
partners
: [array] A list of strings containing the acronyms of agencies partnering on the project.exemption
: [integer] The exemption that excuses the project from government-wide reuse.1
: 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.2
: The sharing of the source code would create an identifiable risk to the detriment of national security, confidentiality of Government information, or individual privacy.3
: The sharing of the source code would create an identifiable risk to the stability, security, or integrity of the agency’s systems or personnel.4
: The sharing of the source code would create an identifiable risk to agency mission, programs, or operations.5
: The CIO believes it is in the national interest to exempt sharing the source code.
updated
: [object] Dates that the project and metadata have been updated.metadataLastUpdated
: [string] A date in YYYY-MM-DD or ISO 8601 format indicating when the metadata in this file was last updated.lastCommit
: [string] A date in ISO 8601 format indicating when the last commit to the project repository was.sourceCodeLastModified
: [string] A field intended for closed-source software and software outside of a VCS. The date in YYYY-MM-DD or ISO 8601 format that the source code or package was last updated.
Example code.json file
We’ve created a sample code.json.