Inherently Governmental Function Description
Human-readable text describing the related inherently governmental function code on an award record. This field is the label/description side of the coded FPDS value, used to spell out the function classification in plain language.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Interpreting the inherently governmental function classification on an award
- Validating code-to-description mappings in FPDS extracts
- Filtering awards for oversight or compliance review
Common Mistakes
- Using the description alone as if it were the controlling data element
- Assuming different text spellings indicate different policy meanings
Query Guidance
Use this field for display, grouping, or validation of the paired code field. In SQL, join or select it alongside the coded inherently governmental function element, and prefer the code for filtering while using the description for labels, audits, and data quality checks.
SQL Examples
Preview values
SELECT
content__award__contractData__inherentlyGovernmentalFunction__description AS inherently_governmental_function_description
FROM fpds.data
WHERE content__award__contractData__inherentlyGovernmentalFunction__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__inherentlyGovernmentalFunction__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__inherentlyGovernmentalFunction__description 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.