Purchase Card as Payment Method Description
Human-readable description paired with the coded "Purchase Card as Payment Method" field in award contract data. It indicates the labeled value recorded for whether a purchase card was used as the payment method, rather than the code itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Decoding the purchase-card payment indicator
- Filtering awards paid by purchase card
- Validating coded payment-method values
Common Mistakes
- Using the description field alone as if it were the authoritative flag when the paired code field is available
- Assuming nonstandard text values mean a new business concept instead of a label for the underlying coded indicator
Query Guidance
Use this field to label or decode the paired purchase-card indicator in SELECT statements, and join or filter on the underlying code field when available. For SQL, normalize values with UPPER/TRIM if needed, but rely on the paired code/description combination for reporting rather than the description text alone.
SQL Examples
Preview values
SELECT
content__award__contractData__purchaseCardAsPaymentMethod__description AS purchase_card_as_payment_method_description
FROM fpds.data
WHERE content__award__contractData__purchaseCardAsPaymentMethod__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__purchaseCardAsPaymentMethod__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__purchaseCardAsPaymentMethod__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.