Farmaanaa commited on
Commit
1c8f86a
·
verified ·
1 Parent(s): f5658cd

Upload datapackage.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. datapackage.json +58 -0
datapackage.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "gdp",
3
+ "title": "حساب‌های ملی و تولید ناخالص داخلی ایران — چندمرجعی (SCI + IMF)",
4
+ "description": "حساب‌های ملیِ ایران از دو منبع: مرکز آمار (SCI، فصلی+سالانه ۱۳۹۰–۱۴۰۳، پایهٔ ۱۴۰۰، ریالی — تولید و هزینه) و IMF (سالانه ۱۹۸۰–۲۰۲۹، دلاری + رشد + پیش‌بینی). ۹ سری سرخط / mart بلندفرمِ ۱۸ رشته‌فعالیت + اجزای هزینه. سطح ملی.",
5
+ "licenses": [{ "name": "public-official", "title": "آمار رسمی عمومی" }],
6
+ "sources": [
7
+ { "title": "مرکز آمار ایران — حساب‌های ملی فصلی", "path": "https://www.amar.org.ir/national-accounts" },
8
+ { "title": "صندوق بین‌المللی پول — World Economic Outlook", "path": "https://www.imf.org/en/Publications/WEO" }
9
+ ],
10
+ "created": "2026-07-25",
11
+ "resources": [
12
+ {
13
+ "name": "observations",
14
+ "path": "clean/observations.parquet",
15
+ "format": "parquet",
16
+ "profile": "data-resource",
17
+ "schema": {
18
+ "fields": [
19
+ { "name": "dataset_id", "type": "string" },
20
+ { "name": "indicator_id", "type": "string" },
21
+ { "name": "indicator_name_fa", "type": "string" },
22
+ { "name": "period", "type": "string" },
23
+ { "name": "freq", "type": "string", "constraints": { "enum": ["A","Q","M","D"] } },
24
+ { "name": "location_code", "type": "string" },
25
+ { "name": "location_name", "type": "string" },
26
+ { "name": "location_level", "type": "string" },
27
+ { "name": "value", "type": "number" },
28
+ { "name": "unit", "type": "string" },
29
+ { "name": "breakdown", "type": "string" },
30
+ { "name": "vintage", "type": "string" },
31
+ { "name": "source_id", "type": "string" }
32
+ ]
33
+ }
34
+ },
35
+ {
36
+ "name": "mart",
37
+ "path": "clean/gdp.parquet",
38
+ "format": "parquet",
39
+ "profile": "data-resource",
40
+ "schema": {
41
+ "fields": [
42
+ { "name": "source_id", "type": "string", "constraints": { "enum": ["sci","imf"] } },
43
+ { "name": "account", "type": "string", "constraints": { "enum": ["production","expenditure","headline"] } },
44
+ { "name": "price_basis", "type": "string", "constraints": { "enum": ["current","constant","growth","mixed"] } },
45
+ { "name": "period", "type": "string" },
46
+ { "name": "freq", "type": "string", "constraints": { "enum": ["A","Q"] } },
47
+ { "name": "year", "type": "integer" },
48
+ { "name": "item_code", "type": "string" },
49
+ { "name": "item_fa", "type": "string" },
50
+ { "name": "value", "type": "number" },
51
+ { "name": "unit", "type": "string" },
52
+ { "name": "base_year", "type": "integer" },
53
+ { "name": "scenario", "type": "string", "constraints": { "enum": ["actual","projection"] } }
54
+ ]
55
+ }
56
+ }
57
+ ]
58
+ }