Inherently Governmental Function
Boolean or coded flag indicating whether the IDV includes inherently governmental functions. It identifies records where the acquisition touches work that, by law or policy, must remain under government control or direction. The example value "CT" suggests the field may store coded values rather than a simple true/false, so the observed code set should be verified in the data.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter IDVs that involve inherently governmental functions
- Support compliance and policy review analyses
- Segment awards for risk or oversight reporting
Common Mistakes
- Assuming every non-null value means a simple true value
- Using the field as a proxy for contract sensitivity or dollar value
Query Guidance
When querying, first confirm the valid code-to-meaning mapping from the FPDS extract or associated description field. In SQL, filter on the confirmed affirmative code(s) rather than on string presence alone, and use DISTINCT or CASE logic to inspect observed values before building reporting logic.
SQL Examples
Preview values
SELECT
content__IDV__contractData__inherentlyGovernmentalFunction AS inherently_governmental_function
FROM fpds.data
WHERE content__IDV__contractData__inherentlyGovernmentalFunction IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__contractData__inherentlyGovernmentalFunction AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__inherentlyGovernmentalFunction IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.