Place of Manufacture Description
Human-readable text that explains the coded "Place of Manufacture" value on an award record. It is the descriptive label for that paired FPDS field, such as a phrase indicating whether the item was manufactured domestically, foreign, or is not a manufactured end product.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Labeling place-of-manufacture categories in reports
- Validating coded procurement-origin values
- Filtering or grouping awards by manufacturing origin description
Common Mistakes
- Using the description as a stable code instead of a display label
- Assuming identical wording across records without checking for text variants
Query Guidance
Use this field for readable output, QA, and text-based checks; if a paired code field exists, group and join on the code and select this description for presentation. In SQL, consider normalizing case and trimming whitespace before comparing strings, and do not treat NULL or unexpected text as a valid code without verifying the source record.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__placeOfManufacture__description AS place_of_manufacture_description
FROM fpds.data
WHERE content__award__productOrServiceInformation__placeOfManufacture__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__placeOfManufacture__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__placeOfManufacture__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.