Organization Code

NASA organization code recorded on the IDV. It is a coded identifier that ties the award to a specific NASA organizational unit for internal tracking and attribution.

Family: IDV
Category: NASA Specific Fields
Data Type: identifier_or_code
Semantic Type: identifier
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__organizationCode
Title
Organization Code
FPDS Path
IDV/agencySpecificIDVElements/NASASpecificIDVElements/organizationCode
Description
NASA organization code recorded on the IDV. It is a coded identifier that ties the award to a specific NASA organizational unit for internal tracking and attribution.
Business Meaning
This field lets analysts attribute IDVs to the correct NASA office or organization, which is important for portfolio reviews, spend allocation, and organizational reporting. It supports segmentation of awards across NASA components and helps reconcile agency-level reporting with internal management structures.
Example Value
227
Observed Non-Null Count
57,684

FPDS Compare

FPDS Query Variable
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__organizationCode
FPDS XML Path
IDV/agencySpecificIDVElements/NASASpecificIDVElements/organizationCode
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/agencySpecificIDVElements/NASASpecificIDVElements/organizationCode' into the SQL-ready variable 'content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__organizationCode'.

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building
  • NASA-specific IDV record interpretation

Common Usage

  • Group IDVs by NASA organization for reporting
  • Filter awards tied to a specific NASA office
  • Join to a lookup table for human-readable organization names

Common Mistakes

  • Interpreting the code as a descriptive label
  • Comparing codes across datasets without confirming the same code set

Query Guidance

Use this field in WHERE clauses or GROUP BY statements when analyzing NASA-awarded IDVs by organization. If a lookup table exists, join on the code to display the organization name; if not, preserve the raw code and avoid casting it in a way that strips leading zeros or changes formatting.

SQL Examples

Preview values

SELECT
    content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__organizationCode AS organization_code
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__organizationCode IS NOT NULL
LIMIT 25

Top values

SELECT
    content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__organizationCode AS value,
    count() AS record_count
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__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.