Is School District Local Government
Boolean flag indicating whether the vendor entity is identified as a school district local government in the award record’s vendor business type details. A value such as 1/true means the vendor falls into this specific local government subtype; 0/false means it does not. This is a coded indicator, so analysts should use the observed values in the data rather than assuming free-text meaning.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Filter awards to school district local government vendors
- Measure procurement spend with local educational government entities
- Support vendor-type segmentation and compliance reporting
Common Mistakes
- Assuming 0 means the vendor is not a government entity at all
- Using the field without checking how null or blank values are encoded
Query Guidance
Use this field as a boolean predicate in WHERE clauses, for example to isolate school district local government vendors with `= 1` or the dataset’s true equivalent. When aggregating, group by this flag only if you want a binary split; otherwise pair it with higher-level vendor business type fields to avoid overgeneralizing from a single subtype indicator.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isSchoolDistrictLocalGovernment AS is_school_district_local_government
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isSchoolDistrictLocalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isSchoolDistrictLocalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__localGovernment__isSchoolDistrictLocalGovernment 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.