Performance Based Service Contract Description
Human-readable description corresponding to the coded Performance Based Service Contract indicator in the award record. It stores the text label or explanation for whether performance-based service contracting was used, rather than the underlying code alone.
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 coded performance-based service contract flag
- Validating whether a contract was reported as performance-based
- Labeling reports and QA checks for service contracting compliance
Common Mistakes
- Using the description field as a boolean or categorical filter instead of the code field
- Assuming the text is standardized when source values may vary in wording
Query Guidance
Join or compare this field with the paired performance-based service contract code field when classifying awards. In SQL, use it primarily for display, QA, and text-based validation; if filtering on semantics, prefer the coded field and only fall back to LIKE or pattern checks when necessary.
SQL Examples
Preview values
SELECT
content__award__contractData__performanceBasedServiceContract__description AS performance_based_service_contract_description
FROM fpds.data
WHERE content__award__contractData__performanceBasedServiceContract__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__performanceBasedServiceContract__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__performanceBasedServiceContract__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.