Contingency Humanitarian Peacekeeping Operation Description
Human-readable text that describes the contingency, humanitarian, or peacekeeping operation associated with the IDV record. It is the descriptive companion to the coded "Contingency Humanitarian Peacekeeping Operation" field in FPDS.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Mapping coded contingency indicators to readable categories
- Filtering or grouping IDVs associated with special operations contexts
- Validating whether an award record reflects humanitarian or peacekeeping activity
Common Mistakes
- Treating the description as an independent analytical variable instead of the text label for a code
- Using the text alone to infer legal or mission status without checking the paired coded field or related context
Query Guidance
In SQL, use this field for display, validation, or text-based grouping after joining or selecting the paired coded field. Prefer exact matches or normalized text comparisons where possible, and do not rely on partial text searches for authoritative categorization.
SQL Examples
Preview values
SELECT
content__IDV__contractData__contingencyHumanitarianPeacekeepingOperation__description AS contingency_humanitarian_peacekeeping_operation_description
FROM fpds.data
WHERE content__IDV__contractData__contingencyHumanitarianPeacekeepingOperation__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__contingencyHumanitarianPeacekeepingOperation__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__contingencyHumanitarianPeacekeepingOperation__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.