From 3138c531b1005031eaa95cc0f4b77830c830ba1e Mon Sep 17 00:00:00 2001 From: firstdata-dev Date: Sat, 21 Mar 2026 09:14:50 +0800 Subject: [PATCH 1/2] feat: add Argentina INDEC and Chile INE data sources --- .../argentina/argentina-indec.json | 50 +++++++++++++++++++ .../south-america/chile/chile-ine.json | 49 ++++++++++++++++++ 2 files changed, 99 insertions(+) create mode 100644 firstdata/sources/countries/south-america/argentina/argentina-indec.json create mode 100644 firstdata/sources/countries/south-america/chile/chile-ine.json diff --git a/firstdata/sources/countries/south-america/argentina/argentina-indec.json b/firstdata/sources/countries/south-america/argentina/argentina-indec.json new file mode 100644 index 0000000..11e9b30 --- /dev/null +++ b/firstdata/sources/countries/south-america/argentina/argentina-indec.json @@ -0,0 +1,50 @@ +{ + "id": "argentina-indec", + "name": { + "en": "National Institute of Statistics and Censuses (INDEC)", + "zh": "阿根廷国家统计与普查局" + }, + "description": { + "en": "Official statistical agency of Argentina providing demographic, economic, and social data", + "zh": "阿根廷官方统计机构,提供人口、经济和社会数据" + }, + "website": "https://www.indec.gob.ar", + "data_url": "https://www.indec.gob.ar/indec/web/Nivel3-Tema-3-35", + "api_url": "https://apis.datos.gob.ar/series/api/", + "authority_level": "government", + "country": "AR", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "trade", + "employment", + "social" + ], + "tags": [ + "statistics", + "argentina", + "south-america", + "government-data", + "census" + ], + "data_content": { + "en": [ + "National Census - population, housing, economic census", + "Consumer Price Index (IPC) and inflation statistics", + "Foreign trade - imports and exports by product and partner", + "Labour market - employment, unemployment, wages", + "National accounts - GDP, industrial production", + "Poverty and income distribution" + ], + "zh": [ + "国家普查 - 人口、住房、经济普查", + "消费者价格指数(IPC)和通胀统计", + "对外贸易 - 按产品和伙伴分类的进出口", + "劳动力市场 - 就业、失业、工资", + "国民账户 - GDP、工业生产", + "贫困和收入分配" + ] + } +} diff --git a/firstdata/sources/countries/south-america/chile/chile-ine.json b/firstdata/sources/countries/south-america/chile/chile-ine.json new file mode 100644 index 0000000..f38d9b2 --- /dev/null +++ b/firstdata/sources/countries/south-america/chile/chile-ine.json @@ -0,0 +1,49 @@ +{ + "id": "chile-ine", + "name": { + "en": "National Statistics Institute of Chile (INE)", + "zh": "智利国家统计局" + }, + "description": { + "en": "Official statistical agency of Chile providing demographic, economic, and social statistics", + "zh": "智利官方统计机构,提供人口、经济和社会统计数据" + }, + "website": "https://www.ine.gob.cl", + "data_url": "https://www.ine.gob.cl/estadisticas", + "api_url": "https://stat.ine.cl/Index.aspx", + "authority_level": "government", + "country": "CL", + "geographic_scope": "national", + "update_frequency": "monthly", + "domains": [ + "demographics", + "economics", + "employment", + "social", + "environment" + ], + "tags": [ + "statistics", + "chile", + "south-america", + "government-data" + ], + "data_content": { + "en": [ + "Population Census and demographic projections", + "Consumer Price Index (IPC) and inflation", + "Employment and labour force surveys", + "Economic activity indicators", + "Environmental statistics", + "Gender and social statistics" + ], + "zh": [ + "人口普查和人口预测", + "消费者价格指数(IPC)和通胀", + "就业和劳动力调查", + "经济活动指标", + "环境统计", + "性别和社会统计" + ] + } +} From 36e84a318be600e7bcf1d5b689798963e1ecfe27 Mon Sep 17 00:00:00 2001 From: firstdata-dev Date: Sat, 21 Mar 2026 09:16:27 +0800 Subject: [PATCH 2/2] fix: chile-ine api_url to null (was ASPX browser, not API) --- firstdata/sources/countries/south-america/chile/chile-ine.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firstdata/sources/countries/south-america/chile/chile-ine.json b/firstdata/sources/countries/south-america/chile/chile-ine.json index f38d9b2..1fe825d 100644 --- a/firstdata/sources/countries/south-america/chile/chile-ine.json +++ b/firstdata/sources/countries/south-america/chile/chile-ine.json @@ -10,7 +10,7 @@ }, "website": "https://www.ine.gob.cl", "data_url": "https://www.ine.gob.cl/estadisticas", - "api_url": "https://stat.ine.cl/Index.aspx", + "api_url": null, "authority_level": "government", "country": "CL", "geographic_scope": "national",