NicolasPrimeau commited on
Commit
68649dc
·
verified ·
1 Parent(s): cc1903c

Initial sample dataset + card

Browse files
Files changed (3) hide show
  1. README.md +96 -0
  2. procuredata_sample.csv +0 -0
  3. procuredata_sample.jsonl +0 -0
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - government
11
+ - procurement
12
+ - contracts
13
+ - tenders
14
+ - rag
15
+ - llm-training
16
+ pretty_name: ProcureData — Canadian Government Procurement (Sample)
17
+ configs:
18
+ - config_name: default
19
+ data_files:
20
+ - split: train
21
+ path: procuredata_sample.jsonl
22
+ ---
23
+
24
+ # ProcureData — Canadian Government Procurement (Sample)
25
+
26
+ **Sample of 4,978 Canadian federal and provincial procurement records.** Mix of
27
+ contracts, tenders, awards, ACAN notices, and standing offers. Last 3 months of
28
+ data from the full [ProcureData API](https://procuredata.ca).
29
+
30
+ > **Want the full dataset?** 2.1M+ records, cursor-paginated REST API, daily
31
+ > refresh, query by department / vendor / category / value range.
32
+ > **[Get an API key →](https://procuredata.ca/pricing)**
33
+
34
+ ## What's in here
35
+
36
+ | Field | Type | Description |
37
+ |---|---|---|
38
+ | `source_id` | string | Originating system (canadabuys, seao, ns, ab, yt) |
39
+ | `entity_type` | string | `tender`, `contract`, `award`, `standing_offer`, `disclosure` |
40
+ | `record_id` | string | Stable per-record identifier from the source |
41
+ | `municipality` | string | City/region if available |
42
+ | `event_date` | string (ISO date) | Award date for contracts, publish date for tenders |
43
+ | `category` | string | Procurement category (GSIN / UNSPSC / source-specific) |
44
+ | `department` | string | Awarding government department |
45
+ | `vendor` | string | Vendor as published |
46
+ | `vendor_normalized` | string | Cleaned vendor name (deduplicated across spellings) |
47
+ | `contract_value` | float | CAD amount, where disclosed |
48
+ | `contract_end_date` | string (ISO date) | Contract end where disclosed |
49
+ | `data` | object | Full raw record from the source (JSON) |
50
+
51
+ ## Composition (sample)
52
+
53
+ | entity_type | rows |
54
+ |---|---|
55
+ | tender | 2,700 |
56
+ | contract | 1,950 |
57
+ | award | 225 |
58
+ | standing_offer | 100 |
59
+ | disclosure | 3 |
60
+
61
+ ## Use cases
62
+
63
+ - **RAG / agents** — ground LLM responses in actual Canadian procurement data
64
+ - **Domain fine-tuning** — train models on procurement vocabulary, vendor naming, GSIN codes
65
+ - **Bid forecasting** — historical patterns of department spend
66
+ - **Vendor intelligence** — who wins what, at what value
67
+ - **Schema exploration** before committing to API integration
68
+
69
+ ## Limitations of this sample
70
+
71
+ - **Snapshot only** — frozen from 2026-02-25 to 2026-05-25. New tenders close daily; this sample will not reflect them.
72
+ - **5K rows** — full dataset is 2.1M+. Sample is enough to test schema, prompts, prototypes; not enough for production analytics.
73
+ - **No querying** — can't filter server-side, search by full-text, or paginate. Use the API for that.
74
+
75
+ ## Production access
76
+
77
+ If you need any of: fresh data, full coverage, search, filtering, or programmatic access, use the API:
78
+
79
+ - **Docs:** https://procuredata.ca/docs
80
+ - **Pricing:** https://procuredata.ca/pricing — free tier 25 req/day, Pro $49/mo 1K req/day
81
+ - **Quickstart:**
82
+ ```bash
83
+ curl "https://api.procuredata.ca/contract?q=cybersecurity&limit=10" \
84
+ -H "x-api-key: YOUR_KEY"
85
+ ```
86
+
87
+ ## License & attribution
88
+
89
+ Data sourced from public Canadian government procurement systems (CanadaBuys,
90
+ SEAO Quebec, Nova Scotia, Alberta, Yukon). All source data is under open
91
+ government licenses. Sample redistribution is permitted under CC-BY-4.0.
92
+
93
+ ## Contact
94
+
95
+ - API and enterprise inquiries: nicolas@builddata.ca
96
+ - Bug reports: https://github.com/NicolasPrimeau/Nimbus (or via the contact link on procuredata.ca)
procuredata_sample.csv ADDED
The diff for this file is too large to render. See raw diff
 
procuredata_sample.jsonl ADDED
The diff for this file is too large to render. See raw diff