{
"$schema": [
"http://json-schema.org/draft-04/schema#"
],
"id": [
"https://project-open-data.cio.gov/v1.1/schema/catalog.json#"
],
"title": [
"Project Open Data Catalog"
],
"description": [
"Validates an entire collection of Project Open Data metadata JSON objects. Agencies produce said collections in the form of Data.json files."
],
"type": [
"object"
],
"dependencies": {
"@type": [
"@context"
]
},
"required": [
"conformsTo",
"dataset"
],
"properties": {
"@context": {
"title": [
"Metadata Context"
],
"description": [
"URL or JSON object for the JSON-LD Context that defines the schema used"
],
"type": [
"string"
],
"format": [
"uri"
]
},
"@id": {
"title": [
"Metadata Catalog ID"
],
"description": [
"IRI for the JSON-LD Node Identifier of the Catalog. This should be the URL of the data.json file itself."
],
"type": [
"string"
],
"format": [
"uri"
]
},
"@type": {
"title": [
"Metadata Context"
],
"description": [
"IRI for the JSON-LD data type. This should be dcat:Catalog for the Catalog"
],
"enum": [
"dcat:Catalog"
]
},
"conformsTo": {
"description": [
"Version of Schema"
],
"title": [
"Version of Schema"
],
"enum": [
"https://project-open-data.cio.gov/v1.1/schema"
]
},
"describedBy": {
"description": [
"URL for the JSON Schema file that defines the schema used"
],
"title": [
"Data Dictionary"
],
"type": [
"string"
],
"format": [
"uri"
]
},
"dataset": {
"type": [
"array"
],
"items": {
"$ref": [
"dataset.json"
],
"minItems": [
1
],
"uniqueItems": [
true
]
}
}
}
}
Appendix B: DCAT Metadata
JSON Schemas
{
"$schema": [
"http://json-schema.org/draft-04/schema#"
],
"id": [
"https://project-open-data.cio.gov/v1.1/schema/dataset.json#"
],
"title": [
"Project Open Data Dataset"
],
"description": [
"The metadata format for all federal open data. Validates a single JSON object entry (as opposed to entire Data.json catalog)."
],
"type": [
"object"
],
"required": [
"bureauCode",
"programCode",
"title",
"description",
"keyword",
"modified",
"publisher",
"contactPoint",
"identifier",
"accessLevel"
],
"properties": {
"@type": {
"title": [
"Metadata Context"
],
"description": [
"IRI for the JSON-LD data type. This should be dcat:Dataset for each Dataset"
],
"enum": [
"dcat:Dataset"
]
},
"accessLevel": {
"description": [
"The degree to which this dataset could be made publicly-available, regardless of whether it has been made available. Choices: public (Data asset is or could be made publicly available to all without restrictions), restricted public (Data asset is available under certain use restrictions), or non-public (Data asset is not available to members of the public)"
],
"title": [
"Public Access Level"
],
"enum": [
"public",
"restricted public",
"non-public"
]
},
"rights": {
"title": [
"Rights"
],
"description": [
"This may include information regarding access or restrictions based on privacy, security, or other policies. This should also provide an explanation for the selected \"accessLevel\" including instructions for how to access a restricted file, if applicable, or explanation for why a \"non-public\" or \"restricted public\" data assetis not \"public,\" if applicable. Text, 255 characters."
],
"anyOf": [
{
"type": "string",
"minLength": 1,
"maxLength": 255
},
{
"type": "null",
"minLength": null,
"maxLength": null
}
]
},
"accrualPeriodicity": {
"title": [
"Frequency"
],
"description": [
"Frequency with which dataset is published."
],
"anyOf": [
{
"enum": [
"irregular"
],
"type": null,
"pattern": null
},
{
"enum": [
null
],
"type": "string",
"pattern": "^R\\/P(?:\\d+(?:\\.\\d+)?Y)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?W)?(?:\\d+(?:\\.\\d+)?D)?(?:T(?:\\d+(?:\\.\\d+)?H)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?S)?)?$"
},
{
"enum": [
null
],
"type": "null",
"pattern": null
}
]
},
"bureauCode": {
"title": [
"Bureau Code"
],
"description": [
"Federal agencies, combined agency and bureau code from <a href=\"http://www.whitehouse.gov/sites/default/files/omb/assets/a11_current_year/app_c.pdf\">OMB Circular A-11, Appendix C</a> in the format of <code>015:010</code>."
],
"type": [
"array"
],
"items": {
"type": [
"string"
],
"pattern": [
"[0-9]{3}:[0-9]{2}"
]
},
"minItems": [
1
],
"uniqueItems": [
true
]
},
"contactPoint": {
"$ref": [
"vcard.json"
]
},
"describedBy": {
"title": [
"Data Dictionary"
],
"description": [
"URL to the data dictionary for the dataset or API. Note that documentation other than a data dictionary can be referenced using Related Documents as shown in the expanded fields."
],
"anyOf": [
{
"type": "string",
"format": "uri"
},
{
"type": "null",
"format": null
}
]
},
"describedByType": {
"title": [
"Data Dictionary Type"
],
"description": [
"The machine-readable file format (IANA Media Type or MIME Type) of the distribution’s describedBy URL"
],
"anyOf": [
{
"pattern": "^[-\\w]+/[-\\w]+(\\.[-\\w]+)*([+][-\\w]+)?$",
"type": "string"
},
{
"pattern": null,
"type": "null"
}
]
},
"conformsTo": {
"title": [
"Data Standard"
],
"description": [
"URI used to identify a standardized specification the dataset conforms to"
],
"anyOf": [
{
"type": "string",
"format": "uri"
},
{
"type": "null",
"format": null
}
]
},
"dataQuality": {
"title": [
"Data Quality"
],
"description": [
"Whether the dataset meets the agency’s Information Quality Guidelines (true/false)."
],
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"description": {
"title": [
"Description"
],
"description": [
"Human-readable description (e.g., an abstract) with sufficient detail to enable a user to quickly understand whether the asset is of interest."
],
"type": [
"string"
],
"minLength": [
1
]
},
"distribution": {
"title": [
"Distribution"
],
"description": [
"A container for the array of Distribution objects"
],
"anyOf": [
{
"type": "array",
"items": {
"$ref": [
"distribution.json"
],
"minItems": [
1
],
"uniqueItems": [
true
]
}
},
{
"type": "null",
"items": [
null
]
}
]
},
"identifier": {
"title": [
"Unique Identifier"
],
"description": [
"A unique identifier for the dataset or API as maintained within an Agency catalog or database."
],
"type": [
"string"
],
"minLength": [
1
]
},
"issued": {
"title": [
"Release Date"
],
"description": [
"Date of formal issuance."
],
"anyOf": [
{
"type": "string",
"pattern": "^([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$"
},
{
"type": "null",
"pattern": null
}
]
},
"keyword": {
"title": [
"Tags"
],
"description": [
"Tags (or keywords) help users discover your dataset; please include terms that would be used by technical and non-technical users."
],
"type": [
"array"
],
"items": {
"type": [
"string"
],
"minLength": [
1
]
},
"minItems": [
1
]
},
"landingPage": {
"title": [
"Homepage URL"
],
"description": [
"Alternative landing page used to redirect user to a contextual, Agency-hosted “homepage” for the Dataset or API when selecting this resource from the Data.gov user interface."
],
"anyOf": [
{
"type": "string",
"format": "uri"
},
{
"type": "null",
"format": null
}
]
},
"language": {
"title": [
"Language"
],
"description": [
"The language of the dataset."
],
"anyOf": [
{
"type": "array",
"items": {
"type": [
"string"
],
"pattern": [
"^(((([A-Za-z]{2,3}(-([A-Za-z]{3}(-[A-Za-z]{3}){0,2}))?)|[A-Za-z]{4}|[A-Za-z]{5,8})(-([A-Za-z]{4}))?(-([A-Za-z]{2}|[0-9]{3}))?(-([A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(-([0-9A-WY-Za-wy-z](-[A-Za-z0-9]{2,8})+))*(-(x(-[A-Za-z0-9]{1,8})+))?)|(x(-[A-Za-z0-9]{1,8})+)|((en-GB-oed|i-ami|i-bnn|i-default|i-enochian|i-hak|i-klingon|i-lux|i-mingo|i-navajo|i-pwn|i-tao|i-tay|i-tsu|sgn-BE-FR|sgn-BE-NL|sgn-CH-DE)|(art-lojban|cel-gaulish|no-bok|no-nyn|zh-guoyu|zh-hakka|zh-min|zh-min-nan|zh-xiang)))$"
]
}
},
{
"type": "null",
"items": [
null
]
}
]
},
"license": {
"title": [
"License"
],
"description": [
"The license dataset or API is published with. See <a href=\"https://project-open-data.cio.gov/open-licenses/\">Open Licenses</a> for more information."
],
"anyOf": [
{
"type": "string",
"format": "uri"
},
{
"type": "null",
"format": null
}
]
},
"modified": {
"title": [
"Last Update"
],
"description": [
"Most recent date on which the dataset was changed, updated or modified."
],
"anyOf": [
{
"type": "string",
"pattern": "^([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$"
},
{
"type": "string",
"pattern": "^(R\\d*\\/)?P(?:\\d+(?:\\.\\d+)?Y)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?W)?(?:\\d+(?:\\.\\d+)?D)?(?:T(?:\\d+(?:\\.\\d+)?H)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?S)?)?$"
},
{
"type": "string",
"pattern": "^(R\\d*\\/)?([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\4([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\18[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?(\\/)P(?:\\d+(?:\\.\\d+)?Y)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?W)?(?:\\d+(?:\\.\\d+)?D)?(?:T(?:\\d+(?:\\.\\d+)?H)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?S)?)?$"
}
]
},
"primaryITInvestmentUII": {
"title": [
"Primary IT Investment UII"
],
"description": [
"For linking a dataset with an IT Unique Investment Identifier (UII)"
],
"anyOf": [
{
"type": "string",
"pattern": "[0-9]{3}-[0-9]{9}"
},
{
"type": "null",
"pattern": null
}
]
},
"programCode": {
"title": [
"Program Code"
],
"description": [
"Federal agencies, list the primary program related to this data asset, from the <a href=\"http://goals.performance.gov/sites/default/files/images/FederalProgramInventory_FY13_MachineReadable_091613.xls\">Federal Program Inventory</a>. Use the format of <code>015:001</code>"
],
"type": [
"array"
],
"items": {
"type": [
"string"
],
"pattern": [
"[0-9]{3}:[0-9]{3}"
]
},
"minItems": [
1
],
"uniqueItems": [
true
]
},
"publisher": {
"$ref": [
"organization.json"
]
},
"references": {
"title": [
"Related Documents"
],
"description": [
"Related documents such as technical information about a dataset, developer documentation, etc."
],
"anyOf": [
{
"type": "array",
"items": {
"type": [
"string"
],
"format": [
"uri"
]
},
"minItems": 1,
"uniqueItems": true
},
{
"type": "null",
"items": [
null
],
"minItems": null,
"uniqueItems": null
}
]
},
"spatial": {
"title": [
"Spatial"
],
"description": [
"The range of spatial applicability of a dataset. Could include a spatial region like a bounding box or a named place."
],
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"type": "null",
"minLength": null
}
]
},
"systemOfRecords": {
"title": [
"System of Records"
],
"description": [
"If the systems is designated as a system of records under the Privacy Act of 1974, provide the URL to the System of Records Notice related to this dataset."
],
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"type": "null",
"minLength": null
}
]
},
"temporal": {
"title": [
"Temporal"
],
"description": [
"The range of temporal applicability of a dataset (i.e., a start and end date of applicability for the data)."
],
"anyOf": [
{
"type": "string",
"pattern": "^([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?(\\/)([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$"
},
{
"type": "string",
"pattern": "^(R\\d*\\/)?([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\4([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\18[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?(\\/)P(?:\\d+(?:\\.\\d+)?Y)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?W)?(?:\\d+(?:\\.\\d+)?D)?(?:T(?:\\d+(?:\\.\\d+)?H)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?S)?)?$"
},
{
"type": "string",
"pattern": "^(R\\d*\\/)?P(?:\\d+(?:\\.\\d+)?Y)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?W)?(?:\\d+(?:\\.\\d+)?D)?(?:T(?:\\d+(?:\\.\\d+)?H)?(?:\\d+(?:\\.\\d+)?M)?(?:\\d+(?:\\.\\d+)?S)?)?\\/([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\4([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\18[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$"
},
{
"type": "null",
"pattern": null
}
]
},
"isPartOf": {
"title": [
"Collection"
],
"description": [
"The collection of which the dataset is a subset"
],
"anyOf": [
{
"type": "string",
"minLength": 1
}
]
},
"theme": {
"title": [
"Category"
],
"description": [
"Main thematic category of the dataset."
],
"anyOf": [
{
"type": "array",
"items": {
"type": [
"string"
],
"minLength": [
1
]
},
"minItems": 1,
"uniqueItems": true
},
{
"type": "null",
"items": [
null
],
"minItems": null,
"uniqueItems": null
}
]
},
"title": {
"title": [
"Title"
],
"description": [
"Human-readable name of the asset. Should be in plain English and include sufficient detail to facilitate search and discovery."
],
"type": [
"string"
],
"minLength": [
1
]
}
}
}
{
"$schema": [
"http://json-schema.org/draft-04/schema#"
],
"id": [
"https://project-open-data.cio.gov/v1.1/schema/distribution.json#"
],
"title": [
"Project Open Data Distribution"
],
"description": [
"Validates an entire collection of common core metadata JSON objects. Agencies produce said collections in the form of Data.json files."
],
"type": [
"object"
],
"dependencies": {
"downloadURL": {
"properties": {
"mediaType": {
"type": [
"string"
],
"pattern": [
"^[-\\w]+/[-\\w]+(\\.[-\\w]+)*([+][-\\w]+)?$"
]
}
},
"required": [
"mediaType"
]
}
},
"properties": {
"@type": {
"title": [
"Metadata Context"
],
"description": [
"IRI for the JSON-LD data type. This should be dcat:Distribution for each Distribution"
],
"enum": [
"dcat:Distribution"
]
},
"downloadURL": {
"title": [
"Download URL"
],
"description": [
"URL providing direct access to a downloadable file of a dataset"
],
"type": [
"string"
],
"format": [
"uri"
]
},
"mediaType": {
"title": [
"Media Type"
],
"description": [
"The machine-readable file format (IANA Media Type or MIME Type) of the distribution’s downloadURL"
],
"anyOf": [
{
"pattern": "^[-\\w]+/[-\\w]+(\\.[-\\w]+)*([+][-\\w]+)?$",
"type": "string"
},
{
"pattern": null,
"type": "null"
}
]
},
"format": {
"title": [
"Format"
],
"description": [
"A human-readable description of the file format of a distribution"
],
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"type": "null",
"minLength": null
}
]
},
"accessURL": {
"title": [
"Access URL"
],
"description": [
"URL providing indirect access to a dataset"
],
"anyOf": [
{
"type": "string",
"format": "uri"
},
{
"type": "null",
"format": null
}
]
},
"description": {
"title": [
"Description"
],
"description": [
"Human-readable description of the distribution"
],
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"type": "null",
"minLength": null
}
]
},
"title": {
"title": [
"Title"
],
"description": [
"Human-readable name of the distribution"
],
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"type": "null",
"minLength": null
}
]
},
"conformsTo": {
"title": [
"Data Standard"
],
"description": [
"URL providing indirect access to a dataset"
],
"anyOf": [
{
"type": "string",
"format": "uri"
},
{
"type": "null",
"format": null
}
]
},
"describedBy": {
"title": [
"Data Dictionary"
],
"description": [
"URL to the data dictionary for the distribution found at the downloadURL"
],
"anyOf": [
{
"type": "string",
"format": "uri"
},
{
"type": "null",
"format": null
}
]
},
"describedByType": {
"title": [
"Data Dictionary Type"
],
"description": [
"The machine-readable file format (IANA Media Type or MIME Type) of the distribution’s describedBy URL"
],
"anyOf": [
{
"pattern": "^[-\\w]+/[-\\w]+(\\.[-\\w]+)*([+][-\\w]+)?$",
"type": "string"
},
{
"pattern": null,
"type": "null"
}
]
}
}
}
Reference Datasets
Periodicity | Description |
---|---|
R/PT1S | Continuously [R/PT1S] |
R/PT1H | Hourly [R/PT1H] |
R/P1D | Daily [R/P1D] |
R/P3.5D | Twice a Week [R/P3.5D] |
R/P0.33W | Three Times a Week [R/P0.33W] |
R/P0.5W | Twice a Week [R/P0.5W] |
R/P1W | Weekly [R/P1W] |
R/P2W | Biweekly [R/P2W] |
R/P0.33M | Three Times a Month [R/P0.33M] |
R/P0.5M | Biweekly [R/P0.5M] |
R/P1M | Monthly [R/P1M] |
R/P2M | Bimonthly [R/P2M] |
R/P3M | Quarterly [R/P3M] |
R/P4M | Triannually [R/P4M] |
R/P6M | Biannually [R/P6M] |
R/P1Y | Annually [R/P1Y] |
R/P2Y | Biennially [R/P2Y] |
R/P3Y | Triennially [R/P3Y] |
R/P4Y | Quadrennially [R/P4Y] |
R/P10Y | Decennially [R/P10Y] |
Federal agencies, combined agency and bureau code from OMB Circular A-11, Appendix C.
Format:
015:11
Bureau Name | Treasury Code | CGAC Code |
---|---|---|
Legislative Branch [001] | ||
Senate [05] | 00 | 000 |
House of Representatives [10] | 00 | 000 |
Joint Items [11] | 00 | 000 |
Capitol Police [13] | 02 | 002 |
Office of Compliance [12] | 09 | 009 |
Congressional Budget Office [14] | 08 | 008 |
Architect of the Capitol [15] | 01 | 001 |
Botanic Garden [18] | 09 | 009 |
Library of Congress [25] | 03 | 003 |
Government Printing Office [30] | 04 | 004 |
Government Accountability Office [35] | 05 | 005 |
United States Tax Court [40] | 23 | 023 |
Legislative Branch Boards and Commissions [45] | 09 | 009 |
Judicial Branch [002] | ||
Judicial Branch [00] | 10 | 010 |
Supreme Court of the United States [05] | 10 | 010 |
United States Court of Appeals for the Federal Circuit [07] | 10 | 010 |
United States Court of International Trade [15] | 10 | 010 |
Courts of Appeals, District Courts, and other Judicial Services [25] | 10 | 010 |
Administrative Office of the United States Courts [26] | 10 | 010 |
Federal Judicial Center [30] | 10 | 010 |
Judicial Retirement Funds [35] | 10 | 010 |
United States Sentencing Commission [39] | 10 | 010 |
Department of Agriculture [005] | ||
Department of Agriculture [00] | 12 | 012 |
Office of the Secretary [03] | 12 | 012 |
Executive Operations [04] | 12 | 012 |
Office of Chief Information Officer [12] | 12 | 012 |
Office of Chief Financial Officer [14] | 12 | 012 |
Office of Civil Rights [07] | 12 | 012 |
Hazardous Materials Management [16] | 12 | 012 |
Buildings and Facilities [19] | 12 | 012 |
Office of Inspector General [08] | 12 | 012 |
Office of the General Counsel [10] | 12 | 012 |
Economic Research Service [13] | 12 | 012 |
National Agricultural Statistics Service [15] | 12 | 012 |
Agricultural Research Service [18] | 12 | 012 |
National Institute of Food and Agriculture [20] | 12 | 012 |
Animal and Plant Health Inspection Service [32] | 12 | 012 |
Food Safety and Inspection Service [35] | 12 | 012 |
Grain Inspection, Packers and Stockyards Administration [37] | 12 | 012 |
Agricultural Marketing Service [45] | 12 | 012 |
Risk Management Agency [47] | 12 | 012 |
Farm Service Agency [49] | 12 | 012 |
Natural Resources Conservation Service [53] | 12 | 012 |
Rural Development [55] | 12 | 012 |
Rural Housing Service [63] | 12 | 012 |
Rural Business - Cooperative Service [65] | 12 | 012 |
Rural Utilities Service [60] | 12 | 012 |
Foreign Agricultural Service [68] | 12 | 012 |
Food and Nutrition Service [84] | 12 | 012 |
Forest Service [96] | 12 | 012 |
Department of Commerce [006] | ||
Department of Commerce [00] | 13 | 013 |
Departmental Management [05] | 13 | 013 |
Economic Development Administration [06] | 13 | 013 |
Bureau of the Census [07] | 13 | 013 |
Economics and Statistics Administration [08] | 13 | 013 |
International Trade and Investment Administration [25] | 13 | 013 |
Bureau of Industry and Security [30] | 13 | 013 |
Minority Business Development Agency [40] | 13 | 013 |
National Oceanic and Atmospheric Administration [48] | 13 | 013 |
U.S. Patent and Trademark Office [51] | 13 | 013 |
National Technical Information Service [54] | 13 | 013 |
National Institute of Standards and Technology [55] | 13 | 013 |
National Telecommunications and Information Administration [60] | 13 | 013 |
Department of Defense - Military Programs [007] | ||
Department of Defense - Military Programs [00] | 0* | n/a |
Military Personnel [05] | 0* | n/a |
Operation and Maintenance [10] | 0* | n/a |
International Reconstruction and Other Assistance [12] | 0* | n/a |
Procurement [15] | 0* | n/a |
Research, Development, Test, and Evaluation [20] | 0* | n/a |
Military Construction [25] | 0* | n/a |
Family Housing [30] | 0* | n/a |
Revolving and Management Funds [40] | 0* | n/a |
Allowances [45] | 0* | n/a |
Trust Funds [55] | 0* | n/a |
Navy, Marine Corps [17] | 17 | n/a |
Army [21] | 21 | n/a |
Air Force [57] | 57 | n/a |
Defense-wide [97] | 97 | n/a |
Department of Education [018] | ||
Department of Education [00] | 91 | 091 |
Office of Elementary and Secondary Education [10] | 91 | 091 |
Office of Innovation and Improvement [12] | 91 | 091 |
Office of English Language Acquisition [15] | 91 | 091 |
Office of Special Education and Rehabilitative Services [20] | 91 | 091 |
Office of Vocational and Adult Education [30] | 91 | 091 |
Office of Postsecondary Education [40] | 91 | 091 |
Office of Federal Student Aid [45] | 91 | 091 |
Institute of Education Sciences [50] | 91 | 091 |
Departmental Management [80] | 91 | 091 |
Hurricane Education Recovery [85] | 91 | 091 |
Department of Energy [019] | ||
Department of Energy [00] | 89 | 089 |
National Nuclear Security Administration [05] | 89 | 089 |
Environmental and Other Defense Activities [10] | 89 | 089 |
Energy Programs [20] | 89 | 089 |
Power Marketing Administration [50] | 89 | 089 |
Departmental Administration [60] | 89 | 089 |
Department of Health and Human Services [009] | ||
Department of Health and Human Services [00] | 75 | 075 |
Food and Drug Administration [10] | 75 | 075 |
Health Resources and Services Administration [15] | 75 | 075 |
Indian Health Service [17] | 75 | 075 |
Centers for Disease Control and Prevention [20] | 75 | 075 |
National Institutes of Health [25] | 75 | 075 |
Substance Abuse and Mental Health Services Administration [30] | 75 | 075 |
Agency for Healthcare Research and Quality [33] | 75 | 075 |
Centers for Medicare and Medicaid Services [38] | 75 | 075 |
Administration for Children and Families [70] | 75 | 075 |
Administration for Community Living [75] | 75 | 075 |
Departmental Management [90] | 75 | 075 |
Program Support Center [91] | 75 | 075 |
Office of the Inspector General [92] | 75 | 075 |
Department of Homeland Security [024] | ||
Department of Homeland Security [00] | 70 | 070 |
Departmental Management and Operations [10] | 70 | 070 |
Office of the Inspector General [20] | 70 | 070 |
Citizenship and Immigration Services [30] | 70 | 070 |
United States Secret Service [40] | 70 | 070 |
Transportation Security Administration [45] | 70 | 070 |
Federal Law Enforcement Training Center [49] | 70 | 070 |
Immigration and Customs Enforcement [55] | 70 | 070 |
U.S. Customs and Border Protection [58] | 70 | 070 |
United States Coast Guard [60] | 70 | 070 |
National Protection and Programs Directorate [65] | 70 | 070 |
Federal Emergency Management Agency [70] | 70 | 070 |
Science and Technology [80] | 70 | 070 |
Domestic Nuclear Detection Office [85] | 70 | 070 |
Department of Housing and Urban Development [025] | ||
Department of Housing and Urban Development [00] | 86 | 086 |
Public and Indian Housing Programs [03] | 86 | 086 |
Community Planning and Development [06] | 86 | 086 |
Housing Programs [09] | 86 | 086 |
Government National Mortgage Association [12] | 86 | 086 |
Policy Development and Research [28] | 86 | 086 |
Fair Housing and Equal Opportunity [29] | 86 | 086 |
Office of Lead Hazard Control and Healthy Homes [32] | 86 | 086 |
Office of Sustainable Housing and Communities [33] | 86 | 086 |
Management and Administration [35] | 86 | 086 |
Department of the Interior [010] | ||
Department of the Interior [00] | 14 | 014 |
Bureau of Land Management [04] | 14 | 014 |
Bureau of Ocean Energy Management [06] | 14 | 014 |
Bureau of Safety and Environmental Enforcement [22] | 14 | 014 |
Office of Surface Mining Reclamation and Enforcement [08] | 14 | 014 |
Bureau of Reclamation [10] | 14 | 014 |
Central Utah Project [11] | 14 | 014 |
United States Geological Survey [12] | 14 | 014 |
United States Fish and Wildlife Service [18] | 14 | 014 |
National Park Service [24] | 14 | 014 |
Bureau of Indian Affairs and Bureau of Indian Education [76] | 14 | 014 |
Departmental Offices [84] | 14 | 014 |
Insular Affairs [85] | 14 | 014 |
Office of the Solicitor [86] | 14 | 014 |
Office of Inspector General [88] | 14 | 014 |
Office of the Special Trustee for American Indians [90] | 14 | 014 |
National Indian Gaming Commission [92] | 14 | 014 |
Department-Wide Programs [95] | 14 | 014 |
Department of Justice [011] | ||
Department of Justice [00] | 15 | 015 |
General Administration [03] | 15 | 015 |
United States Parole Commission [04] | 15 | 015 |
Legal Activities and U.S. Marshals [05] | 15 | 015 |
National Security Division [08] | 15 | 015 |
Radiation Exposure Compensation [06] | 15 | 015 |
Interagency Law Enforcement [07] | 15 | 015 |
Federal Bureau of Investigation [10] | 15 | 015 |
Drug Enforcement Administration [12] | 15 | 015 |
Bureau of Alcohol, Tobacco, Firearms, and Explosives [14] | 15 | 015 |
Federal Prison System [20] | 15 | 015 |
Office of Justice Programs [21] | 15 | 015 |
Violent Crime Reduction Trust Fund [30] | 15 | 015 |
Department of Labor [012] | ||
Department of Labor [00] | 16 | 016 |
Employment and Training Administration [05] | 16 | 016 |
Employee Benefits Security Administration [11] | 16 | 016 |
Pension Benefit Guaranty Corporation [12] | 16 | 016 |
Employment Standards Administration [17] | 16 | 016 |
Office of Workers' Compensation Programs [15] | 16 | 016 |
Wage and Hour Division [16] | 16 | 016 |
Office of Federal Contract Compliance Programs [22] | 16 | 016 |
Office of Labor Management Standards [23] | 16 | 016 |
Occupational Safety and Health Administration [18] | 16 | 016 |
Mine Safety and Health Administration [19] | 16 | 016 |
Bureau of Labor Statistics [20] | 16 | 016 |
Departmental Management [25] | 16 | 016 |
Department of State [014] | ||
Department of State [00] | 19 | 019 |
Administration of Foreign Affairs [05] | 19 | 019 |
International Organizations and Conferences [10] | 19 | 019 |
International Commissions [15] | 19 | 019 |
Other [25] | 11 | 011 |
Department of Transportation [021] | ||
Department of Transportation [00] | 69 | 069 |
Office of the Secretary [04] | 69 | 069 |
Federal Aviation Administration [12] | 69 | 069 |
Federal Highway Administration [15] | 69 | 069 |
Federal Motor Carrier Safety Administration [17] | 69 | 069 |
National Highway Traffic Safety Administration [18] | 69 | 069 |
Federal Railroad Administration [27] | 69 | 069 |
Federal Transit Administration [36] | 69 | 069 |
Saint Lawrence Seaway Development Corporation [40] | 69 | 069 |
Pipeline and Hazardous Materials Safety Administration [50] | 69 | 069 |
Office of Inspector General [56] | 69 | 069 |
Surface Transportation Board [61] | 69 | 069 |
Maritime Administration [70] | 69 | 069 |
Department of the Treasury [015] | ||
Department of the Treasury [00] | 20 | 020 |
Departmental Offices [05] | 20 | 020 |
Financial Crimes Enforcement Network [04] | 20 | 020 |
Fiscal Service [12] | 20 | 020 |
Federal Financing Bank [11] | 20 | 020 |
Alcohol and Tobacco Tax and Trade Bureau [13] | 20 | 020 |
Bureau of Engraving and Printing [20] | 20 | 020 |
United States Mint [25] | 20 | 020 |
Internal Revenue Service [45] | 20 | 020 |
Comptroller of the Currency [57] | 20 | 020 |
Interest on the Public Debt [60] | 20 | 020 |
Department of Veterans Affairs [029] | ||
Department of Veterans Affairs [00] | 36 | 036 |
Veterans Health Administration [15] | 36 | 036 |
Benefits Programs [25] | 36 | 036 |
Departmental Administration [40] | 36 | 036 |
Other Defense Civil Programs [200] | ||
Other Defense Civil Programs [00] | 84 | n/a |
Military Retirement [05] | 97 | 097 |
Retiree Health Care [07] | 97 | 097 |
Educational Benefits [10] | 97 | 097 |
American Battle Monuments Commission [15] | 74 | 074 |
Armed Forces Retirement Home [20] | 84 | 084 |
Cemeterial Expenses [25] | 21 | 021 |
Forest and Wildlife Conservation, Military Reservations [30] | 97 | 017 |
Selective Service System [45] | 90 | 090 |
International Assistance Programs [184] | ||
International Assistance Programs [00] | 72 | n/a |
Millennium Challenge Corporation [03] | 95 | 524 |
International Security Assistance [05] | 11 | 011 |
Multilateral Assistance [10] | 11 | 011 |
Agency for International Development [15] | 72 | 072 |
Overseas Private Investment Corporation [20] | 71 | 071 |
Trade and Development Agency [25] | 11 | 011 |
Peace Corps [35] | 11 | 011 |
Inter-American Foundation [40] | 11 | 011 |
African Development Foundation [50] | 11 | 011 |
International Monetary Programs [60] | 11 | 011 |
Military Sales Program [70] | 11 | 011 |
Special Assistance Initiatives [75] | 72 | 072 |
Foreign Assistance Program Allowances [95] | 95 | n/a |
Executive Office of the President [100] | ||
Executive Office of the President [00] | 11 | 011 |
The White House [05] | 11 | 011 |
Executive Residence at the White House [10] | 11 | 011 |
Special Assistance to the President and the Official Residence of the Vice President [15] | 11 | 011 |
Council of Economic Advisers [20] | 11 | 011 |
Council on Environmental Quality and Office of Environmental Quality [25] | 11 | 011 |
National Security Council and Homeland Security Council [35] | 11 | 011 |
Office of Administration [50] | 11 | 011 |
Office of Management and Budget [55] | 11 | 011 |
Office of National Drug Control Policy [60] | 11 | 011 |
Office of Science and Technology Policy [65] | 11 | 011 |
Office of the United States Trade Representative [70] | 11 | 011 |
Unanticipated Needs [95] | 11 | 011 |
Corps of Engineers - Civil Works [202] | ||
Corps of Engineers - Civil Works [00] | 96 | 096 |
Environmental Protection Agency [020] | ||
Environmental Protection Agency [00] | 68 | 068 |
General Services Administration [023] | ||
General Services Administration [00] | 47 | 047 |
Real Property Activities [05] | 47 | 047 |
Supply and Technology Activities [10] | 47 | 047 |
General Activities [30] | 47 | 047 |
National Aeronautics and Space Administration [026] | ||
National Aeronautics and Space Administration [00] | 80 | 080 |
National Science Foundation [422] | ||
National Science Foundation [00] | 49 | 049 |
Office of Personnel Management [027] | ||
Office of Personnel Management [00] | 24 | 024 |
Small Business Administration [028] | ||
Small Business Administration [00] | 73 | 073 |
Social Security Administration [016] | ||
Social Security Administration [00] | 28 | 028 |
Access Board [310] | ||
Access Board [00] | 95 | 310 |
Administrative Conference of the United States [302] | ||
Administrative Conference of the United States [00] | 95 | 302 |
Advisory Council on Historic Preservation [306] | ||
Advisory Council on Historic Preservation [00] | 95 | 306 |
Affordable Housing Program [530] | ||
Affordable Housing Program [00] | 95 | n/a |
Appalachian Regional Commission [309] | ||
Appalachian Regional Commission [00] | 46 | 309 |
Barry Goldwater Scholarship and Excellence in Education Foundation [313] | ||
Barry Goldwater Scholarship and Excellence in Education Foundation [00] | 95 | 313 |
Broadcasting Board of Governors [514] | ||
Broadcasting Board of Governors [00] | 95 | 514 |
Bureau of Consumer Financial Protection [581] | ||
Bureau of Consumer Financial Protection [00] | 95 | 581 |
Central Intelligence Agency [316] | ||
Central Intelligence Agency [00] | 56 | 056 |
Chemical Safety and Hazard Investigation Board [510] | ||
Chemical Safety and Hazard Investigation Board [00] | 95 | 510 |
Christopher Columbus Fellowship Foundation [465] | ||
Christopher Columbus Fellowship Foundation [00] | 76 | 465 |
Civilian Property Realignment Board [582] | ||
Civilian Property Realignment Board [00] | 95 | n/a |
Commission of Fine Arts [323] | ||
Commission of Fine Arts [00] | 95 | 323 |
Commission on Civil Rights [326] | ||
Commission on Civil Rights [00] | 95 | 326 |
Committee for Purchase from People who are Blind or Severely Disabled, activities [338] | ||
Committee for Purchase from People who are Blind or Severely Disabled, activities [00] | 95 | 338 |
Commodity Futures Trading Commission [339] | ||
Commodity Futures Trading Commission [00] | 95 | 339 |
Consumer Product Safety Commission [343] | ||
Consumer Product Safety Commission [00] | 61 | 061 |
Corporation for National and Community Service [485] | ||
Corporation for National and Community Service [00] | 95 | 485 |
Corporation for Public Broadcasting [344] | ||
Corporation for Public Broadcasting [00] | 20 | 020 |
Corporation for Travel Promotion [580] | ||
Corporation for Travel Promotion [00] | 95 | 580 |
Council of the Inspectors General on Integrity and Efficiency [542] | ||
Council of the Inspectors General on Integrity and Efficiency [00] | 95 | 542 |
Court Services and Offender Supervision Agency for the District of Columbia [511] | ||
Court Services and Offender Supervision Agency for the District of Columbia [00] | 95 | 511 |
Defense Nuclear Facilities Safety Board [347] | ||
Defense Nuclear Facilities Safety Board [00] | 95 | 347 |
Delta Regional Authority [517] | ||
Delta Regional Authority [00] | 95 | 517 |
Denali Commission [513] | ||
Denali Commission [00] | 95 | 513 |
District of Columbia [349] | ||
District of Columbia Courts [10] | 95 | 349 |
District of Columbia General and Special Payments [30] | 20 | 020 |
Election Assistance Commission [525] | ||
Election Assistance Commission [00] | 95 | 525 |
Electric Reliability Organization [531] | ||
Electric Reliability Organization [00] | 95 | n/a |
Equal Employment Opportunity Commission [350] | ||
Equal Employment Opportunity Commission [00] | 45 | 045 |
Export-Import Bank of the United States [351] | ||
Export-Import Bank of the United States [00] | 83 | 083 |
Farm Credit Administration [352] | ||
Farm Credit Administration [00] | 78 | 352 |
Farm Credit System Insurance Corporation [355] | ||
Farm Credit System Insurance Corporation [00] | 78 | 352 |
Federal Communications Commission [356] | ||
Federal Communications Commission [00] | 27 | 027 |
Federal Deposit Insurance Corporation [357] | ||
Deposit Insurance [20] | 51 | 051 |
FSLIC Resolution [30] | 51 | 051 |
Orderly Liquidation [35] | 51 | 051 |
FDIC - Office of Inspector General [40] | 51 | 051 |
Federal Drug Control Programs [154] | ||
Federal Drug Control Programs [00] | 11 | 011 |
Federal Election Commission [360] | ||
Federal Election Commission [00] | 95 | 360 |
Federal Financial Institutions Examination Council [362] | ||
Federal Financial Institutions Examination Council [10] | 95 | n/a |
Federal Financial Institutions Examination Council Appraisal Subcommittee [20] | 95 | 362 |
Federal Housing Finance Agency [537] | ||
Federal Housing Finance Agency [00] | 95 | 537 |
Federal Labor Relations Authority [365] | ||
Federal Labor Relations Authority [00] | 54 | 054 |
Federal Maritime Commission [366] | ||
Federal Maritime Commission [00] | 65 | 065 |
Federal Mediation and Conciliation Service [367] | ||
Federal Mediation and Conciliation Service [00] | 93 | 093 |
Federal Mine Safety and Health Review Commission [368] | ||
Federal Mine Safety and Health Review Commission [00] | 95 | 368 |
Federal Retirement Thrift Investment Board [369] | ||
Federal Retirement Thrift Investment Board [00] | 26 | 026 |
Federal Trade Commission [370] | ||
Federal Trade Commission [00] | 29 | 029 |
Gulf Coast Ecosystem Restoration Council [586] | ||
Gulf Coast Ecosystem Restoration Council [00] | 95 | 471 |
Harry S Truman Scholarship Foundation [372] | ||
Harry S Truman Scholarship Foundation [00] | 95 | 372 |
Independent Payment Advisory Board [578] | ||
Independent Payment Advisory Board [00] | 95 | n/a |
Indian Law and Order Commission [584] | ||
Indian Law and Order Commission [00] | 48 | 584 |
Institute of American Indian and Alaska Native Culture and Arts Development [373] | ||
Institute of American Indian and Alaska Native Culture and Arts Development [00] | 95 | 373 |
Institute of Museum and Library Services [474] | ||
Institute of Museum and Library Services [00] | 59 | 417 |
Intelligence Community Management Account [467] | ||
Intelligence Community Management Account [00] | 95 | 467 |
International Trade Commission [378] | ||
International Trade Commission [00] | 34 | 034 |
James Madison Memorial Fellowship Foundation [381] | ||
James Madison Memorial Fellowship Foundation [00] | 95 | 381 |
Japan-United States Friendship Commission [382] | ||
Japan-United States Friendship Commission [00] | 95 | 382 |
Legal Services Corporation [385] | ||
Legal Services Corporation [00] | 20 | 020 |
Marine Mammal Commission [387] | ||
Marine Mammal Commission [00] | 95 | 387 |
Merit Systems Protection Board [389] | ||
Merit Systems Protection Board [00] | 41 | 389 |
Military Compensation and Retirement Modernization Commission [479] | ||
Military Compensation and Retirement Modernization Commission [00] | 48 | 479 |
Morris K. Udall and Stewart L. Udall Foundation [487] | ||
Morris K. Udall and Stewart L. Udall Foundation [00] | 95 | 487 |
National Archives and Records Administration [393] | ||
National Archives and Records Administration [00] | 88 | 088 |
National Capital Planning Commission [394] | ||
National Capital Planning Commission [00] | 95 | 394 |
National Council on Disability [413] | ||
National Council on Disability [00] | 95 | 413 |
National Credit Union Administration [415] | ||
National Credit Union Administration [00] | 25 | 025 |
National Endowment for the Arts [417] | ||
National Endowment for the Arts [00] | 59 | 417 |
National Endowment for the Humanities [418] | ||
National Endowment for the Humanities [00] | 59 | 417 |
National Infrastructure Bank [538] | ||
National Infrastructure Bank [00] | 95 | n/a |
National Labor Relations Board [420] | ||
National Labor Relations Board [00] | 63 | 420 |
National Mediation Board [421] | ||
National Mediation Board [00] | 95 | 421 |
National Railroad Passenger Corporation Office of Inspector General [575] | ||
National Railroad Passenger Corporation Office of Inspector General [00] | 48 | 575 |
National Transportation Safety Board [424] | ||
National Transportation Safety Board [00] | 95 | 424 |
Neighborhood Reinvestment Corporation [428] | ||
Neighborhood Reinvestment Corporation [00] | 82 | 082 |
Northern Border Regional Commission [573] | ||
Northern Border Regional Commission [00] | 95 | 573 |
Nuclear Regulatory Commission [429] | ||
Nuclear Regulatory Commission [00] | 31 | 031 |
Nuclear Waste Technical Review Board [431] | ||
Nuclear Waste Technical Review Board [00] | 48 | 431 |
Occupational Safety and Health Review Commission [432] | ||
Occupational Safety and Health Review Commission [00] | 95 | 432 |
Office of Government Ethics [434] | ||
Office of Government Ethics [00] | 95 | 434 |
Office of Navajo and Hopi Indian Relocation [435] | ||
Office of Navajo and Hopi Indian Relocation [00] | 48 | 435 |
Office of Special Counsel [436] | ||
Office of Special Counsel [00] | 62 | 062 |
Office of the Federal Coordinator for Alaska Natural Gas Transportation Projects [534] | ||
Office of the Federal Coordinator for Alaska Natural Gas Transportation Projects [00] | 95 | 534 |
Other Commissions and Boards [505] | ||
Other Commissions and Boards [00] | 48 | 377 |
Patient-Centered Outcomes Research Trust Fund [579] | ||
Patient-Centered Outcomes Research Trust Fund [00] | 95 | 579 |
Postal Service [440] | ||
Postal Service [00] | 18 | 018 |
Presidio Trust [512] | ||
Presidio Trust [00] | 95 | 512 |
Privacy and Civil Liberties Oversight Board [535] | ||
Privacy and Civil Liberties Oversight Board [00] | 95 | 535 |
Public Company Accounting Oversight Board [526] | ||
Public Company Accounting Oversight Board [00] | 95 | n/a |
Public Defender Service for the District of Columbia [587] | ||
Public Defender Service for the District of Columbia [00] | 95 | 511 |
Railroad Retirement Board [446] | ||
Railroad Retirement Board [00] | 60 | 060 |
Recovery Act Accountability and Transparency Board [539] | ||
Recovery Act Accountability and Transparency Board [00] | 95 | 539 |
Securities and Exchange Commission [449] | ||
Securities and Exchange Commission [00] | 50 | 050 |
Standard Setting Body [527] | ||
Standard Setting Body [00] | 95 | n/a |
Securities Investor Protection Corporation [576] | ||
Securities Investor Protection Corporation [00] | 95 | n/a |
Smithsonian Institution [452] | ||
Smithsonian Institution [00] | 33 | 033 |
State Justice Institute [453] | ||
State Justice Institute [00] | 48 | 453 |
Tennessee Valley Authority [455] | ||
Tennessee Valley Authority [00] | 64 | 455 |
United Mine Workers of America Benefit Funds [476] | ||
United Mine Workers of America Benefit Funds [00] | 95 | n/a |
United States Court of Appeals for Veterans Claims [345] | ||
United States Court of Appeals for Veterans Claims [00] | 95 | 345 |
United States Enrichment Corporation Fund [486] | ||
United States Enrichment Corporation Fund [00] | 95 | 486 |
United States Holocaust Memorial Museum [456] | ||
United States Holocaust Memorial Museum [00] | 95 | 456 |
United States Institute of Peace [458] | ||
United States Institute of Peace [00] | 95 | 458 |
United States Interagency Council on Homelessness [376] | ||
United States Interagency Council on Homelessness [00] | 48 | 376 |
Vietnam Education Foundation [519] | ||
Vietnam Education Foundation [00] | 95 | 519 |
Federal National Mortgage Association [915] | ||
Federal National Mortgage Association [00] | 39 | 915 |
Federal Home Loan Mortgage Corporation [914] | ||
Federal Home Loan Mortgage Corporation [00] | 39 | 914 |
Federal Home Loan Bank System [913] | ||
Federal Home Loan Bank System [00] | 39 | 913 |
Farm Credit System [912] | ||
Farm Credit System [00] | 39 | 912 |
Financing Vehicles and the Board of Governors of the Federal Reserve [920] | ||
Financing Vehicles and the Board of Governors of the Federal Reserve [00] | 39 | 920 |
Federal agencies, list the primary program related to this data asset, from the Federal Program Inventory.
Format:
015:001
read_csv(
here(
"data/FederalProgramInventory_FY13_MachineReadable_091613.csv"
),
show_col_types = FALSE,
col_types = cols(
`Agency Name` = col_character(),
`Program Name` = col_character(),
`Additional Information (optional)` = col_character(),
agencyCode = col_character(),
ProgramCode = col_character(),
ProgramCodePODFormat = col_character()
)
) |>
reframe(
`Agency Name` = paste0(`Agency Name`, " [", agencyCode, "]"),
`Program Name` = paste0(`Program Name`, " [", ProgramCodePODFormat, "]"),
"Additional Information" = `Additional Information (optional)`
) |>
group_by(`Agency Name`) |>
gt_tab()
Program Name | Additional Information |
---|---|
Department of Agriculture [005] | |
Rural Business Loans [005:001] | - |
Rural Business Grants [005:002] | - |
Energy Assistance Loan Guarantees and Payments [005:003] | - |
Distance Learning Telemedicine and Broadband [005:004] | - |
Rural Electrification and Telecommunication Loans [005:005] | - |
Rural Water and Waste Loans and Grants [005:006] | - |
Single Family Housing [005:007] | - |
Multi-Family Housing [005:008] | - |
Farm labor Housing [005:009] | - |
Rental Assistance [005:010] | - |
Community Facilities [005:011] | - |
Farm Loans [005:012] | - |
Commodity Programs, Commodity Credit Corporation [005:013] | - |
Conservation Programs, Commodity Credit Corporation [005:014] | - |
Grassroots Source Water Protection Program [005:015] | - |
Reforestation Pilot Program [005:016] | - |
State Mediation Grants [005:017] | - |
Dairy Indemnity Payment Program (DIPP) [005:018] | - |
Emergency Conservation Program [005:019] | - |
Emergency Forest Restoration Program [005:020] | - |
Noninsured Crop Disaster Assistance Program (NAP) [005:021] | - |
Federal Crop Insurance Corporation Fund [005:022] | - |
Public Law 480 Title I Direct Credit and Food for Progress Program Account [005:023] | - |
Food for Peace Title II Grants [005:024] | - |
McGovern-Dole International Food for Education and Child Nutrition Program [005:025] | - |
Market Development and Food Assistance [005:026] | - |
Conservation Operations [005:027] | - |
Conservation Easements [005:028] | - |
Environmental Quality Incentives Program [005:029] | - |
Capital Improvement and Maintenance [005:030] | - |
Forest and Rangeland Research [005:031] | - |
Forest Service Permanent Appropriations and Trust Funds [005:032] | - |
Land Acquisition [005:033] | - |
National Forest System [005:034] | - |
State and Private Forestry [005:035] | - |
Wildland Fire Management [005:036] | - |
Research and Education [005:037] | - |
Extension [005:038] | - |
Integrated Activities [005:039] | - |
National Research [005:040] | - |
Economic Research, Market Outlook, and Policy Analysis [005:041] | - |
Agricultural Estimates [005:042] | - |
Census of Agriculture [005:043] | - |
Grain Regulatory Program [005:044] | - |
Packers and Stockyards Program [005:045] | - |
Inspection and Grading of Farm Products [005:046] | - |
Marketing Services [005:047] | - |
Payments to States and Possessions [005:048] | - |
Perishable Agricultural Commodities Act [005:049] | - |
Commodity Purchases [005:050] | - |
Safeguarding and Emergency Preparedness/Response [005:051] | - |
Safe Trade and International Technical Assistance [005:052] | - |
Animal Welfare [005:053] | - |
Child Nutrition Programs [005:054] | - |
Commodity Assistance Programs [005:055] | - |
Supplemental Nutrition Assistance Program [005:056] | - |
Center for Nutrition Policy and Promotion [005:057] | - |
Food Safety and Inspection [005:058] | - |
Management Activities [005:059] | - |
(Primary Program Not Available) [005:000] | - |
Department of Commerce [006] | |
Management and Policy Coordination [006:001] | - |
Export Administration [006:002] | - |
Export Enforcement [006:003] | - |
Current Surveys and Statistics [006:004] | - |
Survey of Program Dynamics (mandatory) [006:005] | - |
State Children’s Health Insurance Program (mandatory) [006:006] | - |
Economic Statistics Programs [006:007] | - |
Demographic Statistics Program [006:008] | - |
Demographic Surveys Sample Redesign [006:009] | - |
Geographic Support [006:010] | - |
Data Processing [006:011] | - |
Census Working Capital Fund (Centralized Services) [006:012] | - |
Executive Direction [006:013] | - |
Departmental Staff Services [006:014] | - |
HCHB Renovation and Modernization [006:015] | - |
Gifts and Bequests Trust Fund [006:016] | - |
Franchise Fund [006:017] | - |
Executive Direction (Centralized Services) [006:018] | - |
Departmental Staff Services (Centralized Services ) [006:019] | - |
Office of the Inspector General [006:020] | - |
Bureau of Economic Analysis [006:021] | - |
Policy Support [006:022] | - |
Salaries and Expenses (S&E) [006:023] | - |
Partnership Planning Grants [006:024] | - |
Technical Assistance Grants [006:025] | - |
Public Works Grants [006:026] | - |
Economic Adjustment Assistance Grants [006:027] | - |
Research and Evaluation Grants [006:028] | - |
Trade Adjustment Assistance [006:029] | - |
Regional Export Challenge (New in FY 2014) [006:030] | - |
Investing in Manufacturing Communities Fund (New in FY 2014 [006:031] | - |
Disaster Recovery Assistance [006:032] | - |
EDA Revolving Fund [006:033] | - |
Operations and Administration (O&A) [006:034] | - |
Manufacturing and Services (Thru FY 2013) [006:035] | - |
Market Access and Compliance (Thru FY 2013) [006:036] | - |
Import Administration (Thru FY 2013) [006:037] | - |
U.S. and Foreign Commercial Service (Thru FY 2013 [006:038] | - |
Executive Direction and Administration [006:039] | - |
Grants to Wool Manufacturers (mandatory) [006:040] | - |
Industry and Analysis (New in FY 2014) [006:041] | - |
Enforcement and Compliance (New in FY 2014) [006:042] | - |
Global Markets (New in FY 2014) [006:043] | - |
Minority Business Development [006:044] | - |
Laboratory Programs [006:045] | - |
Corporate Services [006:046] | - |
Standards Coordination and Special Programs [006:047] | - |
Technology Innovation Programs [006:048] | - |
Hollings Manufacturing Extension Partnership [006:049] | - |
Advanced Manufacturing Technology Consortia [006:050] | - |
Construction and Major Renovations [006:051] | - |
NIST Working Capital Fund (Centralized Services) [006:052] | - |
Wireless Innovation (WIN) Fund (mandatory) [006:053] | - |
National Network for Manufacturing Innovation (mandatory) [006:054] | - |
National Ocean Service [006:055] | - |
National Marine Fisheries Service [006:056] | - |
Oceanic and Atmospheric Research [006:057] | - |
National Weather Service [006:058] | - |
National Environmental Satellite, Data and Information Service [006:059] | - |
Program Support [006:060] | - |
Information Clearinghouse Program [006:061] | - |
Domestic and International Policy [006:062] | - |
Spectrum Management [006:063] | - |
Telecommunications Science Research [006:064] | - |
Broadband Programs [006:065] | - |
Wireless Broadband Access [006:066] | - |
Public Telecommunications Facilities, Planning and Construction [006:067] | - |
Digital Television Transition and Public Safety Fund (mandatory) [006:068] | - |
Public Safety Broadband Corporation (mandatory) [006:069] | - |
Patents [006:070] | - |
Trademarks [006:071] | - |
(Primary Program Not Available) [006:000] | - |
Department of Defense [007] | |
Bomber Forces [007:001] | - |
Intercontinental Ballistic Missiles (ICBMs) [007:002] | - |
Strategic Land-Based missile (SLBM) [007:003] | - |
Activities Supporting Bombers & ICBMs [007:004] | - |
Space Defense [007:005] | - |
Ballistic Missile Defense [007:006] | - |
Interceptors [007:007] | - |
North American Aerospace Defense Command (NORAD) and Space Command (SPACECOM) Support [007:008] | - |
Surveillance [007:009] | - |
Air Defense Initiative [007:010] | - |
Surveillance/Warning [007:011] | - |
Command Centers [007:012] | - |
Communications [007:013] | - |
Army Division Increment [007:014] | - |
Army Non-Divisional Combat Increment [007:015] | - |
Army Tactical Support Increment [007:016] | - |
Marine Ground Forces [007:017] | - |
Army Special Mission Forces [007:018] | - |
Army Base Operations Support (BOS) and Mgmt., Headquarters (HQ)s [007:019] | - |
Army Operational Support [007:020] | - |
Army Research and Development Support (R&D) [007:021] | - |
Army Systems Support [007:022] | - |
Marine Ground Forces Support [007:023] | - |
Air Force [007:024] | - |
Marine [007:025] | - |
Navy [007:026] | - |
Submarines [007:027] | - |
Surface Combatants [007:028] | - |
Amphibious Forces [007:029] | - |
Service Forces [007:030] | - |
Mine Warfare Forces [007:031] | - |
Maritime Patrol & Undersea Surveillance [007:032] | - |
Sea Based Anti-Submarine Warfare (ASW) Air Forces [007:033] | - |
Non-Strategic Nuclear Naval Forces [007:034] | - |
Fleet Support [007:035] | - |
Navy Systems Support [007:036] | - |
Navy R&D Support [007:037] | - |
Navy BOS & Mgmt., HQs [007:038] | - |
Other Operational Support [007:039] | - |
Multimode & lntermodal Lift [007:040] | - |
Airlift Forces [007:041] | - |
Sealift Forces [007:042] | - |
Land Mobility Forces [007:043] | - |
SOF Operations [007:044] | - |
SOF Support Activities [007:045] | - |
General Purpose Support [007:046] | - |
Theater Missile Defense [007:047] | - |
Counterdrug Support [007:048] | - |
Defense-Wide Intelligence Program [007:049] | - |
Centrally Managed Communications [007:050] | - |
Satellite Communications [007:051] | - |
Command & Control Activities [007:052] | - |
Information Management Activities [007:053] | - |
Technology Base [007:054] | - |
Advanced Development [007:055] | - |
Undistributed Demonstration / Validation (DemVal) Programs [007:056] | - |
Undistributed Engineering and Manufacturing Development (EMD) Programs [007:057] | - |
R&D Support Activities [007:058] | - |
R&D BOS & Mgmt. HQs [007:059] | - |
Geophysical Activities [007:060] | - |
Geophysical BOS & Mgmt., HQs [007:061] | - |
Space Launch Support [007:062] | - |
Nuclear Weapons Support [007:063] | - |
International Support [007:064] | - |
Security & Investigative Activities [007:065] | - |
Supply Operations [007:066] | - |
Maintenance Operations [007:067] | - |
Logistics Support to R&D Activities [007:068] | - |
Logistics Support to Procurement Activities [007:069] | - |
Logistics Support to MILCON Activities [007:070] | - |
Logistics BOS & Mgmt. HQs [007:071] | - |
Other Logistics Support [007:072] | - |
Personnel Acquisition [007:073] | - |
Personnel Acquisition Base Operations [007:074] | - |
Military Personnel Training [007:075] | - |
Civilian Personnel Training [007:076] | - |
Flight Training [007:077] | - |
Intelligence Skill Training [007:078] | - |
Health Personnel Training [007:079] | - |
Training BOS & Management. HQs [007:080] | - |
Hospitals & Other Medical Activities [007:081] | - |
Medical BOS & Mgmt. HQs [007:082] | - |
Individuals [007:083] | - |
Federal Agency Support [007:084] | - |
Family Housing [007:085] | - |
Dependent Education [007:086] | - |
Other Personnel Support Activities [007:087] | - |
Personnel BOS & Mgmt., HQs [007:088] | - |
Departmental HQ [007:089] | - |
Departmental Services [007:090] | - |
Departmental BOS & Mgmt., HQs [007:091] | - |
(Primary Program Not Available) [007:000] | - |
Department of Health and Human Services [009] | |
Foods Program [009:001] | - |
Human Drugs [009:002] | - |
Biologics [009:003] | - |
Animal Drugs and Feeds [009:004] | - |
Devices and Radiological Health [009:005] | - |
National Center for Toxicological Research [009:006] | - |
Center for Tobacco Products [009:007] | - |
FDA Headquarters and Program Support [009:008] | - |
Indefinite User Fees [009:009] | - |
Buildings and Facilities [009:010] | - |
Vaccine Injury Compensation [009:011] | - |
Health Education Assistance Loans Program [009:012] | - |
Primary Health Care [009:013] | - |
Health Workforce [009:014] | - |
Maternal and Child Health [009:015] | - |
Ryan White HIV/AIDS Program [009:016] | - |
Health Care Systems [009:017] | - |
Rural Health [009:018] | - |
Family Planning [009:019] | - |
Program Management [009:020] | - |
Clinical Services [009:021] | - |
Preventive Health [009:022] | - |
Operations, Support, and Other Services [009:023] | - |
Indian Health Facilities [009:024] | - |
Special Diabetes Program for Indians [009:025] | - |
Immunization and Respiratory Diseases [009:026] | - |
HIV/AIDS, Viral Hepatitis, Sexually Transmitted Diseases (STD), and Tuberculosis (TB) Prevention [009:027] | - |
Emerging and Zoonotic Infectious Diseases [009:028] | - |
Chronic Disease and Prevention and Health Promotion [009:029] | - |
Birth Defects, Developmental Disabilities, Disabilities and Health [009:030] | - |
Public Health Scientific Services [009:031] | - |
Environmental Health [009:032] | - |
Injury Prevention and Control [009:033] | - |
National Institute for Occupational Safety and Health [009:034] | - |
Energy Employees Occupational Illness Compensation Program [009:035] | - |
Global Health [009:036] | - |
Public Health Preparedness and Response [009:037] | - |
CDC-Wide Activities and Program Support [009:038] | - |
Vaccines for Children [009:039] | - |
Toxic Substances and Environmental Public Health [009:040] | - |
National Library of Medicine [009:041] | - |
John E. Fogarty International Center [009:042] | - |
Buildings and Facilities at NIH [009:043] | - |
Aging Research [009:044] | - |
Child Health and Human Development Research [009:045] | - |
NIH Program Support and Crosscutting Research Projects [009:046] | - |
Cancer Research [009:047] | - |
General Medical Sciences Research [009:048] | - |
Environmental Health Sciences Research [009:049] | - |
Heart, Lung, and Blood Research [009:050] | - |
Dental and Craniofacial Research [009:051] | - |
Diabetes and Digestive and Kidney Disease Research [009:052] | - |
Allergy and Infectious Diseases Research [009:053] | - |
Neurological Disorders and Stroke Research [009:054] | - |
Eye Research [009:055] | - |
Arthritis and Musculoskeletal and Skin Diseases Research [009:056] | - |
Nursing Research [009:057] | - |
Deafness and Other Communication Disorders Research [009:058] | - |
Human Genome Research [009:059] | - |
Mental Health Research [009:060] | - |
Drug Abuse Research [009:061] | - |
Alcohol Abuse and Alcoholism Research [009:062] | - |
AIDS Policy and Budget [009:063] | - |
Complementary and Alternative Medicine Research [009:064] | - |
Minority Health and Health Disparities Research [009:065] | - |
Biomedical Imaging and Bioengineering Research [009:066] | - |
Advancing Translational Sciences Research [009:067] | - |
Mental Health [009:068] | - |
Substance Abuse Prevention [009:069] | - |
Substance Abuse Treatment [009:070] | - |
Health Surveillance and Program Support [009:071] | - |
Research on Health Costs, Quality and Outcomes [009:072] | - |
Medical Expenditure Panel Survey [009:073] | - |
AHRQ Program Support [009:074] | - |
Children’s Health Insurance Program [009:075] | - |
Medicaid [009:076] | - |
Health Care Fraud and Abuse Control [009:077] | - |
Medicare [009:078] | - |
Clinical Laboratory Improvement Amendments [009:079] | - |
Research, Demonstrations and Innovations [009:080] | - |
Private Market Insurance [009:081] | - |
Health Insurance Marketplaces [009:082] | - |
Consumer Operated and Oriented Plan Program [009:083] | - |
Payments to States for Child Support Enforcement and Family Support Programs [009:084] | - |
Low Income Home Energy Assistance [009:085] | - |
Refugee and Entrant Assistance [009:086] | - |
Promoting Safe and Stable Families [009:087] | - |
State Court Improvement Grants [009:088] | - |
Child Care Development Fund [009:089] | - |
Social Services Block Grant [009:090] | - |
Health Profession Opportunity Grants [009:091] | - |
Head Start [009:092] | - |
Runaway and Homeless Youth Programs [009:093] | - |
Child Abuse and Child Welfare [009:094] | - |
Native American Programs [009:095] | - |
Social Services Research and Demonstration [009:096] | - |
Federal Administration [009:097] | - |
Disaster Human Services Case Management [009:098] | - |
Community Services Programs [009:099] | - |
Family Violence Prevention and Services [009:100] | - |
Payments to States for Foster Care and Permanency [009:101] | - |
Temporary Assistance to Needy Families [009:102] | - |
Children’s Research and Technical Assistance [009:103] | - |
Aging Services [009:104] | - |
Intellectual and Developmental Disabilities [009:105] | - |
Minority HIV/AIDS [009:106] | - |
Teen Pregnancy Prevention [009:107] | - |
HHS Policy Development and Program Support [009:108] | - |
Office of Inspector General [009:109] | - |
Health Information Technology and Quality [009:110] | - |
Office of Medicare Hearings and Appeals [009:111] | - |
All Hazards Preparedness and Response [009:112] | - |
Medical Countermeasure Advanced Development [009:113] | - |
Retirement Pay and Medical Benefits for Commissioned Officers [009:114] | - |
Payment to DoD Medicare-Eligible Retiree Health Care Fund [009:115] | - |
(Primary Program Not Available) [009:000] | - |
Department of the Interior [010] | |
Tribal Government [010:001] | - |
Contract Support Costs [010:002] | - |
Human Services [010:003] | - |
Trust ‐ Natural Resources Management [010:004] | - |
Trust ‐ Real Estate Services [010:005] | - |
Public Safety and Justice [010:006] | - |
Community and Economic Development [010:007] | - |
Executive Direction and Administrative Services [010:008] | - |
Education Construction [010:009] | - |
Public Safety & Justice Construction [010:010] | - |
Resources Management Construction [010:011] | - |
General Administration (Construction) [010:012] | - |
Construction Management [010:013] | - |
Indian Land and Water Claim Settlements & Miscellaneous Payments to Indians [010:014] | - |
Indian Guaranteed Loan Program [010:015] | - |
Gifts and Donations [010:016] | - |
White Earth Settlement Fund [010:017] | - |
Miscellaneous Permanent Appropriations [010:018] | - |
Operation and Maintenance of Quarters [010:019] | - |
Elementary and Secondary Programs [010:020] | - |
Post Secondary Programs [010:021] | - |
Education Management [010:022] | - |
Indian Arts and Crafts Board [010:023] | - |
Land Resources (Management of: Soil, Water & Air; Riparian; Wild Horse & Burro; partial Rangeland) [010:024] | - |
Land Resources (Management of Cultural Resources) [010:025] | - |
Land Resources (Management of Rangeland) [010:026] | - |
Land Resources (Management of Public Domain Forestry) [010:027] | - |
Wildlife and Fisheries [010:028] | - |
Threatened and Endangered Species [010:029] | - |
Recreation Management (Wilderness) [010:030] | - |
Recreation Management (Recreation) [010:031] | - |
Energy and Minerals Management (Oil, Natural Gas and Coal; includes offsetting fees) [010:032] | - |
Energy and Minerals Management (Renewable Energy) [010:033] | - |
Energy and Minerals Management (Other Mineral Resources) [010:034] | - |
Realty and Ownership Management [010:035] | - |
Communication Site Management [010:036] | - |
Resource Protection and Maintenance (Land Use Planning, Abandoned Mine Lands, Hazardous Materials) [010:037] | - |
Resource Protection and Maintenance (Law Enforcement) [010:038] | - |
Transportation and Facilities Mgmt. [010:039] | - |
National Landscape Conservation System [010:040] | - |
Challenge Cost Share [010:041] | - |
Workforce and Organizational Support [010:042] | - |
Mining Law Administration [010:043] | - |
Land Acquisition [010:044] | - |
Land Acquisition (Mandatory) [010:045] | - |
Oregon & California Grant Lands (Western Oregon: Forest Management; Reforestation & Forest Development; and Other Forest Resources) [010:046] | - |
Oregon & California Grant Lands (Western Oregon Resource Management Planning) [010:047] | - |
Oregon & California Grant Lands (Western Oregon transportation and facilities maintenance) [010:048] | - |
Range Improvements (Includes Public Lands Improvements, Farm Tenant Act Lands Improvements, and Administrative Expenses) [010:049] | - |
Miscellaneous Trust Funds [010:050] | - |
Miscellaneous Permanent Payment Accounts [010:051] | - |
Permanent Operating Funds [010:052] | - |
Helium Fund [010:053] | - |
Renewable Energy [010:054] | - |
Conventional Energy [010:055] | - |
Environmental Assessment [010:056] | - |
General Support Services [010:057] | - |
Executive Direction [010:058] | - |
Water and Energy Management Development ‐ Other [010:059] | - |
Water and Energy Management Development ‐ WaterSMART Grants [010:060] | - |
Water and Energy Management Development ‐ Cooperative Watershed Management [010:061] | - |
Water and Energy Management Development ‐ Basin Studies [010:062] | - |
Water and Energy Management Development ‐ Title XVI Projects [010:063] | - |
Water and Energy Management Development ‐ Water Conservation Field Services [010:064] | - |
Water and Energy Management Development ‐ Rural Water Programs [010:065] | - |
Water and Energy Management Development ‐ Indian Water Rights Settlements [010:066] | - |
Water and Energy Management Development ‐ San Joaquin River Restoration Program [010:067] | - |
Land Management and Development [010:068] | - |
Fish and Wildlife Management and Development ‐ Other [010:069] | - |
Fish and Wildlife Management and Development ‐ Endangered Species Conservation/Recovery Program [010:070] | - |
Facility Operations [010:071] | - |
Facility Maintenance and Rehabilitation [010:072] | - |
Policy and Administration [010:073] | - |
California Bay‐Delta Restoration [010:074] | - |
Central Valley Project Restoration Fund [010:075] | - |
Lower Colorado River Basin Development Fund [010:076] | - |
Upper Colorado River Basin Fund [010:077] | - |
Miscellaneous Permanent Accounts ‐ Operation, Maintenance, and Replacement of Project Works, North Platte Project (included in W&RR in MAX because under $million) [010:078] | - |
Miscellaneous Permanent Accounts ‐ Payments to Farmers Irrigation District (included in W&RR in MAX because under $million) [010:079] | - |
Miscellaneous Permanent Accounts ‐ Klamath Payments to Local Units‐ Klamath Recreation Area (included in W&RR in MAX because under $million) [010:080] | - |
Miscellaneous Permanent Accounts ‐ O&M of Quarters (included in W&RR in MAX because under $million) [010:081] | - |
San Joaquin Restoration Fund [010:082] | - |
Reclamation Water Settlements Fund [010:083] | - |
Federal Lands Recreation Enhancement Act (included in W&RR in MAX because under $million) [010:084] | - |
Colorado Dam Fund, Boulder Canyon Project [010:085] | - |
Reclamation Trust Funds [010:086] | - |
Central Utah Project Completion Account ‐ proposed to be included under BOR in 2013 & 2014 [010:087] | - |
Utah Reclamation Mitigation and Conservation Account ‐ proposed to be included under BOR in 2013 & 2014 [010:088] | - |
Environmental Enforcement [010:089] | - |
Operations, Safety and Regulation [010:090] | - |
Administrative Operations, General Support Services, Executive Direction [010:091] | - |
Oil Spill Research [010:092] | - |
Ecological Services [010:093] | - |
National Wildlife Refuge System [010:094] | - |
Conservation, Enforcement and Science (new title & components 2014) [010:095] | - |
Fish and Aquatic Conservation (new title 2013) [010:096] | - |
Cooperative Landscape Conservation (new title & components 2014) [010:097] | - |
General Operations [010:098] | - |
Construction [010:099] | - |
Land Acquisition [010:100] | - |
Land Acquisition (Mandatory) [010:101] | - |
Cooperative Endangered Species Conservation Fund [010:102] | - |
Neotropical Migratory Bird Conservation Fund [010:103] | - |
State and Tribal Wildlife Grants Fund [010:104] | - |
Contributed Funds [010:105] | - |
Cooperative Endangered Species Conservation Fund [010:106] | - |
Federal Aid in Wildlife Restoration [010:107] | - |
Migratory Bird Conservation Account [010:108] | - |
Multinational Species Conservation Fund [010:109] | - |
Miscellaneous Permanent Appropriations [010:110] | - |
National Wildlife Refuge Fund [010:111] | - |
North American Wetlands Conservation Fund [010:112] | - |
Recreation Enhancement Fee Program [010:113] | - |
Federal Aid in Sport Fish Restoration Fund [010:114] | - |
Park Management [010:115] | - |
External Administrative Costs [010:116] | - |
Recreation Programs [010:117] | - |
Natural Programs [010:118] | - |
Cultural Programs [010:119] | - |
International Park Affairs [010:120] | - |
Environmental and Compliance Review [010:121] | - |
Grant Administration [010:122] | - |
Urban Park and Recreation Recovery [010:123] | - |
Heritage Partnership Programs [010:124] | - |
Grants‐in‐Aid to States and Territories [010:125] | - |
Grants‐in‐Aid to Tribes [010:126] | - |
Competitive Grants to Underrepresented Communities [010:127] | - |
Construction [010:128] | - |
Federal Land Acquisition [010:129] | - |
State Assistance [010:130] | - |
Outer Continental Shelf Oil Lease Revenue [010:131] | - |
Miscellaneous Trust Funds [010:132] | - |
Other Permanent Appropriations [010:133] | - |
Recreation Fee Permanent Appropriations [010:134] | - |
Federal Land Acquisition [010:135] | - |
State Assistance [010:136] | - |
Urban Park and Recreation Recovery [010:137] | - |
Territorial Assistance [010:138] | - |
Operations Grants [010:139] | - |
Covenant Grants [010:140] | - |
Federal Services [010:141] | - |
Enewetak Support [010:142] | - |
Palau Compact Support [010:143] | - |
Payments to the U.S. Territories, Fiscal Assistance [010:144] | - |
Compact of Free Association [010:145] | - |
Payments in Lieu of Taxes [010:146] | - |
Central Hazardous Materials Fund [010:147] | - |
Natural Resources Revenue [010:148] | - |
Natural Resource Damage Assessment and Restoration [010:149] | - |
OSMRE Regulatory Program for active mining (Title V of the Surface Mining Control and Reclamation Act) [010:150] | - |
OSMRE Reclamation Program for reclaiming abandoned coal mine sites prior to enactment of the Surface Mining Control and Reclamation Act (Title IV of SMCRA) [010:151] | - |
Payments to States in Lieu of Coal Fee Receipts [010:152] | - |
Supplemental Payments to UMWA Health Plans [010:153] | - |
Payments to the UMWA from AML Interest [010:154] | - |
Mandatory Grants to States and Tribes (AML) [010:155] | - |
Federal Trust Programs [010:156] | - |
Tribal Special Fund [010:157] | - |
Tribal Trust Fund [010:158] | - |
Preparedness [010:159] | - |
Suppression Operations [010:160] | - |
Hazardous Fuels Reduction [010:161] | - |
Burned Area Rehabilitation [010:162] | - |
Facilities Construction and Maintenance [010:163] | - |
Joint Fire Science Program [010:164] | - |
Suppression Operations [010:165] | - |
Ecosystems [010:166] | - |
Climate and Land Use Change [010:167] | - |
Energy, Minerals, and Environmental Health [010:168] | - |
Natural Hazards [010:169] | - |
Water Resources [010:170] | - |
Core Science Systems [010:171] | - |
Administration and Enterprise Information Science Support [010:172] | - |
Facilities [010:173] | - |
(Primary Program Not Available) [010:000] | - |
Department of Justice [011] | |
Department Leadership [011:001] | - |
Intergovernmental Relations [011:002] | - |
Executive Support and Professional Responsibilities [011:003] | - |
Justice Management Division [011:004] | - |
Justice Information Sharing Technology [011:005] | - |
Federal Prisoner Detention [011:006] | - |
OIG Audits, Inspections, Investigations, and Reviews [011:007] | - |
Executive Office for Immigration Review (EOIR) [011:008] | - |
Office of Pardon Attorney (OPA) [011:009] | - |
U.S. Parole Commission (USPC) [011:010] | - |
Foreign Claims [011:011] | - |
Office of the Solicitor General (OSG) – Federal Appellate Activity [011:012] | - |
TAX Division (TAX) - General Tax Matters [011:013] | - |
Criminal Division (CRM) - Enforcing Federal Criminal Laws [011:014] | - |
Civil Division (CIV) - Legal Representation [011:015] | - |
Environment and Natural Resources Division (ENRD) - Civil Litigation [011:016] | - |
Environment and Natural Resources Division (ENRD) - Criminal Litigation [011:017] | - |
Office of Legal Counsel (OLC) - Legal Counsel [011:018] | - |
Civil Rights Division (CRT) - Civil Rights Enforcements [011:019] | - |
INTERPOL Washington [011:020] | - |
Fees and Expenses of Witnesses (FEW) [011:021] | - |
Antitrust Division (ATR) [011:022] | - |
Criminal Litigation [011:023] | - |
Civil Litigation [011:024] | - |
Legal Education [011:025] | - |
Judicial and Courthouse Security [011:026] | - |
Fugitive Apprehension [011:027] | - |
Prisoner Security and Transportation [011:028] | - |
Protection of Witnesses [011:029] | - |
Tactical Operations [011:030] | - |
U.S. Marshals Service - Construction [011:031] | - |
September 11th Victims Compensation Fund [011:032] | - |
Conflict Resolution and Violence Prevention Program Operations [011:033] | - |
Investigative Expenses (Definite Authority) [011:034] | - |
Permanent (Indefinite Authority) [011:035] | - |
Administration of Cases [011:036] | - |
National Security [011:037] | - |
Investigations [011:038] | - |
Prosecutions [011:039] | - |
Intelligence [011:040] | - |
Counterterrorism/Counterintelligence [011:041] | - |
Criminal Enterprise/Federal Crimes [011:042] | - |
Criminal Justice Services (CJS) [011:043] | - |
Federal Bureau of Investigation (Construction) [011:044] | - |
International Enforcement [011:045] | - |
Domestic Enforcement [011:046] | - |
State and Local Assistance [011:047] | - |
Drug Enforcement Administration, Construction [011:048] | - |
Diversion Control Program [011:049] | - |
Law Enforcement Operations (new for FY14) [011:050] | - |
Investigative Support Services (new for FY14) [011:051] | - |
Bureau of Prison, Construction [011:052] | - |
Modernization and Repair (M&R) [011:053] | - |
Inmate Care & Programs [011:054] | - |
Institution Security and Administration [011:055] | - |
Contract Confinement [011:056] | - |
Management and Administration - BOP [011:057] | - |
Federal Prison Industries (FPI) [011:058] | - |
Commissary Fund [011:059] | - |
National Institute of Justice (NIJ) [011:060] | - |
Criminal Justice Statistical Program (Bureau of Justice Statistics) (BJS) [011:061] | - |
Regional Information Sharing System (RISS) [011:062] | - |
Evaluation Clearinghouse [011:063] | - |
Justice Assistance Grants (JAG) [011:064] | - |
Presidential Nominating Conventions [011:065] | - |
Byrne Competitive Grants [011:066] | - |
State Criminal Alien Assistance Program (SCAAP) [011:067] | - |
Border Prosecution Initiatives [011:068] | - |
Victims of Trafficking [011:069] | - |
Residential Substance Abuse Treatment (RSAT) (Improving Reentry) [011:070] | - |
Drug Court Program [011:071] | - |
Mentally Ill Offender Act [011:072] | - |
Prescription Drug Monitoring Program [011:073] | - |
Prison Rape Prevention and Prosecution Program [011:074] | - |
Missing Alzheimer's Program [011:075] | - |
Capital Litigation Improvement Grant Program [011:076] | - |
Indian Assistance [011:077] | - |
Court-Appointed Special Advocate [011:078] | - |
National Instant Criminal Background Check System Record Improvement Program (NICS) [011:079] | - |
National Criminal History Improvement Program (NCHIP) [011:080] | - |
S&L Gun Crime Prosecution Assist/Gun Violence Reduction [011:081] | - |
Second Chance/Prisoner Reentry [011:082] | - |
DNA Initiative [011:083] | - |
Children Exposed to Violence [011:084] | - |
John R. Justice Student Loan Repayment Program [011:085] | - |
Coverdell Forensic Science Grants [011:086] | - |
National Sex Offender Public Website [011:087] | - |
Adam Walsh Act Implementation [011:088] | - |
Byrne Criminal Justice Innovation Program [011:089] | - |
Consolidated Cybercrime and Economic Crime/Intellectual Property Enforcement Program [011:090] | - |
Part B: Formula Grants [011:091] | - |
Youth Mentoring [011:092] | - |
Title V: Local Delinquency Prevention Incentive Grants [011:093] | - |
National Forum on Youth Violence Prevention [011:094] | - |
Community-Based Violence Prevention Initiatives [011:095] | - |
Child Abuse Training for Judicial Personnel [011:096] | - |
Victim of Crimes Act of 1984 (VOCA) - Improving the Investigation & Prosecution Of Child Abuse [011:097] | - |
Juvenile Accountability Block Grant Program (JABG) [011:098] | - |
Missing and Exploited Children's Program (MECP) [011:099] | - |
Administrative Expenses [011:100] | - |
Tribal Law Enforcement [011:101] | - |
Methamphetamine Enforcement and Cleanup [011:102] | - |
COPS Hiring Program [011:103] | - |
Grants to Combat Violence Against Women (STOP) [011:104] | - |
Research and Evaluation Violence Against Women (NIJ) [011:105] | - |
Transitional Housing [011:106] | - |
Consolidated Youth Oriented Program [011:107] | - |
Grants to Encourage Arrest Policies [011:108] | - |
Rural Domestic Violence & Child Abuse Enforcement Assistance [011:109] | - |
Legal Assistance Program [011:110] | - |
Enhancing Safety for Victims and their Children in Family Law Matters [011:111] | - |
Campus Violence [011:112] | - |
Disabilities Program [011:113] | - |
Elder Program [011:114] | - |
Sexual Assault Services (SASP) [011:115] | - |
Indian Country - Sexual Assault Clearinghouse [011:116] | - |
National Resource Center on Workplace Responses [011:117] | - |
Research on Violence Against Indian Women [011:118] | - |
Crime Victims Fund [011:119] | - |
(Primary Program Not Available) [011:000] | - |
Department of Labor [012] | |
Workforce Investment Act (WIA) Adult (ETA) [012:001] | - |
WIA Dislocated Worker (ETA) [012:002] | - |
WIA Youth (ETA) [012:003] | - |
Workforce Innovation Fund (ETA) [012:004] | - |
Indian and Native American Program (ETA) [012:005] | - |
Migrant and Seasonal Farmworker (ETA) [012:006] | - |
YouthBuild (ETA) [012:007] | - |
Reintegration of Ex-Offenders (ETA) [012:008] | - |
Job Corps (ETA) [012:009] | - |
Community Service Employment for Older Americans (ETA) [012:010] | - |
Trade Adjustment Assistance (ETA) [012:011] | - |
TAA Community College & Career Training Grants (ETA) [012:012] | - |
Federal-State Unemployment Insurance System (ETA) [012:013] | - |
Employment Service (ETA) [012:014] | - |
Foreign Labor Certification (ETA) [012:015] | - |
Workforce Information (ETA) [012:016] | - |
Apprenticeship (ETA) [012:017] | - |
ETA management and other [012:018] | - |
Employee Benefits Security Administration [012:019] | - |
Pension Benefit Guaranty Corporation [012:020] | - |
Federal Employees’ Compensation Act (OWCP) [012:021] | - |
Longshore and Harbor Workers Compensation (OWCP) [012:022] | - |
Energy Employees Occupational Illness Compensation (OWCP) [012:023] | - |
Coal Mine Workers’ Compensation (OWCP) [012:024] | - |
OWCP management and other [012:025] | - |
Office of Labor Management Standards [012:026] | - |
Wage & Hour Division [012:027] | - |
Office of Federal Contractor Compliance Programs [012:028] | - |
Occupational Safety and Health Administration [012:029] | - |
Mine Safety and Health Administration [012:030] | - |
Labor Force Statistics (BLS) [012:031] | - |
Prices and Cost of Living (BLS) [012:032] | - |
Compensation and Working Conditions (BLS) [012:033] | - |
Productivity and Technology (BLS) [012:034] | - |
Executive Direction and Staff Services (BLS) [012:035] | - |
Solicitor’s Office [012:036] | - |
International Labor Affairs Bureau [012:037] | - |
Women’s Bureau [012:038] | - |
Office of Disability Employment Policy [012:039] | - |
Jobs for Veterans State Grants (VETS) [012:040] | - |
Transition Assistance Program Employment Workshop (VETS) [012:041] | - |
Homeless Veterans' Reintegration Program (VETS) [012:042] | - |
Federal Administration & USERRA Enforcement (VETS) [012:043] | - |
DOL management and other [012:044] | - |
Office of Inspector General [012:045] | - |
(Primary Program Not Available) [012:000] | - |
Department of State [014] | |
Human Resources [014:001] | - |
Overseas Programs [014:002] | - |
Diplomatic Policy & Support [014:003] | - |
Security Programs [014:004] | - |
Capital Investment Fund [014:005] | - |
Embassy Security, Construction and Maintenance [014:006] | - |
Conflict Stabilization Operations [014:007] | - |
Office of the Inspector General [014:008] | - |
Education and Cultural Exchanges Programs [014:009] | - |
Representation Allowances [014:010] | - |
Protection of Foreign Missions and Officials [014:011] | - |
Emergencies in the Diplomatic and Consular Service [014:012] | - |
Repatriation Loans Program Account [014:013] | - |
Payment to the American Institute in Taiwan [014:014] | - |
International Chancery Center [014:015] | - |
Contributions to International Organizations [014:016] | - |
Contributions to International Peacekeeping Activities [014:017] | - |
International Boundary and Water Commission – Salaries and Expenses [014:018] | - |
International Boundary and Water Commission – Construction [014:019] | - |
American Sections [014:020] | - |
International Fisheries Commission [014:021] | - |
Related Programs [014:022] | - |
(Primary Program Not Available) [014:000] | - |
Department of the Treasury [015] | |
Executive Direction [015:001] | Departmental Offices |
International Affairs and Economic Policy [015:002] | Departmental Offices |
Domestic Finance and Tax Policy [015:003] | Departmental Offices |
Terrorism and Financial Intelligence (TFI) [015:004] | Departmental Offices |
Treasury-wide Management and Programs [015:005] | Departmental Offices |
Treasury Forfeiture Fund [015:006] | Departmental Offices |
Terrorism Risk Insurance Program [015:007] | Departmental Offices |
Grants for Specified Energy Property [015:008] | Departmental Offices |
Exchange Stabilization Fund (ESF) [015:009] | Departmental Offices |
Department-wide Systems and Capital Investments Program [015:010] | - |
Audit [015:011] | Office of the Inspector General |
Investigations [015:012] | Office of the Inspector General |
Audit [015:013] | Special Inspector General for TARP |
Investigations [015:014] | Special Inspector General for TARP |
Audit [015:015] | Treasury Inspector General for Tax Administration |
Investigations [015:016] | Treasury Inspector General for Tax Administration |
Community Development Financial Institutions (CDFI) Program [015:017] | Community Development Financial Institutions Fund |
Bank Enterprise Award (BEA) Program [015:018] | Community Development Financial Institutions Fund |
Native American CDFI Assistance (NACA) Program [015:019] | Community Development Financial Institutions Fund |
Healthy Food Financing Initiative (HFFI) [015:020] | Community Development Financial Institutions Fund |
Financial Education and Counseling Pilot Program [015:021] | Community Development Financial Institutions Fund |
Financial Education and Counseling Pilot Program (Hawaii) [015:022] | Community Development Financial Institutions Fund |
Capital Magnet Fund [015:023] | Community Development Financial Institutions Fund |
Bond Guarantee Program [015:024] | Community Development Financial Institutions Fund |
Bank Secrecy Act (BSA) Administration and Analysis [015:025] | Financial Crimes Enforcement Network |
Collecting the Revenue [015:026] | Alcohol and Tobacco Tax and Trade Bureau |
Protect the Public [015:027] | Alcohol and Tobacco Tax and Trade Bureau |
Collections [015:028] | Bureau of the Fiscal Service |
Do Not Pay (DNP) Business Center [015:029] | Bureau of the Fiscal Service |
Government Agency Investment Services (GAIS) [015:030] | Bureau of the Fiscal Service |
Government-wide Accounting and Reporting (GWA) [015:031] | Bureau of the Fiscal Service |
Payments [015:032] | Bureau of the Fiscal Service |
Retail Securities Services (RSS) [015:033] | Bureau of the Fiscal Service |
Summary Debt Accounting (SDA) [015:034] | Bureau of the Fiscal Service |
Wholesale Securities Services (WSS) [015:035] | Bureau of the Fiscal Service |
Pre-Filing Taxpayer Assistance and Education [015:036] | Internal Revenue Service |
Filing and Account Services [015:037] | Internal Revenue Service |
Investigations [015:038] | Internal Revenue Service |
Exams and Collections [015:039] | Internal Revenue Service |
Regulatory [015:040] | Internal Revenue Service |
Shared Services and Support [015:041] | Internal Revenue Service |
Information Services [015:042] | Internal Revenue Service |
Business Systems and Modernization [015:043] | Internal Revenue Service |
Capital Purchase Program (CPP) [015:044] | Troubled Asset Relief Program |
Targeted Investment Program (TIP) [015:045] | Troubled Asset Relief Program |
Asset Guarantee Program (AGP) [015:046] | Troubled Asset Relief Program |
Community Development Capital Initiative [015:047] | Troubled Asset Relief Program |
Public-Private Investment Program (PPIP) [015:048] | Troubled Asset Relief Program |
Term Asset-Backed Securities Loan Facility (TALF) [015:049] | Troubled Asset Relief Program |
Small Business Administration (SBA) 7(a) Securities Purchase Program [015:050] | Troubled Asset Relief Program |
American International Group [015:051] | Troubled Asset Relief Program |
Automotive Industry Financing Program (AIFP) [015:052] | Troubled Asset Relief Program |
Making Home Affordable Program (MHA) [015:053] | Housing Program under TARP |
Housing Finance Agency (HFA) Hardest-Hit Fund [015:054] | Housing Program under TARP |
Federal Housing Administration (FHA)-Refinance Program [015:055] | Housing Program under TARP |
Preferred Stock Purchase Agreements (PSPA) [015:056] | Housing & Government Sponsored Enterprise Programs |
GSE Mortgage-Backed Securities (MBS) Purchase Program [015:057] | Housing & Government Sponsored Enterprise Programs |
Housing Finance Agencies Initiative [015:058] | Housing & Government Sponsored Enterprise Programs |
Small Business Lending Fund [015:059] | - |
State Small Business Credit Initiative Program [015:060] | - |
Financial Stability Oversight Council [015:061] | Financial Research Fund |
Federal Deposit Insurance Corporation Payments [015:062] | Financial Research Fund |
Office of Financial Research [015:063] | Financial Research Fund |
Manufacturing [015:064] | Bureau of Engraving and Printing |
Manufacturing [015:065] | United States Mint |
Supervise [015:066] | Office of the Comptroller of Currency |
Regulate [015:067] | Office of the Comptroller of Currency |
Charter [015:068] | Office of the Comptroller of Currency |
Federal Financing Bank (FFB) [015:069] | - |
Contribution to the International Development Association (IDA) [015:070] | Treasury International Programs |
Contribution to the International Bank for Reconstruction and Development (IBRD) [015:071] | Treasury International Programs |
Contribution to the International Finance Corporation [015:072] | Treasury International Programs |
Contribution to the Inter-American Development Bank (IDB and FSO) [015:073] | Treasury International Programs |
Contribution to the Multilateral Investment Fund (MIF) [015:074] | Treasury International Programs |
Contribution to the Inter-American Investment Corporation (IIC) [015:075] | Treasury International Programs |
Contribution to the Asian Development Bank (AsDB) [015:076] | Treasury International Programs |
Contribution to the Asian Development Fund (AsDF) [015:077] | Treasury International Programs |
Contribution to the African Development Bank (AfDB) [015:078] | Treasury International Programs |
Contribution to the African Development Fund (AfDF) [015:079] | Treasury International Programs |
Contribution to the European Bank for Reconstruction and Development [015:080] | Treasury International Programs |
Contribution to the North American Development Bank [015:081] | Treasury International Programs |
Contribution to the Global Agriculture and Food Security Program (GAFSP) [015:082] | Treasury International Programs |
Contribution to the International Fund for Agricultural Development (IFAD) [015:083] | Treasury International Programs |
Contribution to the Clean Technology Fund (CTF) [015:084] | Treasury International Programs |
Contribution to the Strategic Climate Funds (SCF) [015:085] | Treasury International Programs |
Contribution to the Global Environment Facility (GEF) [015:086] | Treasury International Programs |
Bilateral Debt Reduction/Contribution to the HIPC Trust Fund [015:087] | Treasury International Programs |
Contribution to the Multilateral Debt Relief Initiative for IDA [015:088] | Treasury International Programs |
Contribution to the Multilateral Debt Relief Initiative for the AfDF [015:089] | Treasury International Programs |
Tropical Forest Conservation Act (TFCA) [015:090] | Treasury International Programs |
Office of Technical Assistance (OTA) [015:091] | Treasury International Programs |
United States Quota, International Monetary Fund (IMF) [015:092] | Treasury International Programs |
Loans to the International Monetary Fund (IMF) [015:093] | Treasury International Programs |
Contribution to the Multilateral Investment Guarantee Agency [015:094] | Treasury International Programs |
(Primary Program Not Available) [015:000] | - |
Social Security Administration [016] | |
Old Age and Survivors Insurance [016:001] | - |
Disability Insurance [016:002] | - |
Supplemental Security Income [016:003] | - |
Medicare – Administrative Support [016:004] | - |
(Primary Program Not Available) [016:000] | - |
Department of Education [018] | |
Grants to Local Educational Agencies (Title I) (CFDA # 84.010) [018:001] | - |
School Improvement State Grants (CFDA # 84.377) [018:002] | - |
Striving Readers (CFDA # 84.371) [018:003] | - |
Migrant (CFDA # 84.011) [018:004] | - |
Neglected and Delinquent (CFDA # 84.013) [018:005] | - |
Evaluation [018:006] | - |
Special Programs for Migrant Students (CFDA # 84.141, 84.149) [018:007] | - |
High School Graduation Initiative (CFDA # 84.360) [018:008] | - |
Payments for Federally Connected Children [018:009] | - |
Facilities Maintenance [018:010] | - |
Construction [018:011] | - |
Payments for Federal Property [018:012] | - |
Improving Teacher Quality State Grants (CFDA # 84.367) [018:013] | - |
Mathematics and Science Partnerships (CFDA # 84.366) [018:014] | - |
21st Century Community Learning Centers (CFDA # 84.287) [018:015] | - |
State Assessments (CFDA # 84.369) [018:016] | - |
Education of Homeless Children & Youth (CFDA # 84.196) [018:017] | - |
Education for Native Hawaiians (CFDA # 84.362) [018:018] | - |
Alaska Native Education Equity (CFDA # 84.356) [018:019] | - |
Training and Advisory Services [018:020] | - |
Rural Education (CFDA # 84.358) [018:021] | - |
Supplemental Education Grants (CFDA # 84.841) [018:022] | - |
Comprehensive Centers (CFDA # 84.283) [018:023] | - |
Grants to Local Educational Agencies (CFDA # 84.060) [018:024] | - |
Special Programs for Indian Children (CFDA # 84.299) [018:025] | - |
National Activities (CFDA # 84.850) [018:026] | - |
Safe & Drug-free Schools and Communities National Programs (CFDA # 84.184) [018:027] | - |
Elementary and Secondary School Counseling (CFDA # 84.215) [018:028] | - |
Physical Education Program (CFDA # 84.215) [018:029] | - |
Promise Neighborhoods (CFDA # 84.215) [018:030] | - |
Race to The Top Fund (CFDA # 84.395, 84.412, 84.416) [018:031] | - |
Investing in Innovation Fund (CFDA # 84.396) [018:032] | - |
Teacher Incentive Fund Grants (CFDA # 84.374) [018:033] | - |
Transition to Teaching (CFDA # 84.350) [018:034] | - |
School Leadership (CFDA # 84.363) [018:035] | - |
Charter Schools Grants (CFDA # 84.282) [018:036] | - |
Credit Enhancement for Charter School Facilities (CFDA # 84.354) [018:037] | - |
Magnet Schools Assistance (CFDA # 84.165) [018:038] | - |
Advanced Placement (CFDA # 84.330) [018:039] | - |
Ready-to-Learn Television (CFDA # 84.295) [018:040] | - |
FIE Programs of National Significance (CFDA # 84.215) [018:041] | - |
Arts in Education (CFDA # 84.351) [018:042] | - |
English Learner Education (CFDA # 84.365) [018:043] | - |
Grants to States (CFDA # 84.027) [018:044] | - |
Preschool Grants (CFDA # 84.173) [018:045] | - |
Grants for Infants and Families (CFDA # 84.181) [018:046] | - |
State Personnel Development (CFDA # 84.323) [018:047] | - |
Technical Assistance and Dissemination (CFDA # 84.326) [018:048] | - |
Personnel Preparation (CFDA # 84.323) [018:049] | - |
Parent Information Centers (CFDA # 84.328) [018:050] | - |
Educational, Technology, Media, and Materials (CFDA # 84.327) [018:051] | - |
Special Olympics Education Programs (CFDA # 84.380) [018:052] | - |
PROMISE: Promoting Readiness of Minors in SSI (CFDA # 84.418P) [018:053] | - |
Vocational Rehabilitation State Grants [018:054] | - |
Client Assistance State Grants (CFDA # 84.161) [018:055] | - |
Training (CFDA # 84.133) [018:056] | - |
Demonstration and Training Programs (CFDA # 84.235) [018:057] | - |
Migrant and Seasonal Farmworkers (CFDA # 84.128) [018:058] | - |
Protection & Advocacy of Individual Rights (CFDA # 84.240) [018:059] | - |
Supported Employment State Grants (CFDA # 84.187) [018:060] | - |
Independent Living [018:061] | - |
Helen Keller National Center for Deaf-Blind Youths and Adults (CFDA # 84.904) [018:062] | - |
National Institute on Disability and Rehabilitation Research (CFDA # 84.133) [018:063] | - |
Assistive Technology Programs (CFDA # 84.224) [018:064] | - |
American Printing House for the Blind (CFDA # 84.906) [018:065] | - |
National Technical Institute for the Deaf (CFDA # 84.908) [018:066] | - |
Gallaudet University (CFDA # 84.910) [018:067] | - |
Career and Technical Education State Grants (CFDA # 84.048) [018:068] | - |
National Programs (CFDA # 84.051) [018:069] | - |
Adult Basic and Literacy Education State Grants (CFDA # 84.002) [018:070] | - |
National Leadership Activities (CFDA # 84.051) [018:071] | - |
Federal Pell Grants (CFDA # 84.063) [018:072] | - |
Federal Supplemental Educational Opportunity Grants (SEOG) (CFDA # 84.007) [018:073] | - |
Federal Work-Study (CFDA # 84.033) [018:074] | - |
Iraq and Afghanistan Service Grants (CFDA # 84.408) [018:075] | - |
New Loan Subsidies [018:076] | - |
TEACH Grants [018:077] | - |
Federal Direct Student Loans [018:078] | - |
Federal Family Education Loans [018:079] | - |
Strengthening Institutions (CFDA # 84.031) [018:080] | - |
Strengthening Tribally Controlled Colleges and Universities (CFDA # 84.031) [018:081] | - |
Strengthening Alaska Native and Native Hawaii-serving Institutions (CFDA # 84.031) [018:082] | - |
Strengthening HBCUs (CFDA # 84.031) [018:083] | - |
Strengthening Historically Black Graduate Institutions (CFDA # 84.031) [018:084] | - |
Master’s Degree Programs at HBCUs and Predominantly Black Institutions (CFDA # 84.382) [018:085] | - |
Strengthening Predominantly Black Institutions (CFDA # 84.031P; 84.382A) [018:086] | - |
Strengthening Asian American and Native American Pacific Islander-Serving Institutions (CFDA # 84.031L; 84.382B) [018:087] | - |
Strengthening Native American-serving Nontribal Institutions (CFDA # 84.031; 84.382) [018:088] | - |
Minority Science and Engineering Improvement (CFDA # 84.120) [018:089] | - |
Developing Hispanic-Serving Institutions (CFDA # 84.031) [018:090] | - |
Mandatory Developing HIS STEM and Articulation Program (CFDA # 84.031) [018:091] | - |
Prompting Postbaccalaureate Opportunities for Hispanic American (CFDA # 84.031) [018:092] | - |
International Education and Foreign Language Studies (CFDA # 84.015, 84.016, 84.017, 84.018, 84.019, 84.021, 84.022, 84.153, 84.220, 84.229, 84.274, 84.337) [018:093] | - |
Fund for the improvement of Postsecondary Education (CFDA # 84.116) [018:094] | - |
Model Transition Programs for Student With Intellectual Disabilities Into Higher Education (CFDA # 84.407) [018:095] | - |
Tribally Controlled Postsecondary Career and Technical Institutions (CFDA # 84.245) [018:096] | - |
Federal TRIO Program (CFDA # 84.042, 84.044, 84.047, 84.066, 84.217) [018:097] | - |
Gaining Early Awareness and Readiness for Undergraduate Programs (CFDA # 84.334) [018:098] | - |
Graduate Assistance in Areas of National Need (CFDA # 84.200) [018:099] | - |
Child Care Access Means Parents in School (CFDA # 84.335) [018:100] | - |
Teacher Quality Partnership (CFDA # 84.336) [018:101] | - |
GPRA Data/HEA Program Evaluation (CFDA # 84.895) [018:102] | - |
College Access Challenge Grant Program (CFDA # 84.378A) [018:103] | - |
Howard University (CFDA # 84.915) [018:104] | - |
College Housing and Academic Facilities Loans Program [018:105] | - |
Historically Black College and University Capital Financing Program (CFDA # 84.951) [018:106] | - |
Research and Statistics [018:107] | - |
Regional Educational Laboratories [018:108] | - |
Assessment (CFDA # 84.902) [018:109] | - |
Research in Special Education (CFDA # 84.324) [018:110] | - |
Statewide Data Systems (CFDA # 84.372) [018:111] | - |
Special Education Studies and Evaluations (CFDA # 84.329) [018:112] | - |
Program Administration [018:113] | - |
Student Aid Administration [018:114] | - |
Office of Civil Rights [018:115] | - |
Office of Inspector General [018:116] | - |
(Primary Program Not Available) [018:000] | - |
Department of Energy [019] | |
Advanced Manufacturing Office (formerly Industrial Technologies) [019:001] | - |
Building Technologies [019:002] | - |
Vehicle Technologies [019:003] | - |
Weatherization and Intergovernmental Programs [019:004] | - |
Bioenergy Technologies (formerly Biomass and Biorefinery R&D) [019:005] | - |
Geothermal Technology [019:006] | - |
Hydrogen and Fuel Cell Technologies [019:007] | - |
Solar Energy [019:008] | - |
Water Power [019:009] | - |
Wind Energy [019:010] | - |
Federal Energy Management Program [019:011] | - |
Petroleum Reserves [019:012] | - |
Fossil Energy R&D [019:013] | - |
Nuclear Energy (NE) [019:014] | - |
Electricity Delivery and Energy Reliability (OE) [019:015] | - |
Bonneville Power Administration (BPA) [019:016] | - |
Southeastern Power Administration (SEPA) [019:017] | - |
Southwestern Power Administration (SWPA) [019:018] | - |
Western Area Power Administration (WAPA) [019:019] | - |
Loan Programs (LP) [019:020] | - |
Advanced Research Projects Agency-Energy (ARPA-E) [019:021] | - |
Energy Information Administration (EIA) [019:022] | - |
Advanced Scientific Computing Research [019:023] | - |
Basic Energy Sciences [019:024] | - |
Biological and Environmental Research [019:025] | - |
Fusion Energy Sciences [019:026] | - |
High Energy Physics [019:027] | - |
Nuclear Physics [019:028] | - |
Workforce Development for Teachers and Scientists [019:029] | - |
Directed Stockpile Work [019:030] | - |
Science Campaign [019:031] | - |
Engineering Campaign [019:032] | - |
Inertial Confinement Fusion Ignition and High Yield Campaign [019:033] | - |
Advanced Simulation and Computing Campaign [019:034] | - |
Readiness Campaign [019:035] | - |
Nuclear Programs [019:036] | - |
Secure Transportation Asset [019:037] | - |
Facilities and Infrastructure Recapitalization Program [019:038] | - |
Site Stewardship [019:039] | - |
Defense Nuclear Security [019:040] | - |
NNSA CIO Activities [019:041] | - |
Global Threat Reduction Initiative [019:042] | - |
International Material Protection and Cooperation [019:043] | - |
Fissile Materials Disposition [019:044] | - |
Nonproliferation and International Security [019:045] | - |
Defense Nuclear Nonproliferation Research and Development [019:046] | - |
Nuclear Counterterrorism Incident Response Program [019:047] | - |
Counterterrorism and Counterproliferation [019:048] | - |
Naval Reactors [019:049] | - |
NNSA Office of the Administrator [019:050] | - |
Environmental Management (EM) [019:051] | - |
Legacy Management (LM) [019:052] | - |
Departmental Administration: Support Offices/Corporate Management [019:053] | - |
(Primary Program Not Available) [019:000] | - |
Environmental Protection Agency [020] | |
Acquisition Management (Environmental Programs & Management, Superfund, Leaking Underground Storage Tanks) [020:001] | - |
Administrative Law (Environmental Programs & Management) [020:002] | - |
Alternative Dispute Resolution (Environmental Programs & Management, Superfund) [020:003] | - |
Audits, Evaluations, and Investigations (Inspector General, Superfund) [020:004] | - |
Beach / Fish Programs (Environmental Programs & Management) [020:005] | - |
Brownfields (Environmental Programs & Management) [020:006] | - |
Brownfields Projects (State & Tribal Assistance Grants) [020:007] | - |
Categorical Grant: Beaches Protection (State & Tribal Assistance Grants) [020:008] | - |
Categorical Grant: Brownfields (State & Tribal Assistance Grants) [020:009] | - |
Categorical Grant: Environmental Information (State & Tribal Assistance Grants) [020:010] | - |
Categorical Grant: Evaluation Grants [020:011] | - |
Categorical Grant: Hazardous Waste Financial Assistance (State & Tribal Assistance Grants) [020:012] | - |
Categorical Grant: Lead (State & Tribal Assistance Grants) [020:013] | - |
Categorical Grant: Nonpoint Source (Sec. 319) (State & Tribal Assistance Grants) [020:014] | - |
Categorical Grant: Pesticides Enforcement (State & Tribal Assistance Grants) [020:015] | - |
Categorical Grant: Pesticides Program Implementation (State & Tribal Assistance Grants) [020:016] | - |
Categorical Grant: Pollution Control (Sec. 106) (State & Tribal Assistance Grants) [020:017] | - |
Categorical Grant: Pollution Prevention (State & Tribal Assistance Grants) [020:018] | - |
Categorical Grant: Public Water System Supervision (PWSS) (State & Tribal Assistance Grants) [020:019] | - |
Categorical Grant: Radon (State & Tribal Assistance Grants) [020:020] | - |
Categorical Grant: State and Local Air Quality Management (State & Tribal Assistance Grants) [020:021] | - |
Categorical Grant: Toxics Substances Compliance (State & Tribal Assistance Grants) [020:022] | - |
Categorical Grant: Tribal Air Quality Management (State & Tribal Assistance Grants) [020:023] | - |
Categorical Grant: Tribal General Assistance Program (State & Tribal Assistance Grants) [020:024] | - |
Categorical Grant: Underground Injection Control (UIC) (State & Tribal Assistance Grants) [020:025] | - |
Categorical Grant: Underground Storage Tanks (State & Tribal Assistance Grants) [020:026] | - |
Categorical Grant: Wetlands Program Development (State & Tribal Assistance Grants) [020:027] | - |
Central Planning, Budgeting, and Finance (Environmental Programs & Management, Superfund, Leaking Underground Storage Tanks) [020:028] | - |
Children and Other Sensitive Populations: Agency Coordination (Environmental Programs & Management) [020:029] | - |
Civil Enforcement (Environmental Programs & Management, Leaking Underground Storage Tanks, Oil Spill Response) [020:030] | - |
Civil Rights / Title VI Compliance (Environmental Programs & Management) [020:031] | - |
Clean Air Allowance Trading Programs (Science & Technology, Environmental Programs & Management) [020:032] | - |
Climate Protection Program (Science & Technology, Environmental Programs & Management) [020:033] | - |
Compliance Monitoring (Environmental Programs & Management, Superfund, Oil Spill Response) [020:034] | - |
Congressional, Intergovernmental, External Relations (Environmental Programs & Management) [020:035] | - |
Criminal Enforcement (Environmental Programs & Management, Superfund) [020:036] | - |
Diesel Emissions Reduction Grant Program (State & Tribal Assistance Grants) [020:037] | - |
Drinking Water Programs (Science & Technology, Environmental Programs & Management) [020:038] | - |
Endocrine Disruptors (Environmental Programs & Management) [020:039] | - |
Environmental Education (Environmental Programs & Management) [020:040] | - |
Environmental Justice (Environmental Programs & Management, Superfund) [020:041] | - |
Exchange Network (Environmental Programs & Management, Superfund) [020:042] | - |
Facilities Infrastructure and Operations (Science & Technology, Environmental Programs & Management, Buildings & Facilities, Superfund, Leaking Underground Storage Tanks, Oil Spill Response) [020:043] | - |
Federal Stationary Source Regulations (Environmental Programs & Management) [020:044] | - |
Federal Support for Air Quality Management (Science & Technology, Environmental Programs & Management) [020:045] | - |
Federal Vehicle and Fuels Standards and Certification (Science & Technology [020:046] | - |
Financial Assistance Grants / IAG Management (Environmental Programs & Management, Superfund) [020:047] | - |
Forensics Support (Science & Technology, Superfund) [020:048] | - |
Geographic Program: Chesapeake Bay (Environmental Programs & Management) [020:049] | - |
Geographic Program: Gulf of Mexico (Environmental Programs & Management) [020:050] | - |
Geographic Program: Lake Champlain (Environmental Programs & Management) [020:051] | - |
Geographic Program: Long Island Sound (Environmental Programs & Management) [020:052] | - |
Geographic Program: Other (Environmental Programs & Management) [020:053] | - |
Geographic Program: Puget Sound (Environmental Programs & Management) [020:054] | - |
Geographic Program: San Francisco Bay (Environmental Programs & Management) [020:055] | - |
Geographic Program: South Florida (Environmental Programs & Management) [020:056] | - |
Great Lakes Restoration (Environmental Programs & Management) [020:057] | - |
Homeland Security: Communication and Information (Environmental Programs & Management) [020:058] | - |
Homeland Security: Critical Infrastructure Protection (Science & Technology, Environmental Programs & Management) [020:059] | - |
Homeland Security: Preparedness, Response, and Recovery (Science & Technology, Environmental Programs & Management, Superfund) [020:060] | - |
Homeland Security: Protection of EPA Personnel and Infrastructure (Science & Technology, Environmental Programs & Management, Buildings & Facilities, Superfund) [020:061] | - |
Human Health Risk Assessment (Science & Technology, Superfund) [020:062] | - |
Human Resources Management (Environmental Programs & Management, Superfund) [020:063] | - |
Indoor Air: Radon Program (Science & Technology, Environmental Programs & Management) [020:064] | - |
Information Security (Environmental Programs & Management, Superfund) [020:065] | - |
Infrastructure Assistance: Alaska Native Villages (State & Tribal Assistance Grants) [020:066] | - |
Infrastructure Assistance: Clean Water SRF (State & Tribal Assistance Grants) [020:067] | - |
Infrastructure Assistance: Drinking Water SRF (State & Tribal Assistance Grants) [020:068] | - |
Infrastructure Assistance: Mexico Border (State & Tribal Assistance Grants) [020:069] | - |
Integrated Environmental Strategies (Environmental Programs & Management) [020:070] | - |
International Sources of Pollution (Environmental Programs & Management) [020:071] | - |
IT / Data Management (Science & Technology, Environmental Programs & Management, Superfund, Leaking Underground Storage Tanks) [020:072] | - |
Legal Advice: Environmental Program (Environmental Programs & Management, Superfund) [020:073] | - |
Legal Advice: Support Program (Environmental Programs & Management) [020:074] | - |
Leaking Underground Storage Tanks / UST (Environmental Programs & Management, Superfund) [020:075] | - |
Leaking Underground Storage Tanks Cooperative Agreements (Leaking Underground Storage Tanks) [020:076] | - |
Leaking Underground Storage Tanks Prevention (Leaking Underground Storage Tanks) [020:077] | - |
Marine Pollution (Environmental Programs & Management) [020:078] | - |
National Estuary Program / Coastal Waterways (Environmental Programs & Management) [020:079] | - |
National Environmental Policy Act Implementation (Environmental Programs & Management) [020:080] | - |
Oil Spill Response Spill: Prevention, Preparedness and Response (Oil Spill Response) [020:081] | - |
Pesticides: Protect Human Health from Pesticide Risk (Science & Technology, Environmental Programs & Management) [020:082] | - |
Pesticides: Protect the Environment from Pesticide Risk (Science & Technology, Environmental Programs & Management) [020:083] | - |
Pesticides: Realize the Value of Pesticide Availability (Science & Technology, Environmental Programs & Management) [020:084] | - |
Pollution Prevention Program (Environmental Programs & Management) [020:085] | - |
Radiation: Protection (Environmental Programs & Management, Science & Technology, Superfund) [020:086] | - |
Radiation: Response Preparedness (Science & Technology, Environmental Programs & Management) [020:087] | - |
RCRA: Corrective Action (Environmental Programs & Management, Oil Spill Response) [020:088] | - |
RCRA: Waste Management (Environmental Programs & Management, E-Manifest) [020:089] | - |
RCRA: Waste Minimization & Recycling (Environmental Programs & Management, E-Manifest) [020:090] | - |
Reduce Risks from Indoor Air (Science & Technology, Environmental Programs & Management) [020:091] | - |
Regional Science and Technology (Environmental Programs & Management) [020:092] | - |
Regulatory/Economic-Management and Analysis (Environmental Programs & Management) [020:093] | - |
Research: Air, Climate and Energy (Science & Technology) [020:094] | - |
Research: Chemical Safety and Sustainability (Science & Technology) [020:095] | - |
Research: Safe and Sustainable Water Resources (Science & Technology) [020:096] | - |
Research: Sustainable and Healthy Communities (Science & Technology, Superfund, Leaking Underground Storage Tanks, Oil Spill Response) [020:097] | - |
Science Advisory Board (Environmental Programs & Management) [020:098] | - |
Science Policy and Biotechnology (Environmental Programs & Management) [020:099] | - |
Small Business Ombudsman (Environmental Programs & Management) [020:100] | - |
Small Minority Business Assistance (Environmental Programs & Management) [020:101] | - |
State and Local Prevention and Preparedness (Environmental Programs & Management) [020:102] | - |
Stratospheric Ozone: Domestic Programs (Environmental Programs & Management) [020:103] | - |
Stratospheric Ozone: Multilateral Fund (Environmental Programs & Management) [020:104] | - |
Superfund: Emergency Response and Removal (Environmental Programs & Management, Superfund, Oil Spill Respond [020:105] | - |
Superfund: Enforcement (Superfund) [020:106] | - |
Superfund: EPA Emergency Preparedness (Superfund) [020:107] | - |
Superfund: Federal Facilities (Environmental Programs & Management, Superfund, Oil Spill Response) [020:108] | - |
Superfund: Remedial (Superfund) [020:109] | - |
Superfund: Support to Other Federal Agencies (Superfund) [020:110] | - |
Superfund: Federal Facilities Enforcement (Superfund [020:111] | - |
Surface Water Protection (Environmental Programs & Management) [020:112] | - |
Toxic Substances: Chemical Risk Management (Environmental Programs & Management) [020:113] | - |
Toxic Substances: Chemical Risk Review and Reduction (Environmental Programs & Management) [020:114] | - |
Toxic Substances: Lead Risk Reducation Program (Environmental Programs & Management) [020:115] | - |
Trade and Governance (Environmental Programs & Management) [020:116] | - |
TRI / Right to Know (Environmental Programs & Management) [020:117] | - |
Tribal - Capacity Building (Environmental Programs & Management) [020:118] | - |
US Mexico Border (Environmental Programs & Management) [020:119] | - |
Water Quality Research and Support Grants (Science & Technology, Environmental Programs & Management) [020:120] | - |
Wetlands (Environmental Programs & Management) [020:121] | - |
(Primary Program Not Available) [020:000] | - |
Department of Transportation [021] | |
Air Traffic Organization (Operations) [021:001] | - |
Aviation Safety (Operations) [021:002] | - |
Commercial Space Transportation (Operations) [021:003] | - |
General Administrative Support (Operations) [021:004] | - |
Facilities and Equipment (F&E): Engineering, Development, Test and Evaluation [021:005] | - |
Facilities and Equipment: Facilities, Equipment, Mission Support and General Expenses [021:006] | - |
Research, Engineering and Development [021:007] | - |
Airports [021:008] | - |
Federal-Aid Highways & Highway Safety Construction Programs [021:009] | - |
Transportation Infrastructure Finance and Innovation Program [021:010] | - |
General Administrative Expenses [021:011] | - |
Formula Grants Programs [021:012] | - |
Research, Development Demonstration and Deployment Projects [021:013] | - |
Technical Assistance and Workforce Development Programs [021:014] | - |
Capital Investment Grants [021:015] | - |
Washington Metropolitan Area Transit Authority [021:016] | - |
Transit Safety and Oversight [021:017] | - |
Administrative Expenses [021:018] | - |
Enforcement and Intervention Programs (Safety Operations and Programs) [021:019] | - |
Safety Mission Support (Safety Operations and Programs) [021:020] | - |
Information Technology Development and Sustainment (Safety Operations and Programs) [021:021] | - |
Research & Technology (Safety Operations and Programs) [021:022] | - |
Motor Carrier Safety Assistance Program Grants [021:023] | - |
MCSAP High Priority Grants [021:024] | - |
MCSAP New Entrant Grants [021:025] | - |
Border Enforcement Grants [021:026] | - |
Safety Data Improvements Grants [021:027] | - |
Commercial Vehicle Information Systems and Networks Grants [021:028] | - |
Commercial Drive License Program Improvement [021:029] | - |
Commercial Motor Vehicle Operating Grants (Safety Operations and Programs) [021:030] | - |
Vehicle Safety [021:031] | - |
Highway Safety Research and Development [021:032] | - |
State and Community Highway Safety Grants [021:033] | - |
National Priority Safety Programs [021:034] | - |
High Visibility Enforcement [021:035] | - |
Safety and Operations [021:036] | - |
Railroad Research and Development [021:037] | - |
Operating Grants to Amtrak [021:038] | - |
Capital and Debt Service Grants to Amtrak [021:039] | - |
Current Passenger Rail Service [021:040] | - |
Rail Service Improvement Program [021:041] | - |
Research and Development [021:042] | - |
Hazardous Materials Safety [021:043] | - |
Pipeline Safety [021:044] | - |
US Merchant Marine Academy (Operations and Training) [021:045] | - |
State Maritime Academies Support (Operations and Training) [021:046] | - |
Operations and Programs (Operations and Training) [021:047] | - |
Ship Disposal Program [021:048] | - |
Maritime Security Program [021:049] | - |
Maritime Guaranteed Loan Program [021:050] | - |
Saint Lawrence Seaway Development Corporation [021:051] | - |
Transportation Planning, Research and Development [021:052] | - |
Research & Technology [021:053] | - |
Payments to Air Carriers/Essential Air Service [021:054] | - |
National Infrastructure Investments [021:055] | - |
Minority Business Outreach [021:056] | - |
Minority Business Resource Center [021:057] | - |
General Administration [021:058] | - |
Office of the Inspector General [021:059] | - |
Surface Transportation Board [021:060] | - |
(Primary Program Not Available) [021:000] | - |
General Services Administration [023] | |
Construction and Acquisition of Facilities Program [023:001] | - |
Repairs and Alterations Program [023:002] | - |
Rental of Space Program [023:003] | - |
Building Operations Program [023:004] | - |
Real Property Disposal Program [023:005] | - |
Real Property Relocation Program [023:006] | - |
Assisted Acquisition Services Program [023:007] | - |
Integrated Technology Services Program [023:008] | - |
General Supplies and Services Program [023:009] | - |
Travel, Motor Vehicle and Card Services Program [023:010] | - |
Integrated Award Environment Program [023:011] | - |
Federal Acquisition Service Integrators Program [023:012] | - |
Transportation Audits Program [023:013] | - |
General Management and Support Services Program [023:014] | - |
Government-wide Policy Program [023:015] | - |
Operating Expense Program [023:016] | - |
Electronic Government Program [023:017] | - |
Acquisition Workforce Training Program [023:018] | - |
Citizen Services and Innovative Technologies Program [023:019] | - |
Inspector General Program [023:020] | - |
Former Presidents Program [023:021] | - |
Presidential Transition Program [023:022] | - |
(Primary Program Not Available) [023:000] | - |
Department of Homeland Security [024] | |
Analysis and Operations [024:001] | - |
Office of the Secretary and Executive Management [024:002] | - |
Under Secretary for Management [024:003] | - |
Domestic Rad/Nuc Detection, Forensics and Prevention Capability [024:004] | - |
Mitigation [024:005] | - |
Preparedness [024:006] | - |
Protection [024:007] | - |
Response [024:008] | - |
Recovery [024:009] | - |
Accreditation [024:010] | - |
Law Enforcement Training [024:011] | - |
Federal Protective Service [024:012] | - |
Infrastructure Protection [024:013] | - |
Cybersecurity and Communications [024:014] | - |
US-VISIT [024:015] | - |
Health Threats Resilience [024:016] | - |
Workforce Health and Medical Support [024:017] | - |
Audits, Inspections, and Investigations [024:018] | - |
Acquisition and Operations Support [024:019] | - |
Laboratory Facilities [024:020] | - |
Research, Development, and Innovation [024:021] | - |
University Programs [024:022] | - |
In-Flight Security [024:023] | - |
Intermodal Assessments and Enforcement [024:024] | - |
Intermodal Screening Operations [024:025] | - |
Adjudication Services [024:026] | - |
Citizenship [024:027] | - |
Cross-cutting Investments [024:028] | - |
Immigration Security and Integrity [024:029] | - |
Immigration Status Verification [024:030] | - |
Information and Customer Service [024:031] | - |
Cross-Cutting Capital Investments [024:032] | - |
Defense Operations [024:033] | - |
Maritime Law Enforcement [024:034] | - |
Maritime Prevention [024:035] | - |
Maritime Response [024:036] | - |
Maritime Security Operations [024:037] | - |
Marine Transportation System Management [024:038] | - |
Mission Support [024:039] | - |
Integrated Operations [024:040] | - |
Intelligence and Targeting [024:041] | - |
Securing America's Borders [024:042] | - |
Securing and Expediting Trade [024:043] | - |
Securing and Expediting Travel [024:044] | - |
Automation Modernization [024:045] | - |
Construction [024:046] | - |
Enforcement and Removal Operations [024:047] | - |
Homeland Security Investigations [024:048] | - |
Criminal Investigations [024:049] | - |
Information Integration and Technology Transformation [024:050] | - |
Protection [024:051] | - |
Protective Intelligence [024:052] | - |
Rowley Training Center [024:053] | - |
(Primary Program Not Available) [024:000] | - |
Department of Housing and Urban Development [025] | |
Capacity Building (Section 4) [025:001] | - |
CDBG (Entitlement) [025:002] | - |
CDBG (Disaster Recovery Assistance) [025:003] | - |
CDBG (Community Development Loan Guarantee (Section 108)) [025:004] | - |
Consolidated Plan [025:005] | - |
Empowerment Zones [025:006] | - |
HOME Investment Partnerships Program [025:007] | - |
Homeless Prevention and Rapid Rehousing [025:008] | - |
Housing Opportunities for Persons with AIDS (HOPWA) [025:009] | - |
Housing Trust Fund [025:010] | - |
McKinney-Vento Homeless Assistance Grants [025:011] | - |
Neighborhood Stabilization Program (NSP) [025:012] | - |
Self-Help Homeownership and Opportunity Program (SHOP) [025:013] | - |
Mortgage Backed Securitization Program [025:014] | - |
Healthy Homes [025:015] | - |
Lead Regulatory Enforcement Program [025:016] | - |
Lead Technical Studies and Programmatic Support [025:017] | - |
Assisted Living Conversion Program [025:018] | - |
Cooperative Housing (Section 213) [025:019] | - |
Emergency Homeowners' Loan Program [025:020] | - |
Energy Efficient Mortgage Insurance [025:021] | - |
Existing Multifamily Rental Housing (Section 207/223(f)) [025:022] | - |
Green Retrofit Program [025:023] | - |
Home Equity Conversion Mortgage (HECM) Program (Section 255) [025:024] | - |
Housing Counseling Assistance [025:025] | - |
Loss Mitigation [025:026] | - |
Manufactured Homes Loan Insurance (Title I) [025:027] | - |
Manufactured Housing Programs [025:028] | - |
Mark-to-Market Program [025:029] | - |
Mortgage and Major Home Improvement Loan Insurance for Urban Renewal Areas (Section 220) [025:030] | - |
Mortgage Insurance for Hospital Facilities (Section 242) [025:031] | - |
Mortgage Insurance for Housing for the Elderly (Section 231) [025:032] | - |
Mortgage Insurance for Residential Care Facilities (Section 232) [025:033] | - |
Multifamily Rental Housing for Moderate-Income Families (Section 221(d)(3) and (4)) [025:034] | - |
Multifamily Housing Service Coordinators [025:035] | - |
Multifamily Risk-Sharing Programs (Section 542 (B) and 542(c)) [025:036] | - |
One to Four Family Home Mortgage Insurance (Section 203(b)) [025:037] | - |
Project-Based Rental Assistance (PBRA) aka Section 8 for Projects [025:038] | - |
Property Improvement Loan Insurance (Title I) [025:039] | - |
Rehabilitation Loan Insurance (Section 203(k)) [025:040] | - |
Rent Supplement [025:041] | - |
Rental Assistance Program (RAP) [025:042] | - |
Rental Housing Assistance (Section 236) [025:043] | - |
Supplemental Loans for Multifamily Projects (Section 241) [025:044] | - |
Supportive Housing for Persons with Disabilities (Section 811) [025:045] | - |
Supportive Housing for the Elderly (Section 202) [025:046] | - |
Research [025:047] | - |
Choice Neighborhoods [025:048] | - |
Family Self-Sufficiency (FSS) Program [025:049] | - |
Family Unification Vouchers [025:050] | - |
Federal Guarantees for Financing for Tribal Housing Activities (Title VI) [025:051] | - |
HUD-Veterans Affairs Supportive Housing (VASH) [025:052] | - |
Indian Community Development Block Grant (CDBG) [025:053] | - |
Indian Housing Loan Guarantee Fund (Section 184) [025:054] | - |
Native American Housing Block Grants [025:055] | - |
Native Hawaiian Housing Block Grants [025:056] | - |
Native Hawaiian Loan Guarantee Fund (Section 184A) [025:057] | - |
Non-elderly disabled vouchers [025:058] | - |
Public Housing [025:059] | - |
Rental Assistance Demonstration [025:060] | - |
Resident Opportunity and Self-Sufficiency (ROSS) Program [025:061] | - |
Tenant-Based Rental Assistance (TBRA)/Housing Choice Vouchers aka Section 8 for tenants [025:062] | - |
Sustainable Communities Initiative [025:063] | - |
Cross-Department IT [025:064] | - |
Cross-Department Management [025:065] | - |
(Primary Program Not Available) [025:000] | - |
National Aeronautics and Space Administration [026] | |
Earth Science Research [026:001] | - |
Earth Systematic Missions [026:002] | - |
Earth System Science Pathfinder [026:003] | - |
Earth Science Multi-Mission Operations [026:004] | - |
Earth Science Technology [026:005] | - |
Applied Sciences [026:006] | - |
Planetary Science Research [026:007] | - |
Lunar Quest [026:008] | - |
Discovery [026:009] | - |
New Frontiers [026:010] | - |
Mars Exploration [026:011] | - |
Outer Planets [026:012] | - |
Planetary Science Technology [026:013] | - |
Astrophysics Research [026:014] | - |
Cosmic Origins [026:015] | - |
Physics of the Cosmos [026:016] | - |
Exoplanet Exlporer [026:017] | - |
Astrophysics Explorer Program [026:018] | - |
James Webb Space Telescope [026:019] | - |
Heliophysics Explorer Program [026:020] | - |
Aviation Safety [026:021] | - |
Airspace Systems [026:022] | - |
Fundamental Aeronautics [026:023] | - |
Aeronautics Test [026:024] | - |
Integrated Systems Research [026:025] | - |
Aeronautics Strategy and Management [026:026] | - |
Small Business Innovation Research and Small Business Technology Transfer [026:027] | - |
Partnership Development and Strategic Integration [026:028] | - |
Crosscutting Space Tech Development [026:029] | - |
Exploration Technology Development [026:030] | - |
Orion Multi-Purpose Crew Vehicle [026:031] | - |
Space Launch System [026:032] | - |
Exploration Ground Systems [026:033] | - |
Commercial Crew [026:034] | - |
Human Research Program [026:035] | - |
Advanced Exploration Systems [026:036] | - |
International Space Station Program [026:037] | - |
21st Century Space Launch Complex [026:038] | - |
Space Communications and Navigation [026:039] | - |
Human Space Flight Operations [026:040] | - |
Launch Services [026:041] | - |
Rocket Propulsion Test [026:042] | - |
Aerospace Research and Career Development [026:043] | - |
STEM Education and Accountability [026:044] | - |
Center Management and Operations [026:045] | - |
Agency Management [026:046] | - |
Safety and Mission Success [026:047] | - |
Strategic Capabilities Assets Program [026:048] | - |
Institutional Construction of Facilities (CoF) [026:049] | - |
Exploration Construction of Facilities (CoF) [026:050] | - |
Space Operations Construction of Facilities (CoF) [026:051] | - |
Environmental Compliance and Restoration [026:052] | - |
Inspector General [026:053] | - |
(Primary Program Not Available) [026:000] | - |
Office of Personnel Management [027] | |
Federal Employee Policy Oversight [027:001] | - |
Federal Employee Healthcare and Insurance [027:002] | - |
National Healthcare Operations [027:003] | - |
Federal Investigative Services [027:004] | - |
Federal Agency Human Resource Services [027:005] | - |
Merit System Accountability & Compliance [027:006] | - |
Office of the Inspector General [027:007] | - |
Federal Employee Retirement [027:008] | - |
USAJOBS [027:009] | - |
Federal Human Resources Information Technology Human Resources Line of Business (HRLOB) [027:010] | - |
(Primary Program Not Available) [027:000] | - |
Small Business Administration [028] | |
7(a) Loan Guarantees [028:001] | - |
504 Certified Development Loans [028:002] | - |
Microloan [028:003] | - |
Surety Bond Guarantees [028:004] | - |
Procurement Assistance Program [028:005] | - |
Small Business Procurement Set-Aside [028:006] | - |
8(a) Business Development [028:007] | - |
7(j) Technical Assistance [028:008] | - |
HUBZone [028:009] | - |
Women-Owned Small Business Federal Contracting [028:010] | - |
Service-Disabled Veteran-Owned Small Business Procurement [028:011] | - |
Size Standards [028:012] | - |
Small Business Development Centers (SBDC) [028:013] | - |
Women’s Business Centers (WBS) [028:014] | - |
SCORE [028:015] | - |
Veteran’s Business Development [028:016] | - |
Disaster Assistance [028:017] | - |
Small Business Investment Companies (SBIC) [028:018] | - |
Small Business Innovation Research (SBIR) [028:019] | - |
Small Business Technology Transfer Program (STTR) [028:020] | - |
International Trade [028:021] | - |
Federal and State Technology Partnership (FAST) Program [028:022] | - |
PRIME Program [028:023] | - |
Regional Innovation Clusters [028:024] | - |
Native American Outreach [028:025] | - |
BusinessUSA [028:026] | - |
Ombudsman Program [028:027] | - |
Secondary Market Guarantees [028:028] | - |
Emerging Leaders [028:029] | - |
Inspector General [028:030] | - |
Advocacy [028:031] | - |
Program Management and Administration [028:032] | - |
(Primary Program Not Available) [028:000] | - |
Department of Veterans Affairs [029] | |
Memorial Services [029:001] | - |
Veterans’ Cemetery Grants [029:002] | - |
Veterans Benefits – Administration of Benefits [029:003] | - |
Burial Benefits [029:004] | - |
Veterans Disability Compensation [029:005] | - |
Survivors Compensation [029:006] | - |
Dependency Indemnity Compensation (DIC) [029:007] | - |
Filipino Veterans Compensation [029:008] | - |
Veterans Pension [029:009] | - |
Survivors Pension [029:010] | - |
Fiduciary Services [029:011] | - |
Veterans Mortgage Life Insurance [029:012] | - |
United State Government Life Insurance [029:013] | - |
National Service Life Insurance [029:014] | - |
Veterans’ Special Life Insurance [029:015] | - |
Veterans Reopened Insurance [029:016] | - |
Service-Disabled Veterans’ Insurance [029:017] | - |
Servicemembers’ Group Life Insurance (SGLI) [029:018] | - |
Family Servicemembers’ Group Life Insurance (FSGLI) [029:019] | - |
Servicemembers’ Group Life Insurance Traumatic Injury Protection (TSGLI) [029:020] | - |
Veterans’ Group Life Insurance (VGLI) [029:021] | - |
Housing Guaranteed Loan [029:022] | - |
Acquired Direct Loan [029:023] | - |
Vendee Direct Loan [029:024] | - |
Guaranteed Loan Sale Securities [029:025] | - |
Native American Direct Loan [029:026] | - |
Specially Adapted Housing (SAH) & Special Housing Adaptation (SHA) [029:027] | - |
Vocational Rehabilitation Loan [029:028] | - |
Transitional Housing Loan [029:029] | - |
Post-9/11 GI Bill [029:030] | - |
Montgomery GI Bill – Active Duty [029:031] | - |
Montgomery GI Bill – Selected Reserve [029:032] | - |
Survivors’ and Dependents’ Educational Assistance [029:033] | - |
Reserve Educational Assistance Program [029:034] | - |
Veterans Retraining Assistance Program [029:035] | - |
Post-Vietnam Era Veteran’s Educational Assistance Program [029:036] | - |
Vocational Rehabilitation and Employment Program [029:037] | - |
Vocational Rehabilitation and Employment – VetSuccess On Campus (VSOC) [029:038] | - |
Vocational Rehabilitation and Employment – Independent Living (IL) [029:039] | - |
Inpatient Care [029:040] | - |
Ambulatory Care [029:041] | - |
Mental Health Service, General Outpatient Care [029:042] | - |
Mental Health, Intensive Recovery-Oriented Program [029:043] | - |
Mental Health, Inpatient Care [029:044] | - |
Mental Health Residential Rehabilitation Treatment Programs (MH RRTP) [029:045] | - |
Readjustment Counseling [029:046] | - |
Pharmacy [029:047] | - |
VHA Research and Development [029:048] | - |
Spinal Cord Injury and Disorders (SCI/D) Service [029:049] | - |
Blind Rehabilitation Service (BRS) [029:050] | - |
Dental Care [029:051] | - |
Prosthetics and Sensory Aids Service (PSAS) [029:052] | - |
Women Veterans Health Care [029:053] | - |
Community Living Centers (CLCs) [029:054] | - |
Community Nursing Homes [029:055] | - |
State Veterans Home Program [029:056] | - |
Adult Day Health Care [029:057] | - |
Home Based Primary Care [029:058] | - |
Homemaker and Home Health Aide Care [029:059] | - |
Hospice and Palliative Care [029:060] | - |
Program of All Inclusive Care of the Elderly (PACE) [029:061] | - |
Respite Care [029:062] | - |
Skilled Home Health Care [029:063] | - |
Program of Comprehensive Assistance for Family Caregivers [029:064] | - |
Telehealth Care [029:065] | - |
Civilian Health and Medical Program of the Department of Veterans Affairs (CHAMPVA) [029:066] | - |
Foreign Medical Program (FMP) [029:067] | - |
Spina Bifida Program [029:068] | - |
Children of Women Vietnam Veterans (CWVV) [029:069] | - |
Department of Housing and Urban Development-VA Supportive Housing (HUD-VASH) [029:070] | - |
Grant and Per Diem (GPD) Program [029:071] | - |
Health Care for Homeless Veterans (HCHV) [029:072] | - |
Supportive Services for Low Income Veterans and Families (SSVF) [029:073] | - |
National Call Center for Homeless Veterans (NCCHV) [029:074] | - |
Veterans Justice Outreach (VJO) Program [029:075] | - |
Homeless Veterans Supported Employment Program (HVSEP) [029:076] | - |
National Homeless Registry [029:077] | - |
Operations and Maintenance [029:078] | - |
Development [029:079] | - |
Staffing and Administration [029:080] | - |
Office of the Secretary [029:081] | - |
Board of Veterans’ Appeals [029:082] | - |
Office of General Counsel [029:083] | - |
Office of Management [029:084] | - |
Office of Human Resources and Administration [029:085] | - |
Office of Policy and Planning [029:086] | - |
Office of Security and Preparedness [029:087] | - |
Office of Public and Intergovernmental Affairs [029:088] | - |
Office of Congressional and Legislative Affairs [029:089] | - |
Office of Acquisitions, Logistics and Construction [029:090] | - |
Office of the Inspector General [029:091] | - |
Construction – Major Projects [029:092] | - |
Construction – Minor Projects [029:093] | - |
(Primary Program Not Available) [029:000] | - |
USAID-State [184] | |
Counter-Terrorism [184:001] | - |
Combating Weapons of Mass Destruction (WMD) [184:002] | - |
Stabilization Operations and Security Sector Reform [184:003] | - |
Counter-Narcotics [184:004] | - |
Transnational Crime [184:005] | - |
Conflict Mitigation [184:006] | - |
Rule of Law and Human Rights [184:007] | - |
Good Governance [184:008] | - |
Political Competition and Consensus-Building [184:009] | - |
Civil Society [184:010] | - |
HIV/AID [184:011] | - |
Tuberculosis [184:012] | - |
Malaria [184:013] | - |
Pandemic Influenza and Other Emerging Threats (PIOET) [184:014] | - |
Other Public Health Threats [184:015] | - |
Maternal and Child Health [184:016] | - |
Family Planning and Reproductive Health [184:017] | - |
Water Supply and Sanitation [184:018] | - |
Nutrition [184:019] | - |
Basic Education [184:020] | - |
Higher Education [184:021] | - |
Policies, Regulations, and Systems [184:022] | - |
Social Services [184:023] | - |
Social Assistance [184:024] | - |
Macroeconomic Foundations for Growth [184:025] | - |
Trade and Investment [184:026] | - |
Financial Sector [184:027] | - |
Infrastructure [184:028] | - |
Agriculture [184:029] | - |
Private Sector Competitiveness [184:030] | - |
Economic Opportunity [184:031] | - |
Environment [184:032] | - |
Protection, Assistance, and Solutions [184:033] | - |
Disaster Readiness [184:034] | - |
Migration Management [184:035] | - |
Direct Administrative Costs [184:036] | - |
Monitoring and Evaluation [184:037] | - |
(Primary Program Not Available) [184:000] | - |
US Army Corps of Engineers [202] | |
Navigation [202:001] | - |
Flood Risk Management [202:002] | - |
Environment [202:003] | - |
Hydropower [202:004] | - |
Regulation and Aquatic Resources [202:005] | - |
Disaster Response and Emergency Management [202:006] | - |
Recreation [202:007] | - |
Water Supply [202:008] | - |
(Primary Program Not Available) [202:000] | - |
National Science Foundation [422] | |
Biological Sciences (BIO) [422:001] | - |
Computer and Information Science and Engineering (CISE) [422:002] | - |
Engineering (ENG) [422:003] | - |
Geosciences (GEO) [422:004] | - |
Mathematical and Physical Sciences (MPS) [422:005] | - |
Social, Behavioral and Economic Sciences (SBE) [422:006] | - |
International and Integrative Activities (IIA) [422:007] | - |
United States Arctic Research Commission (USARC) [422:008] | - |
Education and Human Resources (EHR) [422:009] | - |
Major Research Equipment and Facilities Construction (MREFC) [422:010] | - |
Agency Operations and Award Management (AOAM) [422:011] | - |
Office of the National Science Board (NSB) [422:012] | - |
Office of the Inspector General (OIG) [422:013] | - |
(Primary Program Not Available) [422:000] | - |
(Agency Not Listed) [000] | |
(Primary Program Not Available) [000-000] | - |