Is School of Forestry
Boolean or coded flag indicating whether the vendor site is identified as a school of forestry in the IDV vendor site details. A value such as 0 typically means the condition is not met, while a positive or coded value indicates it is met.
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 vendor sites classified as schools of forestry
- Segment educational institution suppliers for reporting
- Validate vendor-type coding in FPDS extracts
Common Mistakes
- Assuming all truthy-looking values share the same meaning without checking observed codes
- Using the flag as a measure of award eligibility rather than vendor classification
Query Guidance
Use explicit comparisons in SQL, such as WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry = 1, or match the confirmed affirmative code in your dataset. If the field is stored as text or mixed codes, normalize values first and pair it with related educational-entity fields when available.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry AS is_school_of_forestry
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isSchoolOfForestry 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.