Organization Code
NASA-specific code that identifies the organization associated with the award record. It is a coded identifier rather than a free-text description, so the value is typically abbreviated and may require a reference list to interpret.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Group NASA awards by organization for portfolio analysis
- Filter awards to a specific NASA organizational unit
- Join to a code lookup table to derive the organization name
Common Mistakes
- Interpreting the code as a human-readable organization name
- Comparing coded values without normalizing to the same reference set
Query Guidance
Use this field in WHERE clauses for exact code matches and in GROUP BY for organizational rollups. When presenting results, join to a reference table for the display label; if the table is null or incomplete, treat the field as an identifier and preserve the raw code in the output.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__organizationCode AS organization_code
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__organizationCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__organizationCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__organizationCode IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.