Manufacturing Organization Type
A coded value that identifies the manufacturing organization type associated with the award record. In FPDS, this field indicates the kind of organization involved in manufacturing, with example values such as "A" representing a U.S.-owned business.
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 by manufacturing organization type
- Group procurement totals by organization code
- Support domestic supply chain or vendor profile analysis
Common Mistakes
- Interpreting the code as a textual description without decoding it
- Assuming missing or blank values mean a specific organization type
Query Guidance
Use this field in WHERE or GROUP BY clauses only after confirming the code meanings. Compare against explicit code values, and if available, join or select a paired description field for readable output; for example, filter with `manufacturingOrganizationType = 'A'` when looking for U.S.-owned businesses.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__manufacturingOrganizationType AS manufacturing_organization_type
FROM fpds.data
WHERE content__award__productOrServiceInformation__manufacturingOrganizationType IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__manufacturingOrganizationType AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__manufacturingOrganizationType 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.