Purchase Card as Payment Method
Boolean or coded flag indicating whether the contract record uses a purchase card as the payment method. An "N" value means purchase card is not used; other observed values, if present, should be treated according to the FPDS code set for this field.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards paid with a purchase card
- Segment spend by payment method
- Support compliance and control analysis
Common Mistakes
- Treating "N" as missing instead of a valid negative response
- Using the field as a proxy for obligation type or vendor category
Query Guidance
Use the field in WHERE clauses to isolate purchase-card-funded records, typically by checking for the affirmative code in your dataset and treating "N" as false. If the extract contains mixed code forms, standardize values with CASE logic before aggregating or joining.
SQL Examples
Preview values
SELECT
content__award__contractData__purchaseCardAsPaymentMethod AS purchase_card_as_payment_method
FROM fpds.data
WHERE content__award__contractData__purchaseCardAsPaymentMethod IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__contractData__purchaseCardAsPaymentMethod AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__purchaseCardAsPaymentMethod 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.