Administrator Code

Code that identifies the NASA administrator associated with the IDV record. It is an internal classification value, typically stored as a short code rather than a full name or descriptive text.

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__administratorCode
Title
Administrator Code
FPDS Path
IDV/agencySpecificIDVElements/NASASpecificIDVElements/administratorCode
Description
Code that identifies the NASA administrator associated with the IDV record. It is an internal classification value, typically stored as a short code rather than a full name or descriptive text.
Business Meaning
This field supports NASA-specific oversight, routing, and reporting by linking an IDV to the responsible administrator. Analysts can use it to segment NASA procurement activity by administrative ownership and to reconcile records against internal management structures.
Example Value
JAK
Observed Non-Null Count
57,757

FPDS Compare

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

Use Cases

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

Common Usage

  • Grouping NASA IDVs by administrator for reporting
  • Filtering awards tied to a specific NASA administrative office
  • Reconciling IDV records to internal NASA management structures

Common Mistakes

  • Interpreting the code as a descriptive office name
  • Joining on this field without confirming the current NASA code set

Query Guidance

Use this field as an exact-match filter or grouping key, e.g. WHERE administratorCode = 'JAK'. When joining or reporting, pair it with a lookup table or companion description field if available, and account for nulls where the NASA-specific element is not populated.

SQL Examples

Preview values

SELECT
    content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__administratorCode AS administrator_code
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__administratorCode IS NOT NULL
LIMIT 25

Top values

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