NicolasPrimeau commited on
Commit
b36b1aa
·
verified ·
1 Parent(s): 2b411ac

Initial sample dataset + card

Browse files
Files changed (3) hide show
  1. README.md +99 -0
  2. builddata_sample.csv +0 -0
  3. builddata_sample.jsonl +0 -0
README.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ - fr
6
+ size_categories:
7
+ - 1K<n<10K
8
+ tags:
9
+ - canada
10
+ - construction
11
+ - real-estate
12
+ - permits
13
+ - building-permits
14
+ - municipal
15
+ - rag
16
+ - llm-training
17
+ pretty_name: BuildData — Canadian Construction Records (Sample)
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: train
22
+ path: builddata_sample.jsonl
23
+ ---
24
+
25
+ # BuildData — Canadian Construction Records (Sample)
26
+
27
+ **Sample of 5,000 Canadian municipal construction records across 54 cities.**
28
+ Mix of building permits, business licences, development permits, planning
29
+ applications, and inspections. Last 3 months of data from the full
30
+ [BuildData API](https://builddata.ca).
31
+
32
+ > **Want the full dataset?** 8.6M+ records across 60 cities, normalized + geocoded,
33
+ > daily refresh, query by city / address / value / type / date.
34
+ > **[Get an API key →](https://builddata.ca/pricing)**
35
+
36
+ ## What's in here
37
+
38
+ | Field | Type | Description |
39
+ |---|---|---|
40
+ | `source_id` | string | Originating system (city's open-data portal) |
41
+ | `entity_type` | string | `permit`, `licence`, `development_permit`, `planning_application`, `inspection` |
42
+ | `record_id` | string | Stable per-record identifier from the source |
43
+ | `municipality` | string | City name |
44
+ | `event_date` | string (ISO date) | Issue date for permits/licences, application date for planning |
45
+ | `category` | string | Permit type / licence type / planning stage |
46
+ | `data` | object | Full raw record from the source (JSON) — addresses, values, descriptions, GIS data |
47
+
48
+ ## Composition (sample)
49
+
50
+ | entity_type | rows |
51
+ |---|---|
52
+ | permit | 2,500 |
53
+ | licence | 700 |
54
+ | development_permit | 700 |
55
+ | planning_application | 700 |
56
+ | inspection | 400 |
57
+
58
+ 54 unique municipalities represented. The full dataset spans 60 cities including
59
+ Toronto, Montréal, Vancouver, Calgary, Edmonton, Ottawa, Winnipeg, Québec City,
60
+ Halifax, Saint John, plus 50 more.
61
+
62
+ ## Use cases
63
+
64
+ - **RAG / agents** — ground LLM responses in real Canadian construction activity
65
+ - **Domain fine-tuning** — train models on construction vocabulary, NOC codes, GIS schemas
66
+ - **Real-estate intelligence** — track building permits as a leading indicator of property changes
67
+ - **Construction lead generation** — discover contractors, developers, suppliers active in a market
68
+ - **Insurance underwriting** — property age, renovation history, code compliance signals
69
+ - **Schema exploration** before committing to API integration
70
+
71
+ ## Limitations of this sample
72
+
73
+ - **Snapshot only** — frozen 2026-02-25 to 2026-05-25. New permits issued daily; this sample will not reflect them.
74
+ - **5K rows** — full dataset is 8.6M+. Sample is enough to test schema, prompts, prototypes; not enough for production analytics.
75
+ - **No querying** — can't filter by city, value range, address, or date. Use the API for that.
76
+ - **No geocoded coordinates surfaced** — the full API returns `latitude`/`longitude`; sample omits them to keep payload small (still inside `data` for some sources).
77
+
78
+ ## Production access
79
+
80
+ - **Docs:** https://builddata.ca/docs
81
+ - **Pricing:** https://builddata.ca/pricing — free tier 25 req/day, Pro $49/mo 1K req/day
82
+ - **Quickstart:**
83
+ ```bash
84
+ curl "https://api.builddata.ca/permit?municipality=Toronto&limit=10" \
85
+ -H "x-api-key: YOUR_KEY"
86
+ ```
87
+ - **Export:** `https://api.builddata.ca/permit/export?format=csv&limit=1000` (no key, JSON/CSV/XLSX)
88
+
89
+ ## License & attribution
90
+
91
+ Data sourced from Canadian municipal open-data portals (Toronto CKAN, Vancouver
92
+ Opendatasoft, Calgary Socrata, Edmonton Socrata, etc.). All source data is
93
+ under open government / municipal licences. Sample redistribution is permitted
94
+ under CC-BY-4.0.
95
+
96
+ ## Contact
97
+
98
+ - API and enterprise inquiries: nicolas@builddata.ca
99
+ - Bug reports: https://github.com/NicolasPrimeau/Nimbus (or via the contact link on builddata.ca)
builddata_sample.csv ADDED
The diff for this file is too large to render. See raw diff
 
builddata_sample.jsonl ADDED
The diff for this file is too large to render. See raw diff