Place of Manufacture
Indicates the place where the product or service was manufactured. In FPDS this is typically a coded value rather than a free-text location, so the field identifies the manufacturing origin assigned to the award record.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Domestic versus foreign sourcing analysis
- Filtering awards by manufacturing origin
- Grouping procurement records by place-of-manufacture code
Common Mistakes
- Assuming the field contains a full country or state name
- Comparing codes without first checking for blanks, nulls, or unmapped values
Query Guidance
Use the raw string value in WHERE and GROUP BY clauses, and compare against documented code values rather than inferred labels. If you need readable output, join to a lookup table or CASE-map the observed codes; always include null-handling logic when calculating counts or shares.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__placeOfManufacture AS place_of_manufacture
FROM fpds.data
WHERE content__award__productOrServiceInformation__placeOfManufacture IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__placeOfManufacture AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__placeOfManufacture 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.