From 3efd0b8e96177cdb199a866e348f0740360cb10a Mon Sep 17 00:00:00 2001 From: firstdata-dev Date: Mon, 16 Mar 2026 10:04:54 +0800 Subject: [PATCH 1/2] feat: add netherlands-cbs and sweden-scb data sources --- .../europe/netherlands/netherlands-cbs.json | 25 +++++++++++++++++++ .../countries/europe/sweden/sweden-scb.json | 25 +++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 firstdata/sources/countries/europe/netherlands/netherlands-cbs.json create mode 100644 firstdata/sources/countries/europe/sweden/sweden-scb.json diff --git a/firstdata/sources/countries/europe/netherlands/netherlands-cbs.json b/firstdata/sources/countries/europe/netherlands/netherlands-cbs.json new file mode 100644 index 0000000..cf1d702 --- /dev/null +++ b/firstdata/sources/countries/europe/netherlands/netherlands-cbs.json @@ -0,0 +1,25 @@ +{ + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "description": { + "en": "The Dutch national statistical office providing comprehensive statistics on population, economy, trade, and society.", + "zh": "荷兰国家统计机构,提供人口、经济、贸易和社会的综合统计数据。" + }, + "website": "https://www.cbs.nl", + "data_url": "https://opendata.cbs.nl/statline/", + "api_url": "https://odata4.cbs.nl/CBS/Datasets", + "data_content": { + "en": ["GDP and national accounts", "Population demographics", "International trade", "Labor market statistics", "Consumer price index", "Housing and construction", "Environment and energy"], + "zh": ["GDP与国民账户", "人口统计", "国际贸易", "劳动力市场", "消费者价格指数", "住房与建设", "环境与能源"] + }, + "authority_level": "government", + "update_frequency": "monthly", + "coverage": "national", + "country_code": "NL", + "domains": ["economics", "demographics", "trade", "employment", "environment", "housing", "energy"], + "tags": ["netherlands", "statistics", "cbs", "odata", "gdp"], + "license": "open" +} diff --git a/firstdata/sources/countries/europe/sweden/sweden-scb.json b/firstdata/sources/countries/europe/sweden/sweden-scb.json new file mode 100644 index 0000000..79897bc --- /dev/null +++ b/firstdata/sources/countries/europe/sweden/sweden-scb.json @@ -0,0 +1,25 @@ +{ + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "description": { + "en": "Sweden's central government authority for official statistics covering population, economy, labor market, and living conditions.", + "zh": "瑞典中央统计局,提供人口、经济、劳动力市场和生活条件的官方统计数据。" + }, + "website": "https://www.scb.se", + "data_url": "https://www.statistikdatabasen.scb.se", + "api_url": "https://api.scb.se/OV0104/v1/doris/en", + "data_content": { + "en": ["Population statistics", "GDP and economic indicators", "Labor force surveys", "Foreign trade", "Consumer price index", "Education statistics", "Environmental accounts"], + "zh": ["人口统计", "GDP与经济指标", "劳动力调查", "对外贸易", "消费者价格指数", "教育统计", "环境账户"] + }, + "authority_level": "government", + "update_frequency": "monthly", + "coverage": "national", + "country_code": "SE", + "domains": ["economics", "demographics", "trade", "employment", "education", "environment", "energy"], + "tags": ["sweden", "statistics", "scb", "gdp", "population"], + "license": "open" +} From 00351f3f8ac76ff529bca89f97fd1dd6b4276cb6 Mon Sep 17 00:00:00 2001 From: firstdata-dev Date: Mon, 16 Mar 2026 10:05:34 +0800 Subject: [PATCH 2/2] feat: add 4 new data sources from Langfuse Insight pipeline (2026-03-16) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New sources discovered via MCP user query analysis: - japan-esri: Japan Cabinet Office Economic and Social Research Institute - china-sac: Securities Association of China - china-csdc: China Securities Depository and Clearing Corporation - cninfo: CNInfo (巨潮资讯网, CSRC-designated disclosure platform) Total sources: 256 → 260 --- assets/badges/progress.json | 2 +- assets/badges/sources-count.json | 2 +- firstdata/indexes/all-sources.json | 352 +++++++++++++++++- firstdata/indexes/by-authority.json | 82 +++- firstdata/indexes/by-domain.json | 262 ++++++++++++- firstdata/indexes/by-region.json | 56 ++- firstdata/indexes/statistics.json | 42 +-- .../china/finance/securities/china-csdc.json | 56 +++ .../china/finance/securities/china-sac.json | 56 +++ .../china/finance/securities/cninfo.json | 58 +++ .../sources/japan/economics/japan-esri.json | 56 +++ 11 files changed, 991 insertions(+), 33 deletions(-) create mode 100644 firstdata/sources/china/finance/securities/china-csdc.json create mode 100644 firstdata/sources/china/finance/securities/china-sac.json create mode 100644 firstdata/sources/china/finance/securities/cninfo.json create mode 100644 firstdata/sources/japan/economics/japan-esri.json diff --git a/assets/badges/progress.json b/assets/badges/progress.json index fc99ef4..79ca73c 100644 --- a/assets/badges/progress.json +++ b/assets/badges/progress.json @@ -1,6 +1,6 @@ { "schemaVersion": 1, "label": "progress", - "message": "25%", + "message": "26%", "color": "yellow" } diff --git a/assets/badges/sources-count.json b/assets/badges/sources-count.json index 888734e..7d0154f 100644 --- a/assets/badges/sources-count.json +++ b/assets/badges/sources-count.json @@ -1,6 +1,6 @@ { "schemaVersion": 1, "label": "sources", - "message": "254/1000+", + "message": "260/1000+", "color": "blue" } diff --git a/firstdata/indexes/all-sources.json b/firstdata/indexes/all-sources.json index 7a61c4e..f01bc54 100644 --- a/firstdata/indexes/all-sources.json +++ b/firstdata/indexes/all-sources.json @@ -1,7 +1,7 @@ { "metadata": { - "generated_at": "2026-03-15T02:07:17.077611+00:00", - "total_sources": 254, + "generated_at": "2026-03-16T02:05:28.680786+00:00", + "total_sources": 260, "version": "2.0", "schema_version": "v2.0.0" }, @@ -3512,6 +3512,122 @@ "has_api": false, "file_path": "china/finance/forex/china-safe.json" }, + { + "id": "china-csdc", + "name": { + "en": "China Securities Depository and Clearing Corporation Limited", + "zh": "中国证券登记结算有限责任公司", + "native": "中国证券登记结算有限责任公司" + }, + "description": { + "en": "China Securities Depository and Clearing Corporation Limited (CSDC, also known as ChinaClear) is the sole securities depository and clearing institution in China, established with the approval of the State Council. It provides centralized securities registration, depository, settlement, and clearing services for the Shanghai and Shenzhen stock exchanges, including equity registration, rights issue payments, and tender offer transfers.", + "zh": "中国证券登记结算有限责任公司(中国结算)是经国务院批准设立的中国唯一的证券登记结算机构,为上海和深圳证券交易所提供集中统一的证券登记、存管、结算和清算服务,涵盖股权登记、配股缴款、要约收购过户等业务。" + }, + "website": "https://www.chinaclear.cn", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "securities" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "authority_level": "market", + "tags": [ + "china", + "securities-depository", + "clearing", + "settlement", + "ChinaClear", + "investor-accounts", + "equity-registration", + "中国结算", + "证券登记", + "结算", + "清算", + "股权登记", + "投资者账户" + ], + "data_content": { + "en": [ + "Statistical Monthly Report - Securities accounts, custody, clearing, and settlement statistics", + "Investor Statistics - Total number of investors, new account openings, and investor structure", + "Securities Custody - Total custody value and volume by security type", + "Clearing and Settlement - Transaction settlement volumes and values", + "Equity Registration - Share registration and ownership transfer records", + "Cross-border Services - Stock Connect (Shanghai-Hong Kong, Shenzhen-Hong Kong) settlement data" + ], + "zh": [ + "统计月报 - 证券账户、托管、清算和结算统计数据", + "投资者统计 - 投资者总数、新开户数和投资者结构", + "证券托管 - 按证券类型统计的托管市值和数量", + "清算结算 - 交易结算量和金额", + "股权登记 - 股权登记和所有权转移记录", + "跨境服务 - 沪港通、深港通结算数据" + ] + }, + "has_api": false, + "file_path": "china/finance/securities/china-csdc.json" + }, + { + "id": "china-sac", + "name": { + "en": "Securities Association of China", + "zh": "中国证券业协会", + "native": "中国证券业协会" + }, + "description": { + "en": "The Securities Association of China (SAC) is a self-regulatory organization for the securities industry under the guidance of the China Securities Regulatory Commission (CSRC). It publishes industry statistics, securities firm rankings, practitioner registration data, and regulatory announcements including broker filings, tender offers, and major asset restructurings.", + "zh": "中国证券业协会(SAC)是在中国证监会指导下的证券行业自律组织。发布行业统计数据、证券公司排名、从业人员注册信息及监管公告,包括券商备案、要约收购、重大资产重组等信息。" + }, + "website": "https://www.sac.net.cn", + "data_url": "https://www.sac.net.cn/hysj/", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "securities" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "authority_level": "government", + "tags": [ + "china", + "securities", + "self-regulatory", + "broker", + "tender-offer", + "asset-restructuring", + "practitioner-registration", + "中国证券业协会", + "券商", + "证券公司", + "从业人员", + "要约收购", + "重大资产重组" + ], + "data_content": { + "en": [ + "Securities Industry Statistics - Aggregate revenue, net income, and asset data of securities firms", + "Securities Firm Rankings - Annual rankings by total assets, revenue, and brokerage volume", + "Practitioner Registration - Registered securities professionals database", + "Regulatory Announcements - Broker filings, tender offers, major asset restructurings", + "Industry Reports - Annual and special reports on securities industry development", + "Self-Regulatory Rules - Industry standards and compliance guidelines" + ], + "zh": [ + "证券行业统计 - 证券公司营收、净利润和资产汇总数据", + "证券公司排名 - 按总资产、营收和经纪业务量的年度排名", + "从业人员注册 - 证券从业人员注册数据库", + "监管公告 - 券商备案、要约收购、重大资产重组", + "行业报告 - 证券行业发展年度报告和专题报告", + "自律规则 - 行业标准和合规指南" + ] + }, + "has_api": false, + "file_path": "china/finance/securities/china-sac.json" + }, { "id": "china-sse", "name": { @@ -3578,6 +3694,66 @@ "has_api": false, "file_path": "china/finance/securities/china-sse.json" }, + { + "id": "cninfo", + "name": { + "en": "CNInfo (Giant Tide Information Network)", + "zh": "巨潮资讯网", + "native": "巨潮资讯网" + }, + "description": { + "en": "CNInfo (cninfo.com.cn) is China's official securities information disclosure platform designated by the China Securities Regulatory Commission (CSRC). Operated by Shenzhen Securities Information Co., Ltd., it serves as the authoritative source for all listed company announcements across the Shanghai and Shenzhen stock exchanges, covering IPO prospectuses, annual and interim reports, material event disclosures, and regulatory filings.", + "zh": "巨潮资讯网(cninfo.com.cn)是中国证监会指定的信息披露平台,由深圳证券信息有限公司运营,是沪深两市所有上市公司公告的权威来源,涵盖招股说明书、年报中报、重大事项披露及监管文件。" + }, + "website": "http://www.cninfo.com.cn", + "data_url": "http://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/notice", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "securities" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "authority_level": "government", + "tags": [ + "china", + "disclosure", + "listed-companies", + "announcements", + "CSRC-designated", + "prospectus", + "annual-report", + "巨潮资讯网", + "信息披露", + "上市公司公告", + "招股说明书", + "年报", + "中报", + "深交所", + "上交所" + ], + "data_content": { + "en": [ + "Listed Company Announcements - Full text of all announcements from Shanghai and Shenzhen exchanges", + "IPO Prospectuses - Initial public offering documents and listing filings", + "Periodic Reports - Annual reports, semi-annual reports, and quarterly reports", + "Material Events - Major asset restructuring, related party transactions, equity changes", + "Board Resolutions - Board and shareholder meeting announcements and resolutions", + "Regulatory Filings - Compliance reports, inquiry letters, and regulatory actions" + ], + "zh": [ + "上市公司公告 - 沪深两市所有公告全文", + "招股说明书 - 首次公开发行文件和上市申报材料", + "定期报告 - 年报、半年报和季报", + "重大事项 - 重大资产重组、关联交易、股权变动", + "董事会决议 - 董事会和股东大会公告及决议", + "监管文件 - 合规报告、问询函和监管措施" + ] + }, + "has_api": false, + "file_path": "china/finance/securities/cninfo.json" + }, { "id": "china-csrc", "name": { @@ -7841,6 +8017,63 @@ "has_api": true, "file_path": "countries/europe/italy/italy-istat.json" }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "description": { + "en": "The Dutch national statistical office providing comprehensive statistics on population, economy, trade, and society.", + "zh": "荷兰国家统计机构,提供人口、经济、贸易和社会的综合统计数据。" + }, + "website": "https://www.cbs.nl", + "data_url": "https://opendata.cbs.nl/statline/", + "api_url": "https://odata4.cbs.nl/CBS/Datasets", + "data_content": { + "en": [ + "GDP and national accounts", + "Population demographics", + "International trade", + "Labor market statistics", + "Consumer price index", + "Housing and construction", + "Environment and energy" + ], + "zh": [ + "GDP与国民账户", + "人口统计", + "国际贸易", + "劳动力市场", + "消费者价格指数", + "住房与建设", + "环境与能源" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "coverage": "national", + "country_code": "NL", + "domains": [ + "economics", + "demographics", + "trade", + "employment", + "environment", + "housing", + "energy" + ], + "tags": [ + "netherlands", + "statistics", + "cbs", + "odata", + "gdp" + ], + "license": "open", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json" + }, { "id": "spain-ine", "name": { @@ -7890,6 +8123,63 @@ "has_api": true, "file_path": "countries/europe/spain/spain-ine.json" }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "description": { + "en": "Sweden's central government authority for official statistics covering population, economy, labor market, and living conditions.", + "zh": "瑞典中央统计局,提供人口、经济、劳动力市场和生活条件的官方统计数据。" + }, + "website": "https://www.scb.se", + "data_url": "https://www.statistikdatabasen.scb.se", + "api_url": "https://api.scb.se/OV0104/v1/doris/en", + "data_content": { + "en": [ + "Population statistics", + "GDP and economic indicators", + "Labor force surveys", + "Foreign trade", + "Consumer price index", + "Education statistics", + "Environmental accounts" + ], + "zh": [ + "人口统计", + "GDP与经济指标", + "劳动力调查", + "对外贸易", + "消费者价格指数", + "教育统计", + "环境账户" + ] + }, + "authority_level": "government", + "update_frequency": "monthly", + "coverage": "national", + "country_code": "SE", + "domains": [ + "economics", + "demographics", + "trade", + "employment", + "education", + "environment", + "energy" + ], + "tags": [ + "sweden", + "statistics", + "scb", + "gdp", + "population" + ], + "license": "open", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json" + }, { "id": "turkey-tuik", "name": { @@ -14913,6 +15203,64 @@ "has_api": true, "file_path": "international/transportation/itf-transport.json" }, + { + "id": "japan-esri", + "name": { + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所", + "native": "内閣府経済社会総合研究所" + }, + "description": { + "en": "The Economic and Social Research Institute (ESRI) is an organ of the Cabinet Office of Japan responsible for compiling GDP and national accounts, economic assessment, and policy research. It publishes quarterly GDP estimates, System of National Accounts (SNA), Monthly Economic Report, and various economic indicators that serve as the backbone of Japan's macroeconomic statistics.", + "zh": "经济社会综合研究所(ESRI)是日本内阁府下属机构,负责编制GDP和国民经济核算、经济形势评估及政策研究。发布季度GDP估算、国民经济核算体系(SNA)、月度经济报告及各类经济指标,是日本宏观经济统计的核心来源。" + }, + "website": "https://www.esri.cao.go.jp", + "data_url": "https://www.esri.cao.go.jp/en/sna/menu.html", + "api_url": null, + "country": "JP", + "domains": [ + "economics", + "statistics" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "authority_level": "government", + "tags": [ + "japan", + "gdp", + "national-accounts", + "SNA", + "macroeconomics", + "economic-indicators", + "cabinet-office", + "日本", + "内閣府", + "経済社会総合研究所", + "国民経済計算", + "GDP", + "国内总产值" + ], + "data_content": { + "en": [ + "Quarterly Estimates of GDP - Preliminary and revised GDP figures with expenditure and production approaches", + "Annual Report on National Accounts (SNA) - Comprehensive national accounts including income, capital, and financial accounts", + "Monthly Economic Report - Cabinet Office assessment of current economic conditions", + "Business Condition Indices - Composite and diffusion indices of business cycle indicators", + "Consumer Confidence Survey - Monthly consumer sentiment and spending outlook", + "Corporate Behavior Survey - Annual survey of corporate investment and business plans" + ], + "zh": [ + "季度GDP估算 - 初步和修正GDP数据,含支出法和生产法", + "国民经济核算年报(SNA)- 包括收入、资本和金融账户的综合国民账户", + "月度经济报告 - 内阁府对当前经济形势的评估", + "景气指标 - 综合指数和扩散指数", + "消费者信心调查 - 月度消费者情绪和支出展望", + "企业行为调查 - 年度企业投资和经营计划调查" + ] + }, + "has_api": false, + "file_path": "japan/economics/japan-esri.json" + }, { "id": "japan-customs", "name": { diff --git a/firstdata/indexes/by-authority.json b/firstdata/indexes/by-authority.json index 2e25b2e..603a0da 100644 --- a/firstdata/indexes/by-authority.json +++ b/firstdata/indexes/by-authority.json @@ -1,12 +1,12 @@ { "metadata": { - "generated_at": "2026-03-15T02:07:17.077611+00:00", - "total_sources": 254, + "generated_at": "2026-03-16T02:05:28.680786+00:00", + "total_sources": 260, "authority_counts": { "research": 33, "international": 65, - "government": 124, - "market": 16, + "government": 129, + "market": 17, "commercial": 15, "other": 1 }, @@ -1585,6 +1585,32 @@ "file_path": "china/finance/forex/china-safe.json", "geographic_scope": "national" }, + { + "id": "china-sac", + "name": { + "en": "Securities Association of China", + "zh": "中国证券业协会", + "native": "中国证券业协会" + }, + "authority_level": "government", + "data_url": "https://www.sac.net.cn/hysj/", + "has_api": false, + "file_path": "china/finance/securities/china-sac.json", + "geographic_scope": "national" + }, + { + "id": "cninfo", + "name": { + "en": "CNInfo (Giant Tide Information Network)", + "zh": "巨潮资讯网", + "native": "巨潮资讯网" + }, + "authority_level": "government", + "data_url": "http://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/notice", + "has_api": false, + "file_path": "china/finance/securities/cninfo.json", + "geographic_scope": "national" + }, { "id": "china-csrc", "name": { @@ -2211,6 +2237,17 @@ "has_api": true, "file_path": "countries/europe/italy/italy-istat.json" }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json" + }, { "id": "spain-ine", "name": { @@ -2222,6 +2259,17 @@ "has_api": true, "file_path": "countries/europe/spain/spain-ine.json" }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json" + }, { "id": "turkey-tuik", "name": { @@ -2628,6 +2676,19 @@ "file_path": "international/trade/bea-international-trade.json", "geographic_scope": "national" }, + { + "id": "japan-esri", + "name": { + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所", + "native": "内閣府経済社会総合研究所" + }, + "authority_level": "government", + "data_url": "https://www.esri.cao.go.jp/en/sna/menu.html", + "has_api": false, + "file_path": "japan/economics/japan-esri.json", + "geographic_scope": "national" + }, { "id": "japan-customs", "name": { @@ -2730,6 +2791,19 @@ } ], "market": [ + { + "id": "china-csdc", + "name": { + "en": "China Securities Depository and Clearing Corporation Limited", + "zh": "中国证券登记结算有限责任公司", + "native": "中国证券登记结算有限责任公司" + }, + "authority_level": "market", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", + "has_api": false, + "file_path": "china/finance/securities/china-csdc.json", + "geographic_scope": "national" + }, { "id": "china-sse", "name": { diff --git a/firstdata/indexes/by-domain.json b/firstdata/indexes/by-domain.json index 780c2fe..99f0b10 100644 --- a/firstdata/indexes/by-domain.json +++ b/firstdata/indexes/by-domain.json @@ -1,8 +1,8 @@ { "metadata": { - "generated_at": "2026-03-15T02:07:17.077611+00:00", + "generated_at": "2026-03-16T02:05:28.680786+00:00", "total_domains": 690, - "total_sources": 254, + "total_sources": 260, "version": "2.0" }, "domains": { @@ -4081,6 +4081,17 @@ "has_api": true, "file_path": "countries/europe/italy/italy-istat.json" }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json" + }, { "id": "spain-ine", "name": { @@ -4092,6 +4103,17 @@ "has_api": true, "file_path": "countries/europe/spain/spain-ine.json" }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json" + }, { "id": "turkey-tuik", "name": { @@ -5777,6 +5799,17 @@ "has_api": true, "file_path": "countries/europe/italy/italy-istat.json" }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json" + }, { "id": "spain-ine", "name": { @@ -5788,6 +5821,17 @@ "has_api": true, "file_path": "countries/europe/spain/spain-ine.json" }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json" + }, { "id": "turkey-tuik", "name": { @@ -6231,6 +6275,19 @@ "file_path": "international/trade/wto.json", "geographic_scope": "global" }, + { + "id": "japan-esri", + "name": { + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所", + "native": "内閣府経済社会総合研究所" + }, + "authority_level": "government", + "data_url": "https://www.esri.cao.go.jp/en/sna/menu.html", + "has_api": false, + "file_path": "japan/economics/japan-esri.json", + "geographic_scope": "national" + }, { "id": "japan-customs", "name": { @@ -6494,6 +6551,17 @@ "file_path": "countries/europe/germany/germany-destatis.json", "geographic_scope": "national" }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json" + }, { "id": "uk-data-gov", "name": { @@ -7124,6 +7192,17 @@ "has_api": true, "file_path": "countries/europe/italy/italy-istat.json" }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json" + }, { "id": "spain-ine", "name": { @@ -7135,6 +7214,17 @@ "has_api": true, "file_path": "countries/europe/spain/spain-ine.json" }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json" + }, { "id": "turkey-tuik", "name": { @@ -7235,6 +7325,28 @@ "file_path": "china/economy/macro/china-ndrc-computing.json", "geographic_scope": "national" }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json" + }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json" + }, { "id": "usa-eia", "name": { @@ -7735,6 +7847,28 @@ "file_path": "countries/europe/germany/germany-destatis.json", "geographic_scope": "national" }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json" + }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json" + }, { "id": "uk-data-gov", "name": { @@ -8616,6 +8750,32 @@ "file_path": "china/finance/forex/china-safe.json", "geographic_scope": "national" }, + { + "id": "china-csdc", + "name": { + "en": "China Securities Depository and Clearing Corporation Limited", + "zh": "中国证券登记结算有限责任公司", + "native": "中国证券登记结算有限责任公司" + }, + "authority_level": "market", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", + "has_api": false, + "file_path": "china/finance/securities/china-csdc.json", + "geographic_scope": "national" + }, + { + "id": "china-sac", + "name": { + "en": "Securities Association of China", + "zh": "中国证券业协会", + "native": "中国证券业协会" + }, + "authority_level": "government", + "data_url": "https://www.sac.net.cn/hysj/", + "has_api": false, + "file_path": "china/finance/securities/china-sac.json", + "geographic_scope": "national" + }, { "id": "china-sse", "name": { @@ -8629,6 +8789,19 @@ "file_path": "china/finance/securities/china-sse.json", "geographic_scope": "national" }, + { + "id": "cninfo", + "name": { + "en": "CNInfo (Giant Tide Information Network)", + "zh": "巨潮资讯网", + "native": "巨潮资讯网" + }, + "authority_level": "government", + "data_url": "http://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/notice", + "has_api": false, + "file_path": "china/finance/securities/cninfo.json", + "geographic_scope": "national" + }, { "id": "china-csrc", "name": { @@ -11302,6 +11475,17 @@ "file_path": "countries/europe/germany/germany-destatis.json", "geographic_scope": "national" }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json" + }, { "id": "canada-statcan", "name": { @@ -17003,6 +17187,32 @@ } ], "securities": [ + { + "id": "china-csdc", + "name": { + "en": "China Securities Depository and Clearing Corporation Limited", + "zh": "中国证券登记结算有限责任公司", + "native": "中国证券登记结算有限责任公司" + }, + "authority_level": "market", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", + "has_api": false, + "file_path": "china/finance/securities/china-csdc.json", + "geographic_scope": "national" + }, + { + "id": "china-sac", + "name": { + "en": "Securities Association of China", + "zh": "中国证券业协会", + "native": "中国证券业协会" + }, + "authority_level": "government", + "data_url": "https://www.sac.net.cn/hysj/", + "has_api": false, + "file_path": "china/finance/securities/china-sac.json", + "geographic_scope": "national" + }, { "id": "china-sse", "name": { @@ -17016,6 +17226,19 @@ "file_path": "china/finance/securities/china-sse.json", "geographic_scope": "national" }, + { + "id": "cninfo", + "name": { + "en": "CNInfo (Giant Tide Information Network)", + "zh": "巨潮资讯网", + "native": "巨潮资讯网" + }, + "authority_level": "government", + "data_url": "http://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/notice", + "has_api": false, + "file_path": "china/finance/securities/cninfo.json", + "geographic_scope": "national" + }, { "id": "china-csrc", "name": { @@ -18034,6 +18257,19 @@ "file_path": "international/transportation/itf-transport.json", "geographic_scope": "global" }, + { + "id": "japan-esri", + "name": { + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所", + "native": "内閣府経済社会総合研究所" + }, + "authority_level": "government", + "data_url": "https://www.esri.cao.go.jp/en/sna/menu.html", + "has_api": false, + "file_path": "japan/economics/japan-esri.json", + "geographic_scope": "national" + }, { "id": "tennis-sackmann", "name": { @@ -18973,6 +19209,28 @@ "file_path": "countries/europe/germany/germany-destatis.json", "geographic_scope": "national" }, + { + "id": "netherlands-cbs", + "name": { + "en": "Statistics Netherlands (CBS)", + "zh": "荷兰统计局" + }, + "authority_level": "government", + "data_url": "https://opendata.cbs.nl/statline/", + "has_api": true, + "file_path": "countries/europe/netherlands/netherlands-cbs.json" + }, + { + "id": "sweden-scb", + "name": { + "en": "Statistics Sweden (SCB)", + "zh": "瑞典统计局" + }, + "authority_level": "government", + "data_url": "https://www.statistikdatabasen.scb.se", + "has_api": true, + "file_path": "countries/europe/sweden/sweden-scb.json" + }, { "id": "turkey-tuik", "name": { diff --git a/firstdata/indexes/by-region.json b/firstdata/indexes/by-region.json index bd9d5f3..b07a3fe 100644 --- a/firstdata/indexes/by-region.json +++ b/firstdata/indexes/by-region.json @@ -1,8 +1,8 @@ { "metadata": { - "generated_at": "2026-03-15T02:07:17.077611+00:00", + "generated_at": "2026-03-16T02:05:28.680786+00:00", "total_regions": 25, - "total_sources": 254, + "total_sources": 260, "version": "2.0" }, "regions": { @@ -463,6 +463,32 @@ "file_path": "china/finance/forex/china-safe.json", "geographic_scope": "national" }, + { + "id": "china-csdc", + "name": { + "en": "China Securities Depository and Clearing Corporation Limited", + "zh": "中国证券登记结算有限责任公司", + "native": "中国证券登记结算有限责任公司" + }, + "authority_level": "market", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", + "has_api": false, + "file_path": "china/finance/securities/china-csdc.json", + "geographic_scope": "national" + }, + { + "id": "china-sac", + "name": { + "en": "Securities Association of China", + "zh": "中国证券业协会", + "native": "中国证券业协会" + }, + "authority_level": "government", + "data_url": "https://www.sac.net.cn/hysj/", + "has_api": false, + "file_path": "china/finance/securities/china-sac.json", + "geographic_scope": "national" + }, { "id": "china-sse", "name": { @@ -476,6 +502,19 @@ "file_path": "china/finance/securities/china-sse.json", "geographic_scope": "national" }, + { + "id": "cninfo", + "name": { + "en": "CNInfo (Giant Tide Information Network)", + "zh": "巨潮资讯网", + "native": "巨潮资讯网" + }, + "authority_level": "government", + "data_url": "http://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/notice", + "has_api": false, + "file_path": "china/finance/securities/cninfo.json", + "geographic_scope": "national" + }, { "id": "china-csrc", "name": { @@ -1189,6 +1228,19 @@ "file_path": "countries/asia/japan/japan-estat.json", "geographic_scope": "national" }, + { + "id": "japan-esri", + "name": { + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所", + "native": "内閣府経済社会総合研究所" + }, + "authority_level": "government", + "data_url": "https://www.esri.cao.go.jp/en/sna/menu.html", + "has_api": false, + "file_path": "japan/economics/japan-esri.json", + "geographic_scope": "national" + }, { "id": "japan-customs", "name": { diff --git a/firstdata/indexes/statistics.json b/firstdata/indexes/statistics.json index dfe3f79..17b4deb 100644 --- a/firstdata/indexes/statistics.json +++ b/firstdata/indexes/statistics.json @@ -1,61 +1,61 @@ { "metadata": { - "generated_at": "2026-03-15T02:07:17.077611+00:00", + "generated_at": "2026-03-16T02:05:28.680786+00:00", "version": "2.0" }, "overview": { - "total_sources": 254, - "sources_with_api": 119, - "last_updated": "2026-03-15" + "total_sources": 260, + "sources_with_api": 121, + "last_updated": "2026-03-16" }, "by_authority_level": { "research": 33, "international": 65, - "government": 124, - "market": 16, + "government": 129, + "market": 17, "commercial": 15, "other": 1 }, "by_geographic_scope": { "global": 82, - "national": 137, + "national": 141, "regional": 24 }, "by_update_frequency": { "irregular": 47, - "daily": 48, + "daily": 49, "weekly": 9, - "quarterly": 26, - "monthly": 66, + "quarterly": 27, + "monthly": 70, "annual": 48, "real-time": 10 }, "by_domain": { - "economics": 85, - "trade": 46, - "demographics": 42, - "finance": 40, - "environment": 34, + "economics": 88, + "trade": 48, + "demographics": 44, + "finance": 43, + "environment": 36, "health": 32, - "education": 31, + "education": 32, "agriculture": 29, "social": 24, - "employment": 17, + "employment": 19, + "energy": 17, "infrastructure": 15, - "energy": 15, "technology": 15, "climate": 14, "industry": 14, "development": 13, "manufacturing": 12, + "housing": 11, "transportation": 11, - "housing": 10, - "statistics": 9, + "securities": 11, + "statistics": 10, "banking": 9, "labor": 8, "population": 8, "prices": 8, - "securities": 8, "genomics": 7, "machine learning": 7, "monetary policy": 7, diff --git a/firstdata/sources/china/finance/securities/china-csdc.json b/firstdata/sources/china/finance/securities/china-csdc.json new file mode 100644 index 0000000..1397e1a --- /dev/null +++ b/firstdata/sources/china/finance/securities/china-csdc.json @@ -0,0 +1,56 @@ +{ + "id": "china-csdc", + "name": { + "en": "China Securities Depository and Clearing Corporation Limited", + "zh": "中国证券登记结算有限责任公司", + "native": "中国证券登记结算有限责任公司" + }, + "description": { + "en": "China Securities Depository and Clearing Corporation Limited (CSDC, also known as ChinaClear) is the sole securities depository and clearing institution in China, established with the approval of the State Council. It provides centralized securities registration, depository, settlement, and clearing services for the Shanghai and Shenzhen stock exchanges, including equity registration, rights issue payments, and tender offer transfers.", + "zh": "中国证券登记结算有限责任公司(中国结算)是经国务院批准设立的中国唯一的证券登记结算机构,为上海和深圳证券交易所提供集中统一的证券登记、存管、结算和清算服务,涵盖股权登记、配股缴款、要约收购过户等业务。" + }, + "website": "https://www.chinaclear.cn", + "data_url": "https://www.chinaclear.cn/zdjs/tjyb/center_tjbg.shtml", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "securities" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "authority_level": "market", + "tags": [ + "china", + "securities-depository", + "clearing", + "settlement", + "ChinaClear", + "investor-accounts", + "equity-registration", + "中国结算", + "证券登记", + "结算", + "清算", + "股权登记", + "投资者账户" + ], + "data_content": { + "en": [ + "Statistical Monthly Report - Securities accounts, custody, clearing, and settlement statistics", + "Investor Statistics - Total number of investors, new account openings, and investor structure", + "Securities Custody - Total custody value and volume by security type", + "Clearing and Settlement - Transaction settlement volumes and values", + "Equity Registration - Share registration and ownership transfer records", + "Cross-border Services - Stock Connect (Shanghai-Hong Kong, Shenzhen-Hong Kong) settlement data" + ], + "zh": [ + "统计月报 - 证券账户、托管、清算和结算统计数据", + "投资者统计 - 投资者总数、新开户数和投资者结构", + "证券托管 - 按证券类型统计的托管市值和数量", + "清算结算 - 交易结算量和金额", + "股权登记 - 股权登记和所有权转移记录", + "跨境服务 - 沪港通、深港通结算数据" + ] + } +} diff --git a/firstdata/sources/china/finance/securities/china-sac.json b/firstdata/sources/china/finance/securities/china-sac.json new file mode 100644 index 0000000..c3cccef --- /dev/null +++ b/firstdata/sources/china/finance/securities/china-sac.json @@ -0,0 +1,56 @@ +{ + "id": "china-sac", + "name": { + "en": "Securities Association of China", + "zh": "中国证券业协会", + "native": "中国证券业协会" + }, + "description": { + "en": "The Securities Association of China (SAC) is a self-regulatory organization for the securities industry under the guidance of the China Securities Regulatory Commission (CSRC). It publishes industry statistics, securities firm rankings, practitioner registration data, and regulatory announcements including broker filings, tender offers, and major asset restructurings.", + "zh": "中国证券业协会(SAC)是在中国证监会指导下的证券行业自律组织。发布行业统计数据、证券公司排名、从业人员注册信息及监管公告,包括券商备案、要约收购、重大资产重组等信息。" + }, + "website": "https://www.sac.net.cn", + "data_url": "https://www.sac.net.cn/hysj/", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "securities" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "authority_level": "government", + "tags": [ + "china", + "securities", + "self-regulatory", + "broker", + "tender-offer", + "asset-restructuring", + "practitioner-registration", + "中国证券业协会", + "券商", + "证券公司", + "从业人员", + "要约收购", + "重大资产重组" + ], + "data_content": { + "en": [ + "Securities Industry Statistics - Aggregate revenue, net income, and asset data of securities firms", + "Securities Firm Rankings - Annual rankings by total assets, revenue, and brokerage volume", + "Practitioner Registration - Registered securities professionals database", + "Regulatory Announcements - Broker filings, tender offers, major asset restructurings", + "Industry Reports - Annual and special reports on securities industry development", + "Self-Regulatory Rules - Industry standards and compliance guidelines" + ], + "zh": [ + "证券行业统计 - 证券公司营收、净利润和资产汇总数据", + "证券公司排名 - 按总资产、营收和经纪业务量的年度排名", + "从业人员注册 - 证券从业人员注册数据库", + "监管公告 - 券商备案、要约收购、重大资产重组", + "行业报告 - 证券行业发展年度报告和专题报告", + "自律规则 - 行业标准和合规指南" + ] + } +} diff --git a/firstdata/sources/china/finance/securities/cninfo.json b/firstdata/sources/china/finance/securities/cninfo.json new file mode 100644 index 0000000..51d139c --- /dev/null +++ b/firstdata/sources/china/finance/securities/cninfo.json @@ -0,0 +1,58 @@ +{ + "id": "cninfo", + "name": { + "en": "CNInfo (Giant Tide Information Network)", + "zh": "巨潮资讯网", + "native": "巨潮资讯网" + }, + "description": { + "en": "CNInfo (cninfo.com.cn) is China's official securities information disclosure platform designated by the China Securities Regulatory Commission (CSRC). Operated by Shenzhen Securities Information Co., Ltd., it serves as the authoritative source for all listed company announcements across the Shanghai and Shenzhen stock exchanges, covering IPO prospectuses, annual and interim reports, material event disclosures, and regulatory filings.", + "zh": "巨潮资讯网(cninfo.com.cn)是中国证监会指定的信息披露平台,由深圳证券信息有限公司运营,是沪深两市所有上市公司公告的权威来源,涵盖招股说明书、年报中报、重大事项披露及监管文件。" + }, + "website": "http://www.cninfo.com.cn", + "data_url": "http://www.cninfo.com.cn/new/commonUrl?url=disclosure/list/notice", + "api_url": null, + "country": "CN", + "domains": [ + "finance", + "securities" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "authority_level": "government", + "tags": [ + "china", + "disclosure", + "listed-companies", + "announcements", + "CSRC-designated", + "prospectus", + "annual-report", + "巨潮资讯网", + "信息披露", + "上市公司公告", + "招股说明书", + "年报", + "中报", + "深交所", + "上交所" + ], + "data_content": { + "en": [ + "Listed Company Announcements - Full text of all announcements from Shanghai and Shenzhen exchanges", + "IPO Prospectuses - Initial public offering documents and listing filings", + "Periodic Reports - Annual reports, semi-annual reports, and quarterly reports", + "Material Events - Major asset restructuring, related party transactions, equity changes", + "Board Resolutions - Board and shareholder meeting announcements and resolutions", + "Regulatory Filings - Compliance reports, inquiry letters, and regulatory actions" + ], + "zh": [ + "上市公司公告 - 沪深两市所有公告全文", + "招股说明书 - 首次公开发行文件和上市申报材料", + "定期报告 - 年报、半年报和季报", + "重大事项 - 重大资产重组、关联交易、股权变动", + "董事会决议 - 董事会和股东大会公告及决议", + "监管文件 - 合规报告、问询函和监管措施" + ] + } +} diff --git a/firstdata/sources/japan/economics/japan-esri.json b/firstdata/sources/japan/economics/japan-esri.json new file mode 100644 index 0000000..2f57985 --- /dev/null +++ b/firstdata/sources/japan/economics/japan-esri.json @@ -0,0 +1,56 @@ +{ + "id": "japan-esri", + "name": { + "en": "Economic and Social Research Institute, Cabinet Office of Japan", + "zh": "日本内阁府经济社会综合研究所", + "native": "内閣府経済社会総合研究所" + }, + "description": { + "en": "The Economic and Social Research Institute (ESRI) is an organ of the Cabinet Office of Japan responsible for compiling GDP and national accounts, economic assessment, and policy research. It publishes quarterly GDP estimates, System of National Accounts (SNA), Monthly Economic Report, and various economic indicators that serve as the backbone of Japan's macroeconomic statistics.", + "zh": "经济社会综合研究所(ESRI)是日本内阁府下属机构,负责编制GDP和国民经济核算、经济形势评估及政策研究。发布季度GDP估算、国民经济核算体系(SNA)、月度经济报告及各类经济指标,是日本宏观经济统计的核心来源。" + }, + "website": "https://www.esri.cao.go.jp", + "data_url": "https://www.esri.cao.go.jp/en/sna/menu.html", + "api_url": null, + "country": "JP", + "domains": [ + "economics", + "statistics" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "authority_level": "government", + "tags": [ + "japan", + "gdp", + "national-accounts", + "SNA", + "macroeconomics", + "economic-indicators", + "cabinet-office", + "日本", + "内閣府", + "経済社会総合研究所", + "国民経済計算", + "GDP", + "国内总产值" + ], + "data_content": { + "en": [ + "Quarterly Estimates of GDP - Preliminary and revised GDP figures with expenditure and production approaches", + "Annual Report on National Accounts (SNA) - Comprehensive national accounts including income, capital, and financial accounts", + "Monthly Economic Report - Cabinet Office assessment of current economic conditions", + "Business Condition Indices - Composite and diffusion indices of business cycle indicators", + "Consumer Confidence Survey - Monthly consumer sentiment and spending outlook", + "Corporate Behavior Survey - Annual survey of corporate investment and business plans" + ], + "zh": [ + "季度GDP估算 - 初步和修正GDP数据,含支出法和生产法", + "国民经济核算年报(SNA)- 包括收入、资本和金融账户的综合国民账户", + "月度经济报告 - 内阁府对当前经济形势的评估", + "景气指标 - 综合指数和扩散指数", + "消费者信心调查 - 月度消费者情绪和支出展望", + "企业行为调查 - 年度企业投资和经营计划调查" + ] + } +}