/** * @copyright Sister Software * @license AGPL-3.0 * @author Teffen Ellis, et al. * * `state-ia-contractors`: Iowa Active Construction Contractor Registrations CSV consumer. * * Iowa Workforce Development publishes a public registry of active construction contractors. Each * row carries a business name, street address, city/state/zip, and contact info. * * The adapter consumes the CSV the operator pre-downloads via `fetch-state-sources.ts`. * * Output: one row per contractor with `venue` (business name) and address quad `(house_number, * street, locality, region, postcode)`. * * License: stamped `"Public Domain"` per Iowa state government open-data terms. */ import type { CorpusAdapter } from "@mailwoman/corpus/types"; /** * Registry id for this adapter. Stamped into every row it emits, so a corpus record can be traced back to the dataset * it came from. */ export declare const STATE_IA_CONTRACTORS_ADAPTER_ID = "state-ia-contractors"; /** * License carried by this source (Public Domain), attached to each row so downstream consumers inherit the terms rather * than having to look them up. */ export declare const STATE_IA_CONTRACTORS_DEFAULT_LICENSE = "Public Domain"; export declare function createStateIaContractorsAdapter(): CorpusAdapter; /** * The configured adapter instance registered with the corpus builder. */ export declare const stateIaContractorsAdapter: CorpusAdapter; //# sourceMappingURL=adapter.d.ts.map