Installation Unique
A NASA-specific identifier for the installation associated with the award record. It stores a string value that identifies the installation in NASA award reporting data.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Grouping NASA awards by installation
- Filtering records for site-level analysis
- Linking award records to NASA facility or organization reference tables
Common Mistakes
- Assuming the value is a human-readable installation name
- Using it as a universal FPDS field outside NASA-specific records
Query Guidance
Select and group by this field when performing NASA installation-level analysis, and join to a lookup table if available to translate codes into readable installation names. In SQL, filter out nulls and distinct values first to understand the code space before aggregating obligations or counts.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__installationUnique AS installation_unique
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__installationUnique IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__installationUnique AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__installationUnique 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.