Middle Initial
The middle initial for NASA's alternate principal investigator named on the award record. It is a personal-name attribute used to more fully identify that individual when present.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Disambiguating alternate principal investigators with similar names
- Joining award records to personnel or identity reference tables
- Filtering NASA awards that include named alternate principal investigators
Common Mistakes
- Using the field alone as an identifier
- Assuming a blank value means no alternate principal investigator exists
Query Guidance
Use this field as a supporting attribute in WHERE, JOIN, or deduplication logic alongside first and last name fields. In SQL, normalize case and trim whitespace when comparing values, and expect nulls, single-letter initials, or inconsistent punctuation rather than a controlled vocabulary.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__alternatePrincipalInvestigator__middleInitial AS middle_initial
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__alternatePrincipalInvestigator__middleInitial IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__alternatePrincipalInvestigator__middleInitial AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__alternatePrincipalInvestigator__middleInitial 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.