Contingency Humanitarian Peacekeeping Operation
Boolean or coded flag indicating whether the IDV/contract is associated with contingency, humanitarian, or peacekeeping operations. In FPDS data this field marks records tied to special operational environments rather than ordinary acquisition activity.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter contingency or disaster-response contract populations
- Segment awards supporting humanitarian or peacekeeping missions
- Compare procurement patterns across operational versus non-operational buys
Common Mistakes
- Assuming blank always means false without checking source encoding
- Using the flag as a proxy for all overseas or emergency contracting
Query Guidance
In SQL, filter for affirmative values only after confirming the encoding in your extract, for example `WHERE contingencyHumanitarianPeacekeepingOperation IN ('X','Y','1')`. For analysis of incidence, group by this field with null handling explicit, and do not assume the field is standardized across all feeds without validation.
SQL Examples
Preview values
SELECT
content__IDV__contractData__contingencyHumanitarianPeacekeepingOperation AS contingency_humanitarian_peacekeeping_operation
FROM fpds.data
WHERE content__IDV__contractData__contingencyHumanitarianPeacekeepingOperation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__contractData__contingencyHumanitarianPeacekeepingOperation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__contingencyHumanitarianPeacekeepingOperation 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.